Home
last modified time | relevance | path

Searched refs:FAST_RSEARCH (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Objects/stringlib/
Dfastsearch.h18 #define FAST_RSEARCH 2 macro
184 else if (mode == FAST_RSEARCH) in FASTSEARCH()
202 if (mode != FAST_RSEARCH) { in FASTSEARCH()
Dfind.h37 pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_RSEARCH); in STRINGLIB()
Dpartition.h80 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_RSEARCH); in STRINGLIB()
Dsplit.h308 pos = FASTSEARCH(str, j, sep, sep_len, -1, FAST_RSEARCH); in STRINGLIB()
/external/python/cpython2/Objects/stringlib/
Dfastsearch.h19 #define FAST_RSEARCH 2 macro
79 if (mode != FAST_RSEARCH) { in fastsearch()
Dpartition.h78 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_RSEARCH); in stringlib_rpartition()
Dfind.h42 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_RSEARCH); in stringlib_rfind()
Dsplit.h311 pos = fastsearch(str, j, sep, sep_len, -1, FAST_RSEARCH); in stringlib_rsplit()