Searched refs:bestj (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/ |
D | difflib.py | 405 besti, bestj, bestsize = alo, blo, 0 424 besti, bestj, bestsize = i-k+1, j-k+1, k 431 while besti > alo and bestj > blo and \ 432 not isbjunk(b[bestj-1]) and \ 433 a[besti-1] == b[bestj-1]: 434 besti, bestj, bestsize = besti-1, bestj-1, bestsize+1 435 while besti+bestsize < ahi and bestj+bestsize < bhi and \ 436 not isbjunk(b[bestj+bestsize]) and \ 437 a[besti+bestsize] == b[bestj+bestsize]: 447 while besti > alo and bestj > blo and \ [all …]
|
/external/python/cpython3/Lib/ |
D | difflib.py | 400 besti, bestj, bestsize = alo, blo, 0 419 besti, bestj, bestsize = i-k+1, j-k+1, k 426 while besti > alo and bestj > blo and \ 427 not isbjunk(b[bestj-1]) and \ 428 a[besti-1] == b[bestj-1]: 429 besti, bestj, bestsize = besti-1, bestj-1, bestsize+1 430 while besti+bestsize < ahi and bestj+bestsize < bhi and \ 431 not isbjunk(b[bestj+bestsize]) and \ 432 a[besti+bestsize] == b[bestj+bestsize]: 442 while besti > alo and bestj > blo and \ [all …]
|
/external/ImageMagick/coders/ |
D | dds.c | 2448 bestj = 0, in CompressClusterFit() local 2606 bestj = j; in CompressClusterFit() 2645 for (i=besti; i < (ssize_t) bestj; i++) in CompressClusterFit() 2647 for (i=bestj; i < (ssize_t) bestk; i++) in CompressClusterFit() 2678 bestj, in CompressRangeFit() local 2738 bestj = 0; in CompressRangeFit() 2749 bestj = j; in CompressRangeFit() 2753 closest[i] = (unsigned char) bestj; in CompressRangeFit()
|