Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c1560 static int qrfDisplayWidth(const char *zIn, sqlite3_int64 nByte, int *pnNL){ in qrfDisplayWidth() argument
1568 zEnd = &z[nByte]; in qrfDisplayWidth()
1881 int nByte; in qrfJsonbToJson() local
1884 nByte = sqlite3_column_bytes(p->pStmt, iCol); in qrfJsonbToJson()
1886 if( qrfJsonbQuickCheck((unsigned char*)pBlob, nByte)==0 ){ in qrfJsonbToJson()
1906 sqlite3_bind_blob(p->pJTrans, 1, (void*)pBlob, nByte, SQLITE_STATIC); in qrfJsonbToJson()
2128 int nByte = sqlite3_str_length(pOut); in qrfRTrim() local
2130 while( nByte>0 && zOut[nByte-1]==' ' ){ nByte--; } in qrfRTrim()
2131 sqlite3_str_truncate(pOut, nByte); in qrfRTrim()
4954 int nByte = sqlite3_value_bytes(argv[0]); in sha3Func() local
[all …]
H A Dsqlite3.h1526 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1529 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4596 int nByte, /* Maximum length of zSql in bytes. */
4603 int nByte, /* Maximum length of zSql in bytes. */
4610 int nByte, /* Maximum length of zSql in bytes. */
4618 int nByte, /* Maximum length of zSql in bytes. */
4625 int nByte, /* Maximum length of zSql in bytes. */
4632 int nByte, /* Maximum length of zSql in bytes. */
H A Dsqlite3.c1847 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1850 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4917 int nByte, /* Maximum length of zSql in bytes. */
4924 int nByte, /* Maximum length of zSql in bytes. */
4931 int nByte, /* Maximum length of zSql in bytes. */
4939 int nByte, /* Maximum length of zSql in bytes. */
4946 int nByte, /* Maximum length of zSql in bytes. */
4953 int nByte, /* Maximum length of zSql in bytes. */
22311 SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *pData, int nByte, int nChar);
22313 SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte);
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1453 int nByte; in dbPrepareAndBind() local
1474 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()
1475 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte); in dbPrepareAndBind()
1476 memset(pPreStmt, 0, nByte); in dbPrepareAndBind()
2957 int nByte; /* Number of bytes in an SQL string */ in DbObjCmd() local
3013 nByte = strlen30(zSql); in DbObjCmd()
3026 zSql = malloc( nByte + 50 + nCol*2 ); in DbObjCmd()
3031 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?", in DbObjCmd()