Lines Matching refs:trtable
2297 re_dfastate_t **trtable; in transit_state() local
2321 trtable = state->trtable; in transit_state()
2322 if (BE (trtable != NULL, 1)) in transit_state()
2323 return trtable[ch]; in transit_state()
2325 trtable = state->word_trtable; in transit_state()
2326 if (BE (trtable != NULL, 1)) in transit_state()
2334 return trtable[ch + SBC_MAX]; in transit_state()
2336 return trtable[ch]; in transit_state()
3361 re_dfastate_t **trtable; in build_trtable() local
3390 state->word_trtable = state->trtable = NULL; in build_trtable()
3401 state->trtable = (re_dfastate_t **) in build_trtable()
3495 trtable = state->trtable = in build_trtable()
3497 if (BE (trtable == NULL, 0)) in build_trtable()
3514 trtable[ch] = dest_states_word[j]; in build_trtable()
3516 trtable[ch] = dest_states[j]; in build_trtable()
3526 trtable = state->word_trtable = in build_trtable()
3528 if (BE (trtable == NULL, 0)) in build_trtable()
3544 trtable[ch] = dest_states[j]; in build_trtable()
3545 trtable[ch + SBC_MAX] = dest_states_word[j]; in build_trtable()
3557 trtable[NEWLINE_CHAR] = dest_states_nl[j]; in build_trtable()
3559 trtable[NEWLINE_CHAR + SBC_MAX] = dest_states_nl[j]; in build_trtable()