Home
last modified time | relevance | path

Searched refs:nByte (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h971 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
974 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
2861 int nByte, /* Maximum length of zSql in bytes. */
2868 int nByte, /* Maximum length of zSql in bytes. */
2875 int nByte, /* Maximum length of zSql in bytes. */
2882 int nByte, /* Maximum length of zSql in bytes. */
H A Dsqlite3.c14857 nByte = ROUND8(nByte); in sqlite3MemMalloc()
15260 memset(((char*)pInt)+nByte, 0x65, nReserve-nByte); in sqlite3MemMalloc()
32013 int nByte;
36176 nByte = ROUND8(nByte);
36179 if( pList->nByte==nByte ) break;
36194 assert( pList->nByte!=nByte );
36197 pNew->nByte = nByte;
57862 for(nByte=0; nByte<=iLimit && z[nByte]; nByte++){}
57864 for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){}
59699 nByte = ROUND8(nByte);
[all …]
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.h1379 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1382 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4049 int nByte, /* Maximum length of zSql in bytes. */
4056 int nByte, /* Maximum length of zSql in bytes. */
4063 int nByte, /* Maximum length of zSql in bytes. */
4071 int nByte, /* Maximum length of zSql in bytes. */
4078 int nByte, /* Maximum length of zSql in bytes. */
4085 int nByte, /* Maximum length of zSql in bytes. */
H A Dsqlite3.c23626 testcase( ROUND8(nByte)==nByte ); in sqlite3MemMalloc()
23636 testcase( ROUND8(nByte)!=nByte ); in sqlite3MemMalloc()
24080 memset(((char*)pInt)+nByte, 0x65, nReserve-nByte); in sqlite3MemMalloc()
39796 int nByte;
43288 int nByte;
43315 int nByte;
76726 for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){}
79808 nByte = ROUND8(nByte);
85298 nByte =
215165 if( nByte<128 ) nByte = 128;
[all …]
H A Dshell.c522 return defaultMalloc(nByte); in oomMalloc()
5066 p += nByte; in zipfileScanExtra()
6339 int nByte; in zipfileStep() local
7034 assert( nByte>0 ); in idxMalloc()
7037 memset(pRet, 0, nByte); in idxMalloc()
8350 if( nByte>pSlot->nByte ){ in idxRemFunc()
8356 pSlot->nByte = nByte*2; in idxRemFunc()
8359 pSlot->n = nByte; in idxRemFunc()
15058 memset(pRet, 0, nByte); in shellMalloc()
16505 nByte = strlen30(zSql); in do_meta_command()
[all …]
/freebsd-12.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1355 int nByte; in dbPrepareAndBind() local
1376 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()
1377 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte); in dbPrepareAndBind()
1378 memset(pPreStmt, 0, nByte); in dbPrepareAndBind()
2432 int nByte; /* Number of bytes in an SQL string */ in DbObjCmd() local
2487 nByte = strlen30(zSql); in DbObjCmd()
2500 zSql = malloc( nByte + 50 + nCol*2 ); in DbObjCmd()
2505 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?", in DbObjCmd()