Home
last modified time | relevance | path

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

/external/sqlite/dist/
Dsqlite3.h1182 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1185 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
3292 int nByte, /* Maximum length of zSql in bytes. */
3299 int nByte, /* Maximum length of zSql in bytes. */
3306 int nByte, /* Maximum length of zSql in bytes. */
3313 int nByte, /* Maximum length of zSql in bytes. */
Dsqlite3.c1389 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1392 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
3499 int nByte, /* Maximum length of zSql in bytes. */
3506 int nByte, /* Maximum length of zSql in bytes. */
3513 int nByte, /* Maximum length of zSql in bytes. */
3520 int nByte, /* Maximum length of zSql in bytes. */
13372 SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte);
15222 int nByte = 0; /* Used to accumulate return value */ in sqlite3_db_status() local
15225 db->pnBytesFreed = &nByte; in sqlite3_db_status()
15231 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * ( in sqlite3_db_status()
[all …]
DAndroid.patch102 nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk;
Dshell.c2973 int nByte; /* Number of bytes in an SQL string */ in do_meta_command() local
3051 nByte = strlen30(zSql); in do_meta_command()
3092 zSql = sqlite3_malloc64( nByte*2 + 20 + nCol*2 ); in do_meta_command()
3098 sqlite3_snprintf(nByte+20, zSql, "INSERT INTO \"%w\" VALUES(?", zTable); in do_meta_command()
/external/sqlite/dist/orig/
Dsqlite3.h1182 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1185 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
3292 int nByte, /* Maximum length of zSql in bytes. */
3299 int nByte, /* Maximum length of zSql in bytes. */
3306 int nByte, /* Maximum length of zSql in bytes. */
3313 int nByte, /* Maximum length of zSql in bytes. */
Dsqlite3.c1389 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1392 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
3499 int nByte, /* Maximum length of zSql in bytes. */
3506 int nByte, /* Maximum length of zSql in bytes. */
3513 int nByte, /* Maximum length of zSql in bytes. */
3520 int nByte, /* Maximum length of zSql in bytes. */
13372 SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte);
15222 int nByte = 0; /* Used to accumulate return value */ in sqlite3_db_status() local
15225 db->pnBytesFreed = &nByte; in sqlite3_db_status()
15231 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * ( in sqlite3_db_status()
[all …]
Dshell.c2951 int nByte; /* Number of bytes in an SQL string */ in do_meta_command() local
3029 nByte = strlen30(zSql); in do_meta_command()
3070 zSql = sqlite3_malloc64( nByte*2 + 20 + nCol*2 ); in do_meta_command()
3076 sqlite3_snprintf(nByte+20, zSql, "INSERT INTO \"%w\" VALUES(?", zTable); in do_meta_command()
/external/pdfium/core/src/fxcrt/
Dfx_basic_util.cpp237 int nByte = bsUri.GetLength(); in FX_UrlEncode() local
238 for (int j = 0; j < nByte; j++) { in FX_UrlEncode()
/external/pdfium/fpdfsdk/src/javascript/
Dutil.cpp639 int nByte = params[0].ToInt(); in byteToChar() local
640 unsigned char cByte = (unsigned char)nByte; in byteToChar()