Lines Matching defs:zB
3607 const unsigned char *zB = (const unsigned char*)pKey2;
3611 x = zA[i] - zB[j];
3614 if( !isdigit(zB[j]) ) return x;
3616 while( j<nKey2 && zB[j]=='0' ){ j++; }
3619 && j+k<nKey2 && isdigit(zB[j+k]) ){
3624 }else if( j+k<nKey2 && isdigit(zB[j+k]) ){
3627 x = memcmp(zA+i, zB+j, k);
4338 const unsigned char *zB = (const unsigned char*)pKey2;
4340 Decimal *pB = decimalNewFromText((const char*)zB, nKey2);
10834 ** nB is the value of strlen(zB). This function returns 0 if the strings are
10836 static int zipfileComparePath(const char *zA, const char *zB, int nB){
10839 if( nB>0 && zB[nB-1]=='/' ) nB--;
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 */
17211 if( strstr(z, zB)==0 ) return zB;
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 */
19847 if( strstr(z, zB)==0 ) return zB;