PNDecimal         327 core/gc.c            sz = sizeof(struct PNDecimal);
PNDecimal          15 core/number.c    vPN(Decimal) d = PN_ALLOC_N(PN_TNUMBER, struct PNDecimal, 0);
PNDecimal         135 core/number.c      int len = sprintf(ints, "%.16f", ((struct PNDecimal *)self)->value);
PNDecimal         225 core/number.c      return PN_NUM(floor(((struct PNDecimal *)self)->value));
PNDecimal          88 core/potion.h  struct PNDecimal;
PNDecimal         204 core/potion.h  #define PN_DBL(num)     (PN_IS_NUM(num) ? (double)PN_INT(num) : ((struct PNDecimal *)num)->value)