Lines Matching refs:nbytes
65 size_t nbytes;
72 nbytes = strnlen(name, 256);
74 nbytes = strlen(name);
77 if ((nbytes == 0) || (nbytes > 255) ||
78 (nbytes > (FSMaxRequestBytes(svr) - SIZEOF(fsOpenBitmapFontReq))))
81 buf[0] = (CARD8) nbytes;
82 memcpy(&buf[1], name, nbytes);
83 nbytes++;
87 req->length += (CARD16) ((nbytes + 3) >> 2);
88 _FSSend(svr, buf, (long) nbytes);