Searched refs:bufSize (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/lib/libnetgraph/
H A Dmsg.c323 int bufSize, errnosv; local
327 bufSize = 2 * sizeof(*reply) + replen;
328 if ((buf = malloc(bufSize)) == NULL)
334 if (NgRecvMsg(cs, msg, bufSize, path) < 0)
342 if (NgRecvMsg(cs, msg, bufSize, NULL) < 0)
/freebsd-11-stable/sys/netgraph/
H A Dng_parse.h391 int bufSize; /* size of buffer (including NUL) */ member in struct:ng_parse_fixedstring_info
H A Dng_parse.c793 if (slen + 1 > fi->bufSize) {
800 bzero(buf + slen, fi->bufSize - slen);
801 *buflen = fi->bufSize;
814 *off += fi->bufSize;
824 if (*buflen < fi->bufSize)
826 bzero(buf, fi->bufSize);
827 *buflen = fi->bufSize;
H A Dng_base.c2778 int bufSize = 1024; local
2794 NG_MKRESPONSE(resp, msg, sizeof(*ascii) + bufSize, M_NOWAIT);
2835 ascii->data, bufSize);
2838 bufSize *= 2;
2847 bufSize = strlen(ascii->data) + 1;
2848 ascii->header.arglen = bufSize;
2849 resp->header.arglen = sizeof(*ascii) + bufSize;
2855 int bufSize = 20 * 1024; /* XXX hard coded constant */ local
2874 NG_MKRESPONSE(resp, msg, sizeof(*binary) + bufSize, M_NOWAIT);
2910 bufSize
[all...]
/freebsd-11-stable/contrib/expat/xmlwf/
H A Dxmlwin32url.cxx184 DWORD bufSize = sizeof(contentType); local
188 &bufSize, 0, NULL);
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp86 size_t bufSize = mb.getBuffer().size(); local
87 if ((size == ELFCLASS32 && bufSize < sizeof(Elf32_Ehdr)) ||
88 (size == ELFCLASS64 && bufSize < sizeof(Elf64_Ehdr)))
/freebsd-11-stable/contrib/expat/lib/
H A Dxmlparse.c2401 int bufSize; local
2414 bufSize = nameLen + ROUND_UP(tag->rawNameLength, sizeof(XML_Char));
2415 if (bufSize > tag->bufEnd - tag->buf) {
2416 char *temp = (char *)REALLOC(parser, tag->buf, bufSize);
2431 tag->bufEnd = temp + bufSize;
2727 int bufSize; local
2738 bufSize = (int)(tag->bufEnd - tag->buf) << 1;
2740 char *temp = (char *)REALLOC(parser, tag->buf, bufSize);
2744 tag->bufEnd = temp + bufSize;
/freebsd-11-stable/sys/contrib/ncsw/Peripherals/FM/Port/
H A Dfm_port.c348 uint16_t bufSize = 0, largestBufSize = 0; local
377 bufSize = p_ExtBufPools->extBufPool[i].size;
380 sizesArray[p_ExtBufPools->extBufPool[i].id] = bufSize;
391 if(bufSize < sizesArray[orderedArray[j]])
/freebsd-11-stable/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c272 int bufSize,
276 int nRead = bufSize; /* Number of bytes to read */
269 incrblobInput( ClientData instanceData, char *buf, int bufSize, int *errorCodePtr ) argument

Completed in 304 milliseconds