Lines Matching refs:zB
2300 const unsigned char *zB = (const unsigned char*)pKey2;
2304 x = zA[i] - zB[j];
2307 if( !isdigit(zB[j]) ) return x;
2309 while( j<nKey2 && zB[j]=='0' ){ j++; }
2312 && j+k<nKey2 && isdigit(zB[j+k]) ){
2317 }else if( j+k<nKey2 && isdigit(zB[j+k]) ){
2320 x = memcmp(zA+i, zB+j, k);
2768 const unsigned char *zB = (const unsigned char*)pKey2;
2770 Decimal *pB = decimal_new(0, 0, nKey2, zB);
8291 ** nB is the value of strlen(zB). This function returns 0 if the strings are
8293 static int zipfileComparePath(const char *zA, const char *zB, int nB){
8296 if( nB>0 && zB[nB-1]=='/' ) nB--;
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 */
13351 if( strstr(z, zB)==0 ) return zB;
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 */
15971 if( strstr(z, zB)==0 ) return zB;