Lines Matching defs:zA
3606 const unsigned char *zA = (const unsigned char*)pKey1;
3611 x = zA[i] - zB[j];
3612 if( isdigit(zA[i]) ){
3615 while( i<nKey1 && zA[i]=='0' ){ i++; }
3618 while( i+k<nKey1 && isdigit(zA[i+k])
3622 if( i+k<nKey1 && isdigit(zA[i+k]) ){
3627 x = memcmp(zA+i, zB+j, k);
4337 const unsigned char *zA = (const unsigned char*)pKey1;
4339 Decimal *pA = decimalNewFromText((const char*)zA, nKey1);
10836 static int zipfileComparePath(const char *zA, const char *zB, int nB){
10837 int nA = (int)strlen(zA);
10838 if( nA>0 && zA[nA-1]=='/' ) nA--;
10840 if( nA==nB && memcmp(zA, zB, nA)==0 ) return 0;
17201 ** Try to use zA and zB first. If both of those are already found in z[]
17206 const char *zA, const char *zB, /* Try these first */
17210 if( strstr(z, zA)==0 ) return zA;
17213 sqlite3_snprintf(20,zBuf,"(%s%u)", zA, i++);
19837 ** Try to use zA and zB first. If both of those are already found in z[]
19842 const char *zA, const char *zB, /* Try these first */
19846 if( strstr(z, zA)==0 ) return zA;
19849 sqlite3_snprintf(20,zBuf,"(%s%u)", zA, i++);