Lines Matching refs:trtable
2215 re_dfastate_t **trtable; in transit_state() local
2239 trtable = state->trtable; in transit_state()
2240 if (__glibc_likely (trtable != NULL)) in transit_state()
2241 return trtable[ch]; in transit_state()
2243 trtable = state->word_trtable; in transit_state()
2244 if (__glibc_likely (trtable != NULL)) in transit_state()
2252 return trtable[ch + SBC_MAX]; in transit_state()
2254 return trtable[ch]; in transit_state()
3269 re_dfastate_t **trtable; in build_trtable() local
3284 state->word_trtable = state->trtable = NULL; in build_trtable()
3294 state->trtable = (re_dfastate_t **) in build_trtable()
3296 if (__glibc_unlikely (state->trtable == NULL)) in build_trtable()
3366 trtable = state->trtable = in build_trtable()
3368 if (__glibc_unlikely (trtable == NULL)) in build_trtable()
3385 trtable[ch] = dest_states_word[j]; in build_trtable()
3387 trtable[ch] = dest_states[j]; in build_trtable()
3397 trtable = state->word_trtable = in build_trtable()
3399 if (__glibc_unlikely (trtable == NULL)) in build_trtable()
3415 trtable[ch] = dest_states[j]; in build_trtable()
3416 trtable[ch + SBC_MAX] = dest_states_word[j]; in build_trtable()
3428 trtable[NEWLINE_CHAR] = dest_states_nl[j]; in build_trtable()
3430 trtable[NEWLINE_CHAR + SBC_MAX] = dest_states_nl[j]; in build_trtable()