Lines Matching refs:p
116 #define SIP_U32TO8_LE(p, v) \ argument
117 (p)[0] = (uint8_t)((v) >> 0); \
118 (p)[1] = (uint8_t)((v) >> 8); \
119 (p)[2] = (uint8_t)((v) >> 16); \
120 (p)[3] = (uint8_t)((v) >> 24);
122 #define SIP_U64TO8_LE(p, v) \ argument
123 SIP_U32TO8_LE((p) + 0, (uint32_t)((v) >> 0)); \
124 SIP_U32TO8_LE((p) + 4, (uint32_t)((v) >> 32));
126 #define SIP_U8TO64_LE(p) \ argument
127 (((uint64_t)((p)[0]) << 0) | ((uint64_t)((p)[1]) << 8) \
128 | ((uint64_t)((p)[2]) << 16) | ((uint64_t)((p)[3]) << 24) \
129 | ((uint64_t)((p)[4]) << 32) | ((uint64_t)((p)[5]) << 40) \
130 | ((uint64_t)((p)[6]) << 48) | ((uint64_t)((p)[7]) << 56))
137 unsigned char buf[8], *p; member
200 H->p = H->buf; in sip24_init()
210 const unsigned char *p = (const unsigned char *)src, *pe = p + len; in sip24_update() local
214 while (p < pe && H->p < sip_endof(H->buf)) in sip24_update()
215 *H->p++ = *p++; in sip24_update()
217 if (H->p < sip_endof(H->buf)) in sip24_update()
225 H->p = H->buf; in sip24_update()
227 } while (p < pe); in sip24_update()
234 const char left = (char)(H->p - H->buf); in sip24_final()