Lines Matching refs:spot
1491 struct re_state_table_entry *spot; in re_acquire_state() local
1503 spot = dfa->state_table + (hash & dfa->state_hash_mask); in re_acquire_state()
1505 for (i = 0 ; i < spot->num ; i++) in re_acquire_state()
1507 re_dfastate_t *state = spot->array[i]; in re_acquire_state()
1539 struct re_state_table_entry *spot; in re_acquire_state_context() local
1551 spot = dfa->state_table + (hash & dfa->state_hash_mask); in re_acquire_state_context()
1553 for (i = 0 ; i < spot->num ; i++) in re_acquire_state_context()
1555 re_dfastate_t *state = spot->array[i]; in re_acquire_state_context()
1578 struct re_state_table_entry *spot; in register_state() local
1594 spot = dfa->state_table + (hash & dfa->state_hash_mask); in register_state()
1595 if (__glibc_unlikely (spot->alloc <= spot->num)) in register_state()
1597 Idx new_alloc = 2 * spot->num + 2; in register_state()
1598 re_dfastate_t **new_array = re_realloc (spot->array, re_dfastate_t *, in register_state()
1602 spot->array = new_array; in register_state()
1603 spot->alloc = new_alloc; in register_state()
1605 spot->array[spot->num++] = newstate; in register_state()