Searched refs:fastsearch (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Objects/stringlib/ |
D | partition.h | 28 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()
|
D | find.h | 22 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()
|
D | count.h | 22 count = fastsearch(str, str_len, sub, sub_len, maxcount, FAST_COUNT); in stringlib_count()
|
D | split.h | 169 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()
|
D | fastsearch.h | 37 fastsearch(const STRINGLIB_CHAR* s, Py_ssize_t n, in fastsearch() function
|
/external/python/cpython2/ |
D | Makefile.pre.in | 723 $(srcdir)/Objects/stringlib/fastsearch.h \
|
/external/python/cpython2/Misc/ |
D | NEWS | 5502 - Issue #8530: Prevent stringlib fastsearch from reading beyond the front
|