Home
last modified time | relevance | path

Searched refs:fastsearch (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dpartition.h28 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_SEARCH); in stringlib_partition()
78 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_RSEARCH); in stringlib_rpartition()
Dfind.h22 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_SEARCH); in stringlib_find()
42 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_RSEARCH); in stringlib_rfind()
Dcount.h22 count = fastsearch(str, str_len, sub, sub_len, maxcount, FAST_COUNT); in stringlib_count()
Dsplit.h169 pos = fastsearch(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH); in stringlib_split()
311 pos = fastsearch(str, j, sep, sep_len, -1, FAST_RSEARCH); in stringlib_rsplit()
Dfastsearch.h37 fastsearch(const STRINGLIB_CHAR* s, Py_ssize_t n, in fastsearch() function
/external/python/cpython2/
DMakefile.pre.in723 $(srcdir)/Objects/stringlib/fastsearch.h \
/external/python/cpython2/Misc/
DNEWS5502 - Issue #8530: Prevent stringlib fastsearch from reading beyond the front