Lines Matching refs:bcount
1637 Py_ssize_t bcount = 0; /* # of times B won in a row */ in merge_lo() local
1649 ++bcount; in merge_lo()
1654 if (bcount >= min_gallop) in merge_lo()
1660 bcount = 0; in merge_lo()
1703 bcount = k; in merge_lo()
1718 } while (acount >= MIN_GALLOP || bcount >= MIN_GALLOP); in merge_lo()
1775 Py_ssize_t bcount = 0; /* # of times B won in a row */ in merge_hi() local
1788 bcount = 0; in merge_hi()
1797 ++bcount; in merge_hi()
1802 if (bcount >= min_gallop) in merge_hi()
1839 bcount = k; in merge_hi()
1858 } while (acount >= MIN_GALLOP || bcount >= MIN_GALLOP); in merge_hi()