PN_TRUE           133 core/file.c          char tmp = (obj == PN_TRUE) ? 1 : 0; len = 1; ptr = (char *)&tmp;
PN_TRUE            83 core/load.c      return PN_TRUE;
PN_TRUE           210 core/number.c    return PN_IS_NUM(self) ? PN_TRUE : PN_FALSE;
PN_TRUE           216 core/number.c    return PN_IS_DECIMAL(self) ? PN_TRUE : PN_FALSE;
PN_TRUE           570 core/objmodel.c   return potion_bind(P, self, method) ? PN_TRUE : PN_FALSE;
PN_TRUE           168 core/potion.h  #define PN_BOOL(v)      (PN_TEST(v) ? PN_TRUE : PN_FALSE)
PN_TRUE            95 core/primitive.c   potion_send(P->lobby, PN_def, PN_STR("defined"), PN_TRUE);
PN_TRUE            99 core/primitive.c   potion_send(nil_vt, PN_def, PN_STR("nil?"), PN_TRUE);
PN_TRUE           516 core/table.c       } else if (cmp == PN_TRUE) { // sort by ascending number
PN_TRUE           600 core/table.c       else if (cmp == PN_TRUE) {
PN_TRUE            76 core/vm-ppc.c    PPC2(14, REG(op.a), PN_TRUE); /* li rA,TRUE */ \
PN_TRUE            73 core/vm-x86.c          X86_MOVQ(op.a, PN_TRUE); 			/* -A(%rbp) = TRUE */ \
PN_TRUE           627 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_FALSE : PN_TRUE); 		// -A(%rbp) = TRUE
PN_TRUE           629 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_TRUE : PN_FALSE); 		// -A(%rbp) = FALSE
PN_TRUE           650 core/vm.c            CASE(NOT, reg[op.a] = PN_ZERO == reg[op.a] ? PN_TRUE : PN_BOOL(!PN_TEST(reg[op.a])))
PN_TRUE           290 lib/aio.c          if (!uv_udp_set_broadcast(udp, value == PN_TRUE ? 1 : 0))
PN_TRUE           295 lib/aio.c          if (!uv_udp_set_multicast_loop(udp, value == PN_TRUE ? 1 : 0))
PN_TRUE           802 lib/aio.c        int r = uv_tcp_nodelay(&handle->r, enable == PN_TRUE ? PN_INT(1) : PN_INT(0));
PN_TRUE           811 lib/aio.c        int r = uv_tcp_keepalive(&handle->r, enable == PN_TRUE ? PN_INT(1) : PN_INT(0), PN_INT(delay));
PN_TRUE           819 lib/aio.c        int r = uv_tcp_simultaneous_accepts(&handle->r, enable == PN_TRUE ? PN_INT(1) : PN_INT(0));
PN_TRUE           976 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_TRUE           995 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_TRUE          1324 lib/aio.c        return uv_is_readable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_TRUE          1331 lib/aio.c        return uv_is_writable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_TRUE          1343 lib/aio.c        return uv_is_closing((const uv_handle_t*)&handle->r) ? PN_TRUE : PN_FALSE;
PN_TRUE          1352 lib/aio.c        return uv_is_active((const uv_handle_t*)&handle->h) ? PN_TRUE : PN_FALSE;
PN_TRUE          1566 lib/aio.c        return PN_TRUE;
PN_TRUE           196 lib/buffile.c    return PN_TRUE;
PN_TRUE           206 lib/buffile.c    return PN_TRUE;
PN_TRUE           223 lib/buffile.c    return r ? PN_TRUE : PN_FALSE;
PN_TRUE           238 lib/buffile.c    return PN_TRUE;
PN_TRUE           244 lib/buffile.c    flockfile(self->file); return PN_TRUE;
PN_TRUE           255 lib/buffile.c    funlockfile(self->file); return PN_TRUE;
PN_TRUE           345 syn/syntax-p5.y #      | true  { $$ = PN_TRUE }
PN_TRUE           186 syn/syntax.y         | true  { $$ = PN_TRUE; }
PN_TRUE            29 test/api/p2-test.c     PN_TRUE == potion_send(num, potion_str(P, "defined")));
PN_TRUE            22 test/api/potion-test.c     PN_TRUE == potion_send(PN_NIL, potion_str(P, "nil?")));
PN_TRUE            26 test/api/potion-test.c   CuAssert(T, "true isn't a bool type", PN_TYPE(PN_TRUE) == PN_TBOOLEAN);
PN_TRUE            27 test/api/potion-test.c   CuAssert(T, "true is a ref", !PN_IS_PTR(PN_TRUE));