/freebsd/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()
|
/freebsd/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()
|
/freebsd/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()
|
/freebsd/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 | 2963 DoXor1(ULONG *p0, ULONG *p1, ULONG *p2, UINT nBytes) in DoXor1() argument 2966 for (i = 0; i < nBytes / 4; i++) *p0++ = *p1++ ^ *p2++; in DoXor1() 2970 DoXor2(ULONG *p0, ULONG *p2, UINT nBytes) in DoXor2() argument 2973 for (i = 0; i < nBytes / 4; i++) *p0++ ^= *p2++; in DoXor2()
|
/freebsd/usr.sbin/makefs/cd9660/ |
H A D | iso9660_rrip.h | 119 u_int nBytes; member
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3ext.h | 33 void * (*aggregate_context)(sqlite3_context*,int nBytes);
|
H A D | sqlite3.h | 5892 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
|
H A D | sqlite3.c | 6205 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); 27963 static void *memsys3Malloc(int nBytes){ in memsys3Malloc() argument 27965 assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */ in memsys3Malloc() 27967 p = memsys3MallocUnsafe(nBytes); in memsys3Malloc() 27985 static void *memsys3Realloc(void *pPrior, int nBytes){ in memsys3Realloc() argument 27989 return sqlite3_malloc(nBytes); in memsys3Realloc() 27991 if( nBytes<=0 ){ in memsys3Realloc() 27996 if( nBytes<=nOld && nBytes>=nOld-128 ){ in memsys3Realloc() 28000 p = memsys3MallocUnsafe(nBytes); in memsys3Realloc() 28002 if( nOld<nBytes ){ in memsys3Realloc() [all …]
|