Home | History | Annotate | Download | only in lib

Lines Matching defs:trtable

2301   re_dfastate_t **trtable;
2325 trtable = state->trtable;
2326 if (BE (trtable != NULL, 1))
2327 return trtable[ch];
2329 trtable = state->word_trtable;
2330 if (BE (trtable != NULL, 1))
2338 return trtable[ch + SBC_MAX];
2340 return trtable[ch];
3365 re_dfastate_t **trtable;
3394 state->word_trtable = state->trtable = NULL;
3405 state->trtable = (re_dfastate_t **)
3499 trtable = state->trtable =
3501 if (BE (trtable == NULL, 0))
3518 trtable[ch] = dest_states_word[j];
3520 trtable[ch] = dest_states[j];
3528 transition tables, one starting at trtable[0] and one
3529 starting at trtable[SBC_MAX]. */
3530 trtable = state->word_trtable =
3532 if (BE (trtable == NULL, 0))
3548 trtable[ch] = dest_states[j];
3549 trtable[ch + SBC_MAX] = dest_states_word[j];
3561 trtable[NEWLINE_CHAR] = dest_states_nl[j];
3563 trtable[NEWLINE_CHAR + SBC_MAX] = dest_states_nl[j];