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

/freebsd-11.0-release/contrib/ntp/sntp/libevent/
H A Dbuffer_iocp.c97 evbuffer_commit_read_(struct evbuffer *evbuf, ev_ssize_t nBytes) argument
106 EVUTIL_ASSERT(nBytes >= 0); /* XXXX Can this be false? */
113 remaining = nBytes;
129 evbuf->total_len += nBytes;
130 evbuf->n_add_for_cb += nBytes;
138 evbuffer_commit_write_(struct evbuffer *evbuf, ev_ssize_t nBytes) argument
145 evbuffer_drain(evbuf, nBytes);
H A Devent_iocp.c56 handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok) argument
60 eo->cb(eo, completion_key, nBytes, ok);
/freebsd-11.0-release/sys/dev/hptmv/
H A Draid5n.h58 void HPTLIBAPI DoXor1(ULONG *p0, ULONG *p1, ULONG *p2, UINT nBytes);
59 void HPTLIBAPI DoXor2(ULONG *p0, ULONG *p2, UINT nBytes);
H A Dentry.c2980 DoXor1(ULONG *p0, ULONG *p1, ULONG *p2, UINT nBytes) argument
2983 for (i = 0; i < nBytes / 4; i++) *p0++ = *p1++ ^ *p2++;
2987 DoXor2(ULONG *p0, ULONG *p2, UINT nBytes) argument
2990 for (i = 0; i < nBytes / 4; i++) *p0++ ^= *p2++;
/freebsd-11.0-release/contrib/bzip2/
H A Dcompress.c243 Int32 nGroups, nBytes; local
503 nBytes = s->numZ;
514 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes );
518 nBytes = s->numZ;
526 VPrintf1( "selectors %d, ", s->numZ-nBytes );
529 nBytes = s->numZ;
542 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes );
545 nBytes = s->numZ;
597 VPrintf1( "codes %d\n", s->numZ-nBytes );
/freebsd-11.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h150 unsigned int nBytes = 4; local
152 nBytes = 8;
153 for (pos = 0; pos < size; pos += nBytes) {
184 } else if (nBytes == 4)
/freebsd-11.0-release/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.h119 u_int nBytes; member in struct:__anon13966
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBDebuggerHandleEvents.cpp1566 const size_t nBytes = process.GetSTDOUT(apStdoutBuffer.get(), 1024); local
1567 text.append(apStdoutBuffer.get(), nBytes);
1585 if (nBytes == 0)
1619 const size_t nBytes = process.GetSTDERR(apStderrBuffer.get(), 1024); local
1620 text.append(apStderrBuffer.get(), nBytes);
1637 if (nBytes == 0)
H A DMICmnLLDBDebugSessionInfo.cpp613 const MIuint nBytes = rFrame.GetLineEntry().GetFileSpec().GetPath(&pBuffer[0], sizeof(pBuffer)); local
614 MIunused(nBytes);
/freebsd-11.0-release/contrib/sqlite3/
H A Dsqlite3ext.h35 void * (*aggregate_context)(sqlite3_context*,int nBytes);
H A Dsqlite3.h1168 ** The xRandomness() function attempts to return nBytes bytes
4489 SQLITE_API void *SQLITE_STDCALL sqlite3_aggregate_context(sqlite3_context*, int nBytes);
H A Dsqlite3.c1393 ** The xRandomness() function attempts to return nBytes bytes
4714 SQLITE_API void *SQLITE_STDCALL sqlite3_aggregate_context(sqlite3_context*, int nBytes);
19517 ** Called when we are unable to satisfy an allocation of nBytes.
19632 ** Return a block of memory of at least nBytes in size.
19781 ** Allocate nBytes of memory.
19783 static void *memsys3Malloc(int nBytes){ argument
19785 assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */
19787 p = memsys3MallocUnsafe(nBytes);
19805 static void *memsys3Realloc(void *pPrior, int nBytes){ argument
19809 return sqlite3_malloc(nBytes);
20330 memsys5Malloc(int nBytes) argument
20365 memsys5Realloc(void *pPrior, int nBytes) argument
22521 sqlite3Realloc(void *pOld, u64 nBytes) argument
36723 winMemMalloc(int nBytes) argument
36766 winMemRealloc(void *pPrior, int nBytes) argument
65328 sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)) argument
94535 int nBytes; local
110154 sqlite3Prepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pReprepare, sqlite3_stmt **ppStmt, const char **pzTail ) argument
110311 sqlite3LockAndPrepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pOld, sqlite3_stmt **ppStmt, const char **pzTail ) argument
110387 sqlite3_prepare( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
110399 sqlite3_prepare_v2( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
110417 sqlite3Prepare16( sqlite3 *db, const void *zSql, int nBytes, int saveSqlFlag, sqlite3_stmt **ppStmt, const void **pzTail ) argument
110475 sqlite3_prepare16( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
110487 sqlite3_prepare16_v2( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
118959 int nBytes = sizeof(char *)*(2+pTable->nModuleArg); local
119319 int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR); local
147835 int nBytes; /* size of the input */ member in struct:simple_tokenizer_cursor
147905 simpleOpen( sqlite3_tokenizer *pTokenizer, const char *pInput, int nBytes, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]
/freebsd-11.0-release/crypto/heimdal/lib/sqlite/
H A Dsqlite3ext.h35 void * (*aggregate_context)(sqlite3_context*,int nBytes);
H A Dsqlite3.c1482 ** The xRandomness() function attempts to return nBytes bytes
4421 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
15732 ** Called when we are unable to satisfy an allocation of nBytes.
15847 ** Return a block of memory of at least nBytes in size.
15996 ** Allocate nBytes of memory.
15998 static void *memsys3Malloc(int nBytes){ argument
16000 assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */
16002 p = memsys3MallocUnsafe(nBytes);
16020 static void *memsys3Realloc(void *pPrior, int nBytes){ argument
16024 return sqlite3_malloc(nBytes);
16547 memsys5Malloc(int nBytes) argument
16582 memsys5Realloc(void *pPrior, int nBytes) argument
18606 sqlite3Realloc(void *pOld, int nBytes) argument
31808 winMemMalloc(int nBytes) argument
31851 winMemRealloc(void *pPrior, int nBytes) argument
56297 sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)) argument
79203 int nBytes; local
82915 int nBytes = sizeof(KeyInfo) + (nCol-1)*sizeof(CollSeq*) + nCol; local
92008 sqlite3Prepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pReprepare, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92168 sqlite3LockAndPrepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pOld, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92240 sqlite3_prepare( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92252 sqlite3_prepare_v2( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92270 sqlite3Prepare16( sqlite3 *db, const void *zSql, int nBytes, int saveSqlFlag, sqlite3_stmt **ppStmt, const void **pzTail ) argument
92320 sqlite3_prepare16( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
92332 sqlite3_prepare16_v2( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
99531 int nBytes = sizeof(char *)*(1+pTable->nModuleArg); local
99867 int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR); local
122067 int nBytes; /* size of the input */ member in struct:simple_tokenizer_cursor
122137 simpleOpen( sqlite3_tokenizer *pTokenizer, const char *pInput, int nBytes, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]
H A Dsqlite3.h929 ** The xRandomness() function attempts to return nBytes bytes
3868 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);

Completed in 664 milliseconds