Lines Matching refs:z1
93967 const char *z1;
93970 z1 = pIdx->azColl[k];
93972 if( z1!=z2 && sqlite3StrICmp(z1, z2) ) break;
96843 char *z1;
96852 z1 = contextMalloc(context, ((i64)n)+1);
96853 if( z1 ){
96855 z1[i] = (char)sqlite3Toupper(z2[i]);
96857 sqlite3_result_text(context, z1, n, sqlite3_free);
96862 char *z1;
96871 z1 = contextMalloc(context, ((i64)n)+1);
96872 if( z1 ){
96874 z1[i] = sqlite3Tolower(z2[i]);
96876 sqlite3_result_text(context, z1, n, sqlite3_free);
101319 static int xferCompatibleCollation(const char *z1, const char *z2){
101320 if( z1==0 ){
101326 return sqlite3StrICmp(z1, z2)==0;
121870 const char *z1, *z2;
121873 z1 = pColl->zName;
121877 if( sqlite3StrICmp(z1, z2)!=0 ) continue;
141884 const char *z1;
141888 z1 = zStr;
141890 char c = *z1;
141896 z2 = z1;
141901 z2 = &z1[1];
141907 if( sqlite3Fts3IsIdChar(*z1) ){
141908 z2 = &z1[1];
141911 z1++;
141916 *pn = (int)(z2-z1);
141917 return z1;
144591 char *z1 = fts3HashKey(*(Fts3HashElem **)lhs);
144597 int c = memcmp(z1, z2, n);