Searched refs:zIn (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | shell.c | 1022 if( zIn!=0 && strncmp(zIn, "CREATE ", 7)==0 ){ in shellAddSchemaName() 1025 if( strncmp(zIn+7, aPrefix[i], n)==0 && zIn[n+7]==' ' ){ in shellAddSchemaName() 4652 zIn = zAlt; in decimal_new() 4665 if( zIn[i]=='-' ){ in decimal_new() 4673 char c = zIn[i]; in decimal_new() 4689 if( zIn[j]>='0' && zIn[j]<='9' ){ in decimal_new() 6172 in.z = zIn; in re_match() 6611 zIn++; in re_compile() 7060 char q = zIn[0]; in zipfileDequote() 10027 int nIn = zIn ? STRLEN(zIn) : 0; in idxAppendText() [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.h | 8094 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); 8095 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
|
| H A D | sqlite3.c | 19123 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \ 31710 *zIn = *(zIn+1); 31711 zIn++; 31938 while( zIn[0] && zOut<=zIn ){ 114696 zIn++; 114707 if( zIn[0]=='(' ) zChar = zIn; 121624 if( zIn==0 ) zIn = (u8*)""; 121625 for(i=0; zIn[i] && !sqlite3Isalpha(zIn[i]); i++){} 202734 if( zIn ){ 202743 for(i=4; zIn[i]>='0' && zIn[i]<='9'; i++); [all …]
|
| /freebsd-13.1/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 1323 char const *zIn, /* SQL to compile */ in dbPrepareAndBind() argument 1327 const char *zSql = zIn; /* Pointer to first SQL statement in zIn */ in dbPrepareAndBind()
|