Searched refs:nByte (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 1560 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 D | sqlite3.h | 1526 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); 1529 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); 4598 int nByte, /* Maximum length of zSql in bytes. */ 4605 int nByte, /* Maximum length of zSql in bytes. */ 4612 int nByte, /* Maximum length of zSql in bytes. */ 4620 int nByte, /* Maximum length of zSql in bytes. */ 4627 int nByte, /* Maximum length of zSql in bytes. */ 4634 int nByte, /* Maximum length of zSql in bytes. */
|
| H A D | sqlite3.c | 1847 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); 1850 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); 4919 int nByte, /* Maximum length of zSql in bytes. */ 4926 int nByte, /* Maximum length of zSql in bytes. */ 4933 int nByte, /* Maximum length of zSql in bytes. */ 4941 int nByte, /* Maximum length of zSql in bytes. */ 4948 int nByte, /* Maximum length of zSql in bytes. */ 4955 int nByte, /* Maximum length of zSql in bytes. */ 22333 SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *pData, int nByte, int nChar); 22335 SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte); [all …]
|
| /freebsd/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 1453 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()
|