Home
last modified time | relevance | path

Searched refs:zB (Results 1 – 13 of 13) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Duint.c46 const unsigned char *zB = (const unsigned char*)pKey2; in uintCollFunc() local
50 x = zA[i] - zB[j]; in uintCollFunc()
53 if( !isdigit(zB[j]) ) return x; in uintCollFunc()
55 while( j<nKey2 && zB[j]=='0' ){ j++; } in uintCollFunc()
58 && j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc()
63 }else if( j+k<nKey2 && isdigit(zB[j+k]) ){ in uintCollFunc()
66 x = memcmp(zA+i, zB+j, k); in uintCollFunc()
H A Dspellfix.c378 if( zA==0 || zB==0 ) return -1; in editdist1()
381 while( zA[0] && zA[0]==zB[0] ){ dc = zA[0]; zA++; zB++; nMatch++; } in editdist1()
383 if( zA[0]==0 && zB[0]==0 ) return 0; in editdist1()
393 for(nB=0; zB[nB]; nB++){ in editdist1()
394 if( zB[nB]&0x80 ) return -2; in editdist1()
400 for(xB=res=0; (cB = zB[xB])!=0; xB++){ in editdist1()
432 cBnext = zB[xB]; in editdist1()
433 cB = zB[xB-1]; in editdist1()
450 cB = zB[xB-1]; in editdist1()
451 cBnext = zB[xB]; in editdist1()
[all …]
H A Drot13.c87 const char *zB = (const char*)pKey2; in rot13CollFunc() local
90 x = (int)rot13(zA[i]) - (int)rot13(zB[i]); in rot13CollFunc()
H A Ddbdump.c301 const char *zA, const char *zB, /* Try these first */ in unused_string() argument
306 if( strstr(z, zB)==0 ) return zB; in unused_string()
H A Ddecimal.c419 const unsigned char *zB = (const unsigned char*)pKey2; in decimalCollFunc() local
421 Decimal *pB = decimal_new(0, 0, nKey2, zB); in decimalCollFunc()
H A Dzipfile.c1450 static int zipfileComparePath(const char *zA, const char *zB, int nB){ in zipfileComparePath() argument
1453 if( nB>0 && zB[nB-1]=='/' ) nB--; in zipfileComparePath()
1454 if( nA==nB && memcmp(zA, zB, nA)==0 ) return 0; in zipfileComparePath()
/sqlite-3.40.0/ext/icu/
H A Dicu.c216 const unsigned char *zB = sqlite3_value_text(argv[1]); in icuLikeFunc() local
244 if( zA && zB ){ in icuLikeFunc()
245 sqlite3_result_int(context, icuLikeCompare(zA, zB, uEsc)); in icuLikeFunc()
/sqlite-3.40.0/src/
H A Dfunc.c876 const unsigned char *zA, *zB; in likeFunc() local
926 zB = sqlite3_value_text(argv[0]); in likeFunc()
928 if( zA && zB ){ in likeFunc()
933 patternCompare(zB, zA, pInfo, escape)==SQLITE_MATCH); in likeFunc()
H A Dtclsqlite.c921 const void *zB in tclSqlCollate() argument
929 Tcl_ListObjAppendElement(p->interp, pCmd, Tcl_NewStringObj(zB, nB)); in tclSqlCollate()
H A Dtest1.c2980 int nB, const void *zB in test_collate_func() argument
3014 sqlite3ValueSetStr(pVal, nB, zB, encin, SQLITE_STATIC); in test_collate_func()
3094 int nB, const void *zB in test_utf16bin_collate_func() argument
3097 int res = memcmp(zA, zB, nCmp); in test_utf16bin_collate_func()
H A Dshell.c.in1557 ** Try to use zA and zB first. If both of those are already found in z[]
1562 const char *zA, const char *zB, /* Try these first */ argument
1567 if( strstr(z, zB)==0 ) return zB;
/sqlite-3.40.0/ext/recover/
H A Dsqlite3recover.c734 const char *zA, const char *zB, /* Try these first */ in recoverUnusedString() argument
739 if( strstr(z, zB)==0 ) return zB; in recoverUnusedString()
/sqlite-3.40.0/test/
H A Dregexp1.test96 SELECT x FROM t1 WHERE y REGEXP '[^b-zB-Z]dam' ORDER BY x;