Lines Matching defs:bufsize
220 const int bufsize = 4*1024;
227 char* buf = (char*)malloc(bufsize);
257 while ((amt = read(fd, buf, bufsize)) != 0 && bytesLeft > 0) {
272 memset(buf, 0, bufsize);
274 amt = bytesLeft < bufsize ? bytesLeft : bufsize;
315 const int bufsize = 4*1024;
318 char* buf = (char*)malloc(bufsize);
323 while ((amt = read(fd, buf, bufsize)) != 0) {
548 const size_t BUFSIZE = 32 * 1024;
549 char* buf = (char *)calloc(1,BUFSIZE);
637 memset(paxData, 0, BUFSIZE - (paxData - buf));
685 if (toRead > BUFSIZE) {
686 toRead = BUFSIZE;
1200 size_t bufSize = strlen(str)+1;
1201 char* buf = (char*)malloc(bufSize);
1235 if (actualSize != bufSize) {
1237 bufSize, actualSize);
1242 nRead = reader.ReadEntityData(buf, bufSize);
1249 if (0 != memcmp(buf, str, bufSize)) {