Lines Matching refs:bufptr
126 if ((svr->bufptr + SIZEOF(fs##name##Req)) > svr->bufmax)\
128 req = (fs##name##Req *)(svr->last_req = svr->bufptr);\
131 svr->bufptr += SIZEOF(fs##name##Req);\
138 if ((svr->bufptr + SIZEOF(fs##name##Req) + n) > svr->bufmax)\
140 req = (fs##name##Req *)(svr->last_req = svr->bufptr);\
143 svr->bufptr += SIZEOF(fs##name##Req) + n;\
153 if ((svr->bufptr + SIZEOF(fsResourceReq)) > svr->bufmax)\
155 req = (fsResourceReq *) (svr->last_req = svr->bufptr);\
159 svr->bufptr += SIZEOF(fsResourceReq);\
168 if ((svr->bufptr + SIZEOF(fsReq)) > svr->bufmax)\
170 req = (fsReq *) (svr->last_req = svr->bufptr);\
173 svr->bufptr += SIZEOF(fsReq);\
194 if (svr->bufptr + (len) <= svr->bufmax) {\
195 memmove(svr->bufptr, data, len);\
196 svr->bufptr += ((len) + 3) & ~3;\
217 if (svr->bufptr + (n) > svr->bufmax) \
219 ptr = (type) svr->bufptr; \
220 svr->bufptr += (n);