Home | History | Annotate | Download | only in dist

Lines Matching defs:zA

5693   const unsigned char *zA = (const unsigned char*)pKey1;
5698 x = zA[i] - zB[j];
5699 if( isdigit(zA[i]) ){
5702 while( i<nKey1 && zA[i]=='0' ){ i++; }
5705 while( i+k<nKey1 && isdigit(zA[i+k])
5709 if( i+k<nKey1 && isdigit(zA[i+k]) ){
5714 x = memcmp(zA+i, zB+j, k);
6490 const unsigned char *zA = (const unsigned char*)pKey1;
6492 Decimal *pA = decimalNewFromText((const char*)zA, nKey1);
8803 ** \w Word character. [A-Za-z0-9_]
8851 #define RE_OP_WORD 11 /* Perl word character [A-Za-z0-9_] */
8942 /* Return true if c is a perl "word" character: [A-Za-z0-9_] */
13635 static int zipfileComparePath(const char *zA, const char *zB, int nB){
13636 int nA = (int)strlen(zA);
13637 if( nA>0 && zA[nA-1]=='/' ) nA--;
13639 if( nA==nB && memcmp(zA, zB, nA)==0 ) return 0;
21428 ** Try to use zA and zB first. If both of those are already found in z[]
21433 const char *zA, const char *zB, /* Try these first */
21437 if( strstr(z, zA)==0 ) return zA;
21440 sqlite3_snprintf(20,zBuf,"(%s%u)", zA, i++);