Home
last modified time | relevance | path

Searched refs:nBytes (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/bsd/libevent/dist/
H A Dbuffer_iocp.c101 evbuffer_commit_read_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_read_() argument
110 EVUTIL_ASSERT(nBytes >= 0); /* XXXX Can this be false? */ in evbuffer_commit_read_()
117 remaining = nBytes; in evbuffer_commit_read_()
133 evbuf->total_len += nBytes; in evbuffer_commit_read_()
134 evbuf->n_add_for_cb += nBytes; in evbuffer_commit_read_()
142 evbuffer_commit_write_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_write_() argument
149 evbuffer_drain(evbuf, nBytes); in evbuffer_commit_write_()
H A Devent_iocp.c57 handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok) in handle_entry() argument
61 eo->cb(eo, completion_key, nBytes, ok); in handle_entry()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A Dipcio.cc628 writeResponseHeader (int requestID, int responseType, int responseStatus, int nBytes) in writeResponseHeader() argument
631 nBytes = IPC_VERSION_NUMBER; in writeResponseHeader()
633 …egin----- %x ---- %x ----- %x -----%x -------\n", requestID, responseType, responseStatus, nBytes); in writeResponseHeader()
648 snprintf (buf + i, 9, "%8x", nBytes); in writeResponseHeader()
652 responseType, responseStatus, nBytes); in writeResponseHeader()
662 cout << setfill ('0') << setw (8) << hex << nBytes; in writeResponseHeader()
666 if (nBytes > maxSize) in writeResponseHeader()
668 maxSize = nBytes; in writeResponseHeader()
973 int nBytes = readIVal (NULL); in readRequestHeader() local
981 …KE --- %x ----- %x ---- %x --- %x -RequestHeaderEnd\n", requestID, requestType, channelID, nBytes); in readRequestHeader()
[all …]
/netbsd-src/external/bsd/bzip2/dist/
H A Dcompress.c245 Int32 nGroups, nBytes; in sendMTFValues() local
505 nBytes = s->numZ; in sendMTFValues()
516 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes ); in sendMTFValues()
520 nBytes = s->numZ; in sendMTFValues()
528 VPrintf1( "selectors %d, ", s->numZ-nBytes ); in sendMTFValues()
531 nBytes = s->numZ; in sendMTFValues()
544 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes ); in sendMTFValues()
547 nBytes = s->numZ; in sendMTFValues()
599 VPrintf1( "codes %d\n", s->numZ-nBytes ); in sendMTFValues()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h152 unsigned int nBytes = 4; in print() local
154 nBytes = 8; in print()
155 for (pos = 0; pos < size; pos += nBytes) { in print()
186 } else if (nBytes == 4) in print()
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A Dipcio.cc906 int nBytes = readIVal (NULL); in readRequestHeader() local
912 …KE --- %x ----- %x ---- %x --- %x -RequestHeaderEnd\n", requestID, requestType, channelID, nBytes); in readRequestHeader()
917 …Q: %x ----- %x --- CH: %x --- %x -RequestHeaderEnd\n", requestID, requestType, channelID, nBytes); in readRequestHeader()
942 …Q: --- %x ----- %x ---- %x --- %x -RequestHeaderEnd\n", requestID, requestType, channelID, nBytes); in readRequestHeader()
943 IPCrequest *nreq = new IPCrequest (nBytes, requestID, channelID); in readRequestHeader()
/netbsd-src/usr.sbin/makemandb/
H A Dfts3_tokenizer.h95 const char *pInput, int nBytes, /* Input buffer */
/netbsd-src/sys/arch/emips/ebus/
H A Dace_ebus.c273 uint32_t *Data, unsigned int nBytes);
1360 sysace_send_config(struct ace_softc *sc, uint32_t *Data, unsigned int nBytes) in sysace_send_config() argument
1399 nBytes = (nBytes + ACEROUNDUP - 1) & ~(ACEROUNDUP-1); in sysace_send_config()
1400 nWords = (nBytes + 3) / 4; in sysace_send_config()
1403 nBytes, nWords, Interface)); in sysace_send_config()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Dbitop.d445 enum nBytes = (100 + BitRange.bitsPerWord - 1) / 8; variable
446 size_t *bitArr = cast(size_t *)malloc(nBytes);
448 memset(bitArr, 0, nBytes);
/netbsd-src/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.h119 u_int nBytes; member
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3ext.h33 void * (*aggregate_context)(sqlite3_context*,int nBytes);
H A Dsqlite3.h5873 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
H A Dsqlite3.c6186 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
27684 static void *memsys3Malloc(int nBytes){ in memsys3Malloc() argument
27686 assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */ in memsys3Malloc()
27688 p = memsys3MallocUnsafe(nBytes); in memsys3Malloc()
27706 static void *memsys3Realloc(void *pPrior, int nBytes){ in memsys3Realloc() argument
27710 return sqlite3_malloc(nBytes); in memsys3Realloc()
27712 if( nBytes<=0 ){ in memsys3Realloc()
27717 if( nBytes<=nOld && nBytes>=nOld-128 ){ in memsys3Realloc()
27721 p = memsys3MallocUnsafe(nBytes); in memsys3Realloc()
27723 if( nOld<nBytes ){ in memsys3Realloc()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d1051 void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwingdi.d3304 DWORD nBytes;