Lines Matching defs:p
67 #define STARTSTACKSTR(p) p = stackblock() argument
68 #define STPUTC(c, p) do { if (p == sstrend) p = growstackstr(); *p++ = (c); } while(0) argument
69 #define CHECKSTRSPACE(n, p) { if ((size_t)(sstrend - p) < n) p = makestrspace(n, p); } argument
70 #define USTPUTC(c, p) (*p++ = (c)) argument
78 #define STACKSTRNUL(p) (p == sstrend ? (p = growstackstr(), *p = '\0') : (*p = '\0')) argument
79 #define STUNPUTC(p) (--p) argument
80 #define STTOPC(p) p[-1] argument
81 #define STADJUST(amount, p) (p += (amount)) argument
82 #define grabstackstr(p) stalloc((char *)p - stackblock()) argument
83 #define ungrabstackstr(s, p) stunalloc((s)) argument
84 #define STPUTBIN(s, len, p) p = stputbin((s), (len), p) argument
85 #define STPUTS(s, p) p = stputs((s), p) argument