Home
last modified time | relevance | path

Searched refs:FAST_SEARCH (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dfastsearch.h18 #define FAST_SEARCH 1 macro
63 } else if (mode == FAST_SEARCH) { in fastsearch()
Dpartition.h28 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_SEARCH); in stringlib_partition()
Dfind.h22 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_SEARCH); in stringlib_find()
Dsplit.h169 pos = fastsearch(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH); in stringlib_split()
/external/python/cpython3/Objects/stringlib/
Dfastsearch.h17 #define FAST_SEARCH 1 macro
182 if (mode == FAST_SEARCH) in FASTSEARCH()
Dreplace.h41 i = FASTSEARCH(s, end - s, &ch1, 1, 0, FAST_SEARCH); in STRINGLIB()
Dfind.h18 pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH); in STRINGLIB()
Dpartition.h25 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_SEARCH); in STRINGLIB()
Dsplit.h166 pos = FASTSEARCH(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH); in STRINGLIB()