Lines Matching refs:z2
865 const char *z2, /* Right-handl comparison character */ in matchFromTo() argument
871 if( pStr->z[n1]!=z2[0] ) return 0; in matchFromTo()
872 if( strncmp(pStr->z+n1, z2, b1)!=0 ) return 0; in matchFromTo()
992 const char *z2, /* The TO string */ in editDist3Core() argument
1026 a2[i2].nByte = utf8Len((unsigned char)z2[i2], n2-i2); in editDist3Core()
1031 if( p->a[0]>z2[i2] ) break; in editDist3Core()
1032 if( matchTo(p, z2+i2, n2-i2)==0 ) continue; in editDist3Core()
1087 if( matchFromTo(&f, i1, z2+i2, n2-i2) ){ in editDist3Core()
1093 if( matchTo(p, z2+i2, n2-i2) ){ in editDist3Core()
1111 printf("%c-%02x:", z2[i2], z2[i2]&0xff); in editDist3Core()
1136 if( (z2[k] & 0xc0)==0x80 ) nExtra++; in editDist3Core()