Home
last modified time | relevance | path

Searched refs:sepmask (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dunicodeobject.c7070 BLOOM_MASK sepmask = make_bloom_mask(sep, seplen); in _PyUnicode_XStrip() local
7074 while (i < len && BLOOM_MEMBER(sepmask, s[i], sep, seplen)) { in _PyUnicode_XStrip()
7083 } while (j >= i && BLOOM_MEMBER(sepmask, s[j], sep, seplen)); in _PyUnicode_XStrip()
/external/python/cpython3/Objects/
Dunicodeobject.c12284 BLOOM_MASK sepmask; in _PyUnicode_XStrip() local
12294 sepmask = make_bloom_mask(PyUnicode_KIND(sepobj), in _PyUnicode_XStrip()
12302 if (!BLOOM(sepmask, ch)) in _PyUnicode_XStrip()
12315 if (!BLOOM(sepmask, ch)) in _PyUnicode_XStrip()