Home
last modified time | relevance | path

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

/src/contrib/sqlite3/ !
H A Dshell.c2915 int nByte = sqlite3_value_bytes(argv[0]); in sha3Func() local
2930 SHA3Update(&cx, sqlite3_value_blob(argv[0]), nByte); in sha3Func()
2932 SHA3Update(&cx, sqlite3_value_text(argv[0]), nByte); in sha3Func()
3436 int nByte = sqlite3_value_bytes(argv[0]); in sha1Func() local
3443 hash_step(&cx, sqlite3_value_blob(argv[0]), nByte); in sha1Func()
3445 hash_step(&cx, sqlite3_value_text(argv[0]), nByte); in sha1Func()
8683 sqlite3_int64 nByte = nNew*sizeof(FsdirLevel); in fsdirNext() local
8684 FsdirLevel *aNew = (FsdirLevel*)sqlite3_realloc64(pCur->aLvl, nByte); in fsdirNext()
9693 static void apndDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
9696 static int apndRandomness(sqlite3_vfs*, int nByte, char *zOut);
[all …]
H A Dsqlite3.h1502 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1505 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4492 int nByte, /* Maximum length of zSql in bytes. */
4499 int nByte, /* Maximum length of zSql in bytes. */
4506 int nByte, /* Maximum length of zSql in bytes. */
4514 int nByte, /* Maximum length of zSql in bytes. */
4521 int nByte, /* Maximum length of zSql in bytes. */
4528 int nByte, /* Maximum length of zSql in bytes. */
H A Dsqlite3.c1821 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1824 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4811 int nByte, /* Maximum length of zSql in bytes. */
4818 int nByte, /* Maximum length of zSql in bytes. */
4825 int nByte, /* Maximum length of zSql in bytes. */
4833 int nByte, /* Maximum length of zSql in bytes. */
4840 int nByte, /* Maximum length of zSql in bytes. */
4847 int nByte, /* Maximum length of zSql in bytes. */
21663 SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *pData, int nByte, int nChar);
21665 SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte);
[all …]
/src/contrib/sqlite3/tea/generic/ !
H A Dtclsqlite3.c1438 int nByte; in dbPrepareAndBind() local
1459 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()
1460 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte); in dbPrepareAndBind()
1461 memset(pPreStmt, 0, nByte); in dbPrepareAndBind()
2524 int nByte; /* Number of bytes in an SQL string */ in DbObjCmd() local
2580 nByte = strlen30(zSql); in DbObjCmd()
2593 zSql = malloc( nByte + 50 + nCol*2 ); in DbObjCmd()
2598 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?", in DbObjCmd()