| /src/contrib/libevent/ |
| H A D | buffer_iocp.c | 98 evbuffer_commit_read_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_read_() argument 107 EVUTIL_ASSERT(nBytes >= 0); /* XXXX Can this be false? */ in evbuffer_commit_read_() 114 remaining = nBytes; in evbuffer_commit_read_() 130 evbuf->total_len += nBytes; in evbuffer_commit_read_() 131 evbuf->n_add_for_cb += nBytes; in evbuffer_commit_read_() 139 evbuffer_commit_write_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_write_() argument 146 evbuffer_drain(evbuf, nBytes); in evbuffer_commit_write_()
|
| H A D | event_iocp.c | 56 handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok) in handle_entry() argument 60 eo->cb(eo, completion_key, nBytes, ok); in handle_entry()
|
| /src/contrib/ntp/sntp/libevent/ |
| H A D | buffer_iocp.c | 98 evbuffer_commit_read_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_read_() argument 107 EVUTIL_ASSERT(nBytes >= 0); /* XXXX Can this be false? */ in evbuffer_commit_read_() 114 remaining = nBytes; in evbuffer_commit_read_() 130 evbuf->total_len += nBytes; in evbuffer_commit_read_() 131 evbuf->n_add_for_cb += nBytes; in evbuffer_commit_read_() 139 evbuffer_commit_write_(struct evbuffer *evbuf, ev_ssize_t nBytes) in evbuffer_commit_write_() argument 146 evbuffer_drain(evbuf, nBytes); in evbuffer_commit_write_()
|
| H A D | event_iocp.c | 56 handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok) in handle_entry() argument 60 eo->cb(eo, completion_key, nBytes, ok); in handle_entry()
|
| /src/contrib/bzip2/ |
| H A D | compress.c | 243 Int32 nGroups, nBytes; in sendMTFValues() local 503 nBytes = s->numZ; in sendMTFValues() 514 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes ); in sendMTFValues() 518 nBytes = s->numZ; in sendMTFValues() 526 VPrintf1( "selectors %d, ", s->numZ-nBytes ); in sendMTFValues() 529 nBytes = s->numZ; in sendMTFValues() 542 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes ); in sendMTFValues() 545 nBytes = s->numZ; in sendMTFValues() 597 VPrintf1( "codes %d\n", s->numZ-nBytes ); in sendMTFValues()
|
| /src/sys/dev/hptmv/ |
| H A D | raid5n.h | 58 void HPTLIBAPI DoXor1(ULONG *p0, ULONG *p1, ULONG *p2, UINT nBytes); 59 void HPTLIBAPI DoXor2(ULONG *p0, ULONG *p2, UINT nBytes);
|
| H A D | entry.c | 2961 DoXor1(ULONG *p0, ULONG *p1, ULONG *p2, UINT nBytes) in DoXor1() argument 2964 for (i = 0; i < nBytes / 4; i++) *p0++ = *p1++ ^ *p2++; in DoXor1() 2968 DoXor2(ULONG *p0, ULONG *p2, UINT nBytes) in DoXor2() argument 2971 for (i = 0; i < nBytes / 4; i++) *p0++ ^= *p2++; in DoXor2()
|
| /src/usr.sbin/makefs/cd9660/ |
| H A D | iso9660_rrip.h | 119 u_int nBytes; member
|
| /src/contrib/sqlite3/ |
| H A D | sqlite3ext.h | 33 void * (*aggregate_context)(sqlite3_context*,int nBytes);
|
| H A D | sqlite3.h | 6097 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
|
| H A D | sqlite3.c | 6416 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); 28462 static void *memsys3Malloc(int nBytes){ in memsys3Malloc() argument 28464 assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */ in memsys3Malloc() 28466 p = memsys3MallocUnsafe(nBytes); in memsys3Malloc() 28484 static void *memsys3Realloc(void *pPrior, int nBytes){ in memsys3Realloc() argument 28488 return sqlite3_malloc(nBytes); in memsys3Realloc() 28490 if( nBytes<=0 ){ in memsys3Realloc() 28495 if( nBytes<=nOld && nBytes>=nOld-128 ){ in memsys3Realloc() 28499 p = memsys3MallocUnsafe(nBytes); in memsys3Realloc() 28501 if( nOld<nBytes ){ in memsys3Realloc() [all …]
|