PN_TRUE           127 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           342 core/number.c    return (PN_IS_INT(self) || PN_IS_DBL(self)) ? PN_TRUE : PN_FALSE;
PN_TRUE           348 core/number.c    return PN_IS_INT(self) ? PN_TRUE : PN_FALSE;
PN_TRUE           354 core/number.c    return PN_IS_DBL(self) ? PN_TRUE : PN_FALSE;
PN_TRUE           540 core/objmodel.c   return t == t1  ? PN_TRUE : PN_FALSE;
PN_TRUE           549 core/objmodel.c   if (potion_lobby_isa(P, cl, self, vtable) == PN_TRUE) return PN_TRUE;
PN_TRUE           552 core/objmodel.c       ? (t == PN_TINTEGER ? PN_TRUE : PN_FALSE) // Integer is a subclass of Number
PN_TRUE           556 core/objmodel.c     if (t0 == p) return PN_TRUE;
PN_TRUE           597 core/objmodel.c   return potion_bind(P, self, method) ? PN_TRUE : PN_FALSE;
PN_TRUE           158 core/potion.h  #define PN_BOOL(v)      ((v) ? PN_TRUE : PN_FALSE)
PN_TRUE            15 core/primitive.c   return PN_TRUE;
PN_TRUE           195 core/syntax.y        | true  { $$ = PN_TRUE; }
PN_TRUE           657 core/table.c       } else if (cmp == PN_TRUE) { // sort by ascending number
PN_TRUE           742 core/table.c       else if (cmp == PN_TRUE) {
PN_TRUE            76 core/vm-arm.c    ARM2(14, REG(op.a), PN_TRUE); /* li rA,TRUE */ \
PN_TRUE            75 core/vm-ppc.c    PPC2(14, REG(op.a), PN_TRUE); /* li rA,TRUE */ \
PN_TRUE           170 core/vm-x86.c          X86_MOVQ(op.a, PN_TRUE);      			/* true: -A(%rbp) = TRUE */
PN_TRUE           235 core/vm-x86.c          X86_MOVQ(op.a, PN_TRUE);      			/* true: -A(%rbp) = TRUE */ \
PN_TRUE           867 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_FALSE : PN_TRUE); 		// -A(%rbp) = TRUE
PN_TRUE           870 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_TRUE : PN_FALSE); 		// -A(%rbp) = FALSE
PN_TRUE           753 core/vm.c            CASE(NOT, reg[op.a] = PN_ZERO == reg[op.a] ? PN_TRUE : PN_BOOL(!PN_TEST(reg[op.a])))
PN_TRUE           301 lib/aio.c          if (!uv_udp_set_broadcast(udp, value == PN_TRUE ? 1 : 0))
PN_TRUE           306 lib/aio.c          if (!uv_udp_set_multicast_loop(udp, value == PN_TRUE ? 1 : 0))
PN_TRUE           822 lib/aio.c        int r = uv_tcp_nodelay(&handle->r, enable == PN_TRUE ? PN_INT(1) : PN_INT(0));
PN_TRUE           831 lib/aio.c        int r = uv_tcp_keepalive(&handle->r, enable == PN_TRUE ? PN_INT(1) : PN_INT(0), PN_INT(delay));
PN_TRUE           839 lib/aio.c        int r = uv_tcp_simultaneous_accepts(&handle->r, enable == PN_TRUE ? PN_INT(1) : PN_INT(0));
PN_TRUE           996 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_TRUE          1015 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_TRUE          1345 lib/aio.c        return uv_is_readable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_TRUE          1352 lib/aio.c        return uv_is_writable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_TRUE          1364 lib/aio.c        return uv_is_closing((const uv_handle_t*)&handle->r) ? PN_TRUE : PN_FALSE;
PN_TRUE          1373 lib/aio.c        return uv_is_active((const uv_handle_t*)&handle->h) ? PN_TRUE : PN_FALSE;
PN_TRUE          1590 lib/aio.c        return PN_TRUE;
PN_TRUE           205 lib/buffile.c    return PN_TRUE;
PN_TRUE           215 lib/buffile.c    return PN_TRUE;
PN_TRUE           232 lib/buffile.c    return r ? PN_TRUE : PN_FALSE;
PN_TRUE           247 lib/buffile.c    return PN_TRUE;
PN_TRUE           253 lib/buffile.c    flockfile(self->file); return PN_TRUE;
PN_TRUE           264 lib/buffile.c    funlockfile(self->file); return PN_TRUE;
PN_TRUE            23 test/api/potion-test.c     PN_TRUE == potion_send(PN_NIL, potion_str(P, "nil?")));
PN_TRUE            27 test/api/potion-test.c   CuAssert(T, "true isn't a bool type", PN_TYPE(PN_TRUE) == PN_TBOOLEAN);
PN_TRUE            28 test/api/potion-test.c   CuAssert(T, "true is a ref", !PN_IS_PTR(PN_TRUE));