Lines Matching refs:z1
76674 SQLITE_PRIVATE void sqlite3ExplainBreakpoint(const char *z1, const char *z2){
76675 (void)z1;
110299 const char *z1;
110303 z1 = pIdx->azColl[k];
110305 if( sqlite3StrICmp(z1, z2) ) break;
113425 char *z1;
113434 z1 = contextMalloc(context, ((i64)n)+1);
113435 if( z1 ){
113437 z1[i] = (char)sqlite3Toupper(z2[i]);
113439 sqlite3_result_text(context, z1, n, sqlite3_free);
113444 char *z1;
113453 z1 = contextMalloc(context, ((i64)n)+1);
113454 if( z1 ){
113456 z1[i] = sqlite3Tolower(z2[i]);
113458 sqlite3_result_text(context, z1, n, sqlite3_free);
169291 const char *z1;
169295 z1 = zStr;
169297 char c = *z1;
169303 z2 = z1;
169308 z2 = &z1[1];
169314 if( sqlite3Fts3IsIdChar(*z1) ){
169315 z2 = &z1[1];
169318 z1++;
169323 *pn = (int)(z2-z1);
169324 return z1;
172036 char *z1 = fts3HashKey(*(Fts3HashElem **)lhs);
172042 int c = memcmp(z1, z2, n);
192305 static int rbuStrCompare(const char *z1, const char *z2){
192306 if( z1==0 && z2==0 ) return 0;
192307 if( z1==0 || z2==0 ) return 1;
192308 return (sqlite3_stricmp(z1, z2)!=0);