Lines Matching refs:CANON_ELEMENT

60 #ifndef CANON_ELEMENT
61 # define CANON_ELEMENT(c) c macro
116 a = CANON_ELEMENT (needle[j + k]); in critical_factorization()
117 b = CANON_ELEMENT (needle[(size_t)(max_suffix + k)]); in critical_factorization()
151 a = CANON_ELEMENT (needle[j + k]); in critical_factorization()
152 b = CANON_ELEMENT (needle[max_suffix_rev + k]); in critical_factorization()
224 while (i < needle_len && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
225 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
231 while (memory < i + 1 && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
232 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
258 while (i < needle_len && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
259 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
265 while (i != SIZE_MAX && (CANON_ELEMENT (needle[i]) in two_way_short_needle()
266 == CANON_ELEMENT (haystack[i + j]))) in two_way_short_needle()
313 shift_table[CANON_ELEMENT (needle[i])] = needle_len - i - 1; in two_way_long_needle()
329 shift = shift_table[CANON_ELEMENT (haystack[j + needle_len - 1])]; in two_way_long_needle()
346 while (i < needle_len - 1 && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
347 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
353 while (memory < i + 1 && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
354 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
381 shift = shift_table[CANON_ELEMENT (haystack[j + needle_len - 1])]; in two_way_long_needle()
390 while (i < needle_len - 1 && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
391 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
397 while (i != SIZE_MAX && (CANON_ELEMENT (needle[i]) in two_way_long_needle()
398 == CANON_ELEMENT (haystack[i + j]))) in two_way_long_needle()
412 #undef CANON_ELEMENT