PN_FALSE          210 core/number.c    return PN_IS_NUM(self) ? PN_TRUE : PN_FALSE;
PN_FALSE          216 core/number.c    return PN_IS_DECIMAL(self) ? PN_TRUE : PN_FALSE;
PN_FALSE          320 core/objmodel.c       return found == PN_FALSE ? -1 : found;
PN_FALSE          570 core/objmodel.c   return potion_bind(P, self, method) ? PN_TRUE : PN_FALSE;
PN_FALSE          158 core/potion.h  #define PN_TEST(v)      ((PN)(v) != PN_FALSE && (PN)(v) != PN_NIL)
PN_FALSE          159 core/potion.h  #define PN_TEST1(v)     ((PN)(v) != PN_FALSE && (PN)(v) != PN_NIL \
PN_FALSE          163 core/potion.h  #define PN_TEST(v)      ((PN)(v) != PN_FALSE && (PN)(v) != PN_NIL)
PN_FALSE          164 core/potion.h  #define PN_TEST1(v)     ((PN)(v) != PN_FALSE && (PN)(v) != PN_NIL)
PN_FALSE          168 core/potion.h  #define PN_BOOL(v)      (PN_TEST(v) ? PN_TRUE : PN_FALSE)
PN_FALSE           53 core/primitive.c     return potion_send(PN_FALSE, PN_cmp, value);
PN_FALSE           71 core/primitive.c     return value == PN_FALSE ? -1 : 1; //false < any < true
PN_FALSE           94 core/primitive.c   potion_send(nil_vt, PN_def, PN_STR("defined"), PN_FALSE);
PN_FALSE          100 core/primitive.c   potion_send(P->lobby, PN_def, PN_STR("nil?"), PN_FALSE);
PN_FALSE          522 core/table.c       } else if (cmp == PN_FALSE) { // sort by descending number
PN_FALSE          609 core/table.c       else if (cmp == PN_FALSE) {
PN_FALSE          635 core/table.c       return value == PN_FALSE ? -1 : 1;
PN_FALSE           78 core/vm-ppc.c    PPC2(14, REG(op.a), PN_FALSE); /* li rA,FALSE */
PN_FALSE          310 core/vm-ppc.c    PPC(11, 7 << 2, REG(op.a), 0, PN_FALSE); // cmpwi cr7,rA,0x0
PN_FALSE          316 core/vm-ppc.c    PPC(11, 7 << 2, REG(op.a), 0, PN_FALSE); // cmpwi cr7,rA,0x0
PN_FALSE           75 core/vm-x86.c          X86_MOVQ(op.a, PN_FALSE) 			/* -A(%rbp) = FALSE */
PN_FALSE          615 core/vm-x86.c    X86_PRE(); ASM(0x83); ASM(0xF8); ASM(PN_FALSE); 	// cmp FALSE %rax
PN_FALSE          622 core/vm-x86.c    X86_PRE(); ASM(0x83); ASM(0xF8); ASM(PN_FALSE); 	// cmp FALSE %rax
PN_FALSE          627 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_FALSE : PN_TRUE); 		// -A(%rbp) = TRUE
PN_FALSE          629 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_TRUE : PN_FALSE); 		// -A(%rbp) = FALSE
PN_FALSE          651 core/vm-x86.c    X86_PRE(); ASM(0x83); ASM(0xF8); ASM(PN_FALSE); 	// cmp FALSE %rax
PN_FALSE          666 core/vm-x86.c    X86_PRE(); ASM(0x83); ASM(0xF8); ASM(PN_FALSE);	// cmp FALSE %rax
PN_FALSE          976 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_FALSE          995 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_FALSE         1324 lib/aio.c        return uv_is_readable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_FALSE         1331 lib/aio.c        return uv_is_writable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_FALSE         1343 lib/aio.c        return uv_is_closing((const uv_handle_t*)&handle->r) ? PN_TRUE : PN_FALSE;
PN_FALSE         1352 lib/aio.c        return uv_is_active((const uv_handle_t*)&handle->h) ? PN_TRUE : PN_FALSE;
PN_FALSE          223 lib/buffile.c    return r ? PN_TRUE : PN_FALSE;
PN_FALSE          346 syn/syntax-p5.y #      | false { $$ = PN_FALSE }
PN_FALSE          589 syn/syntax-p5.y   if (fmt[0] == '\0') return PN_FALSE;
PN_FALSE          617 syn/syntax-p5.y   if (fmt[0] == '\0') return PN_FALSE; // empty signature, no args
PN_FALSE          187 syn/syntax.y         | false { $$ = PN_FALSE; }
PN_FALSE          422 syn/syntax.y     if (fmt[0] == '\0') return PN_FALSE; // empty signature, no args
PN_FALSE           26 test/api/p2-test.c     PN_FALSE == potion_send(PN_NIL, potion_str(P, "defined")));
PN_FALSE           28 test/api/potion-test.c   CuAssert(T, "false isn't a bool type", PN_TYPE(PN_FALSE) == PN_TBOOLEAN);
PN_FALSE           29 test/api/potion-test.c   CuAssert(T, "false is a ref", !PN_IS_PTR(PN_FALSE));