Searched refs:nByte (Results 1 – 4 of 4) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 1440 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); 1443 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); 4147 int nByte, /* Maximum length of zSql in bytes. */ 4154 int nByte, /* Maximum length of zSql in bytes. */ 4161 int nByte, /* Maximum length of zSql in bytes. */ 4169 int nByte, /* Maximum length of zSql in bytes. */ 4176 int nByte, /* Maximum length of zSql in bytes. */ 4183 int nByte, /* Maximum length of zSql in bytes. */
|
| H A D | sqlite3.c | 24645 testcase( ROUND8(nByte)==nByte ); 24655 testcase( ROUND8(nByte)!=nByte ); 25099 memset(((char*)pInt)+nByte, 0x65, nReserve-nByte); 40754 int nByte; 44071 int nByte; 44098 int nByte; 78361 for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){} 81451 nByte = ROUND8(nByte); 86976 nByte = 222633 if( nByte<128 ) nByte = 128; [all …]
|
| H A D | shell.c | 535 return defaultMalloc(nByte); in oomMalloc() 7442 p += nByte; in zipfileScanExtra() 8706 int nByte; in zipfileStep() local 9422 assert( nByte>0 ); in idxMalloc() 9425 memset(pRet, 0, nByte); in idxMalloc() 10784 if( nByte>pSlot->nByte ){ in idxRemFunc() 10790 pSlot->nByte = nByte*2; in idxRemFunc() 10793 pSlot->n = nByte; in idxRemFunc() 17982 memset(pRet, 0, nByte); in shellMalloc() 19536 nByte = strlen30(zSql); in do_meta_command() [all …]
|
| /freebsd-13.1/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 1377 int nByte; in dbPrepareAndBind() local 1398 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind() 1399 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte); in dbPrepareAndBind() 1400 memset(pPreStmt, 0, nByte); in dbPrepareAndBind() 2456 int nByte; /* Number of bytes in an SQL string */ in DbObjCmd() local 2511 nByte = strlen30(zSql); in DbObjCmd() 2524 zSql = malloc( nByte + 50 + nCol*2 ); in DbObjCmd() 2529 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?", in DbObjCmd()
|