Searched refs:zIn (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 1525 size_t sqlite3_qrf_wcswidth(const char *zIn){ in sqlite3_qrf_wcswidth() argument 1526 const unsigned char *z = (const unsigned char*)zIn; in sqlite3_qrf_wcswidth() 1560 static int qrfDisplayWidth(const char *zIn, sqlite3_int64 nByte, int *pnNL){ in qrfDisplayWidth() argument 1566 if( zIn==0 ) zIn = ""; in qrfDisplayWidth() 1567 z = (const unsigned char*)zIn; in qrfDisplayWidth() 1622 unsigned char *zIn; /* Text to be escaped */ in qrfEscape() local 1627 zIn = (unsigned char*)sqlite3_str_value(pStr); in qrfEscape() 1628 if( zIn==0 ) return; in qrfEscape() 1629 zIn += iStart; in qrfEscape() 1632 for(i=0; (c = zIn[i])!=0; i++){ in qrfEscape() [all …]
|
| H A D | sqlite3ext.h | 306 void (*str_append)(sqlite3_str*, const char *zIn, int N); 307 void (*str_appendall)(sqlite3_str*, const char *zIn);
|
| H A D | sqlite3.c | 9200 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); 9201 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn); 21611 #define SQLITE_SKIP_UTF8(zIn) { \ argument 21612 if( (*(zIn++))>=0xc0 ){ \ 21613 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \ 35922 #define READ_UTF8(zIn, zTerm, c) \ argument 35923 c = *(zIn++); \ 35926 while( zIn<zTerm && (*zIn & 0xc0)==0x80 ){ \ 35927 c = (c<<6) + (0x3f & *(zIn++)); \ 36003 unsigned char *zIn; /* Input iterator */ in sqlite3VdbeMemTranslate() local [all …]
|
| H A D | sqlite3.h | 8879 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); 8880 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
|
| /freebsd/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 1399 char const *zIn, /* SQL to compile */ in dbPrepareAndBind() argument 1403 const char *zSql = zIn; /* Pointer to first SQL statement in zIn */ in dbPrepareAndBind()
|