Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.h1480 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1483 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4297 int nByte, /* Maximum length of zSql in bytes. */
4304 int nByte, /* Maximum length of zSql in bytes. */
4311 int nByte, /* Maximum length of zSql in bytes. */
4319 int nByte, /* Maximum length of zSql in bytes. */
4326 int nByte, /* Maximum length of zSql in bytes. */
4333 int nByte, /* Maximum length of zSql in bytes. */
H A Dshell.c10081 p += nByte; in zipfileScanExtra()
11371 int nByte; in zipfileStep() local
12618 int nByte; in idxGetTableInfo() local
13475 if( nByte>pSlot->nByte ){ in idxRemFunc()
13481 pSlot->nByte = nByte*2; in idxRemFunc()
17524 int nByte = 0; in recoverAddTable() local
18131 int nByte = 0; in recoverWriteDataInit() local
18578 if( iFree+nByte>n || nByte<4 ) return 0; in recoverIsValidPage()
18600 nByte += recoverGetVarint(&a[iOff+nByte], &nPayload); in recoverIsValidPage()
18603 nByte += recoverGetVarint(&a[iOff+nByte], &dummy); in recoverIsValidPage()
[all …]
H A Dsqlite3.c26770 testcase( ROUND8(nByte)==nByte ); in sqlite3MemMalloc()
26780 testcase( ROUND8(nByte)!=nByte ); in sqlite3MemMalloc()
27224 memset(((char*)pInt)+nByte, 0x65, nReserve-nByte); in sqlite3MemMalloc()
48354 int nByte;
48381 int nByte;
83972 for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){}
87391 nByte = ROUND8P(nByte);
93385 nByte =
110572 assert( nByte==ROUND8(nByte) );
240211 if( nByte<128 ) nByte = 128;
[all …]
/freebsd-14.2/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1396 int nByte; in dbPrepareAndBind() local
1417 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()
1418 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte); in dbPrepareAndBind()
1419 memset(pPreStmt, 0, nByte); in dbPrepareAndBind()
2476 int nByte; /* Number of bytes in an SQL string */ in DbObjCmd() local
2531 nByte = strlen30(zSql); in DbObjCmd()
2544 zSql = malloc( nByte + 50 + nCol*2 ); in DbObjCmd()
2549 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?", in DbObjCmd()