Lines Matching defs:p
153 #define NCA_LOG_REC_SIZE(p) (sizeof (nca_request_log_t) + \
154 p->remote_user_len + \
155 p->auth_user_len + \
156 p->request_url_len + \
157 p->referer_len + p->useragent_len)
162 #define NCA_LOG_ALIGN(p) (char *)(((size_t)p+(sizeof (uint32_t)-1)) & \
169 #define NCA_REQLOG_RDATA(p, name) ((char *)p + sizeof (nca_request_log_t) + \
170 (p->name))
173 #define NCA_REQLOG_WDATA(val, p, n_used, len, off) { \
175 p->len = 0; \
176 p->off = 0; \
178 p->len = strlen(val) + 1; \
179 bcopy(val, ((char *)p + sizeof (nca_request_log_t) \
180 + n_used), (p->len)); \
181 p->off = n_used; \
182 n_used += (p->len); \