Searched refs:FASTSEARCH (Results 1 - 14 of 14) sorted by relevance
/third_party/python/Objects/stringlib/ |
H A D | find.h | 18 pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH); in find() 37 pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_RSEARCH); in rfind()
|
H A D | partition.h | 30 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_SEARCH); in partition() 87 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_RSEARCH); in rpartition()
|
H A D | undef.h | 1 #undef FASTSEARCH macro
|
H A D | count.h | 19 count = FASTSEARCH(str, str_len, sub, sub_len, maxcount, FAST_COUNT); in count()
|
H A D | ucs4lib.h | 6 #define FASTSEARCH ucs4lib_fastsearch macro
|
H A D | ucs2lib.h | 6 #define FASTSEARCH ucs2lib_fastsearch macro
|
H A D | ucs1lib.h | 6 #define FASTSEARCH ucs1lib_fastsearch macro
|
H A D | asciilib.h | 6 #define FASTSEARCH asciilib_fastsearch macro
|
H A D | replace.h | 31 use FASTSEARCH() or memchr() */ in replace_1char_inplace() 41 i = FASTSEARCH(s, end - s, &ch1, 1, 0, FAST_SEARCH); in replace_1char_inplace()
|
H A D | stringdefs.h | 9 #define FASTSEARCH fastsearch macro
|
H A D | unicodedefs.h | 9 #define FASTSEARCH fastsearch macro
|
H A D | split.h | 166 pos = FASTSEARCH(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH); in split() 308 pos = FASTSEARCH(str, j, sep, sep_len, -1, FAST_RSEARCH); in rsplit()
|
H A D | fastsearch.h | 739 FASTSEARCH(const STRINGLIB_CHAR* s, Py_ssize_t n, in FASTSEARCH() function
|
/third_party/python/Objects/ |
H A D | bytes_methods.c | 430 #define FASTSEARCH fastsearch macro
|
Completed in 6 milliseconds