Lines Matching refs:CANON_ELEMENT

92 #ifndef CANON_ELEMENT
93 # define CANON_ELEMENT(c) c macro
148 a = CANON_ELEMENT (needle[j + k]); in critical_factorization()
149 b = CANON_ELEMENT (needle[(size_t)(max_suffix + k)]); in critical_factorization()
183 a = CANON_ELEMENT (needle[j + k]); in critical_factorization()
184 b = CANON_ELEMENT (needle[max_suffix_rev + k]); in critical_factorization()
256 while (i < needle_len && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
257 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
263 while (memory < i + 1 && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
264 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
290 while (i < needle_len && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
291 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
297 while (i != SIZE_MAX && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
298 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
345 shift_table[CANON_ELEMENT (needle[i])] = needle_len - i - 1; in two_way_long_needle()
361 shift = shift_table[CANON_ELEMENT (haystack[j + needle_len - 1])]; in two_way_long_needle()
378 while (i < needle_len - 1 && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
379 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
385 while (memory < i + 1 && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
386 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
413 shift = shift_table[CANON_ELEMENT (haystack[j + needle_len - 1])]; in two_way_long_needle()
422 while (i < needle_len - 1 && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
423 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
429 while (i != SIZE_MAX && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
430 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
444 #undef CANON_ELEMENT