ONIG_CHAR_TABLE_SIZE  747 include/ruby/oniguruma.h   unsigned char  map[ONIG_CHAR_TABLE_SIZE]; /* used as BM skip or char-map */
ONIG_CHAR_TABLE_SIZE 4180 regcomp.c        if (len < ONIG_CHAR_TABLE_SIZE) {
ONIG_CHAR_TABLE_SIZE 4181 regcomp.c          for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) skip[i] = (UChar )len;
ONIG_CHAR_TABLE_SIZE 4208 regcomp.c            *int_skip = (int* )xmalloc(sizeof(int) * ONIG_CHAR_TABLE_SIZE);
ONIG_CHAR_TABLE_SIZE 4211 regcomp.c          for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) (*int_skip)[i] = (int )len;
ONIG_CHAR_TABLE_SIZE 4253 regcomp.c        if (len < ONIG_CHAR_TABLE_SIZE) {
ONIG_CHAR_TABLE_SIZE 4254 regcomp.c          for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) skip[i] = (UChar )(len + 1);
ONIG_CHAR_TABLE_SIZE 4281 regcomp.c            *int_skip = (int* )xmalloc(sizeof(int) * ONIG_CHAR_TABLE_SIZE);
ONIG_CHAR_TABLE_SIZE 4284 regcomp.c          for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) (*int_skip)[i] = (int )(len + 1);
ONIG_CHAR_TABLE_SIZE 4348 regcomp.c        UChar map[ONIG_CHAR_TABLE_SIZE];
ONIG_CHAR_TABLE_SIZE 4817 regcomp.c        for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) {
ONIG_CHAR_TABLE_SIZE 5338 regcomp.c        for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++)
ONIG_CHAR_TABLE_SIZE 5565 regcomp.c          for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++)
ONIG_CHAR_TABLE_SIZE 5572 regcomp.c            for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) {
ONIG_CHAR_TABLE_SIZE 5623 regcomp.c          if (IS_NOT_NULL(reg->int_map))          size += sizeof(int) * ONIG_CHAR_TABLE_SIZE;
ONIG_CHAR_TABLE_SIZE 5624 regcomp.c          if (IS_NOT_NULL(reg->int_map_backward)) size += sizeof(int) * ONIG_CHAR_TABLE_SIZE;
ONIG_CHAR_TABLE_SIZE 3677 regexec.c          *skip = (int* )xmalloc(sizeof(int) * ONIG_CHAR_TABLE_SIZE);
ONIG_CHAR_TABLE_SIZE 3682 regexec.c        for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++)