Lines Matching defs:zA
2299 const unsigned char *zA = (const unsigned char*)pKey1;
2304 x = zA[i] - zB[j];
2305 if( isdigit(zA[i]) ){
2308 while( i<nKey1 && zA[i]=='0' ){ i++; }
2311 while( i+k<nKey1 && isdigit(zA[i+k])
2315 if( i+k<nKey1 && isdigit(zA[i+k]) ){
2320 x = memcmp(zA+i, zB+j, k);
2767 const unsigned char *zA = (const unsigned char*)pKey1;
2769 Decimal *pA = decimal_new(0, 0, nKey1, zA);
8293 static int zipfileComparePath(const char *zA, const char *zB, int nB){
8294 int nA = (int)strlen(zA);
8295 if( nA>0 && zA[nA-1]=='/' ) nA--;
8297 if( nA==nB && memcmp(zA, zB, nA)==0 ) return 0;
13341 ** Try to use zA and zB first. If both of those are already found in z[]
13346 const char *zA, const char *zB, /* Try these first */
13350 if( strstr(z, zA)==0 ) return zA;
13353 sqlite3_snprintf(20,zBuf,"(%s%u)", zA, i++);
15961 ** Try to use zA and zB first. If both of those are already found in z[]
15966 const char *zA, const char *zB, /* Try these first */
15970 if( strstr(z, zA)==0 ) return zA;
15973 sqlite3_snprintf(20,zBuf,"(%s%u)", zA, i++);