Lines Matching refs:nB
363 int nA, nB; /* Number of characters in zA[] and zB[] */ in editdist1() local
393 for(nB=0; zB[nB]; nB++){ in editdist1()
394 if( zB[nB]&0x80 ) return -2; in editdist1()
406 if( nB==0 ){ in editdist1()
419 if( nB<(sizeof(mStack)*4)/(sizeof(mStack[0])*5) ){ in editdist1()
422 m = toFree = sqlite3_malloc64( (nB+1)*5*sizeof(m[0])/4 ); in editdist1()
425 cx = (char*)&m[nB+1]; in editdist1()
431 for(xB=1; xB<=nB; xB++){ in editdist1()
448 for(xB=1; xB<=nB; xB++){ in editdist1()
494 for(xB=1; xB<=nB; xB++){ in editdist1()
501 res = m[nB]; in editdist1()
1186 int nB = sqlite3_value_bytes(argv[1]); in editDist3SqlFunc() local
1197 dist = editDist3Core(pFrom, zB, nB, pLang, 0); in editDist3SqlFunc()