tables 30 ext/hash/hash_gost.c #define round(tables, k1, k2) \ tables 32 ext/hash/hash_gost.c l ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \ tables 33 ext/hash/hash_gost.c tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24]; \ tables 35 ext/hash/hash_gost.c r ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \ tables 36 ext/hash/hash_gost.c tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24]; tables 38 ext/hash/hash_gost.c #define R(tables, key, h, i, t, l, r) \ tables 41 ext/hash/hash_gost.c round(tables, key[0], key[1]) \ tables 42 ext/hash/hash_gost.c round(tables, key[2], key[3]) \ tables 43 ext/hash/hash_gost.c round(tables, key[4], key[5]) \ tables 44 ext/hash/hash_gost.c round(tables, key[6], key[7]) \ tables 45 ext/hash/hash_gost.c round(tables, key[0], key[1]) \ tables 46 ext/hash/hash_gost.c round(tables, key[2], key[3]) \ tables 47 ext/hash/hash_gost.c round(tables, key[4], key[5]) \ tables 48 ext/hash/hash_gost.c round(tables, key[6], key[7]) \ tables 49 ext/hash/hash_gost.c round(tables, key[0], key[1]) \ tables 50 ext/hash/hash_gost.c round(tables, key[2], key[3]) \ tables 51 ext/hash/hash_gost.c round(tables, key[4], key[5]) \ tables 52 ext/hash/hash_gost.c round(tables, key[6], key[7]) \ tables 53 ext/hash/hash_gost.c round(tables, key[7], key[6]) \ tables 54 ext/hash/hash_gost.c round(tables, key[5], key[4]) \ tables 55 ext/hash/hash_gost.c round(tables, key[3], key[2]) \ tables 56 ext/hash/hash_gost.c round(tables, key[1], key[0]) \ tables 197 ext/hash/hash_gost.c #define PASS(tables) \ tables 200 ext/hash/hash_gost.c R((tables), key, h, i, t, l, r); \ tables 219 ext/hash/hash_gost.c PASS(*context->tables); tables 246 ext/hash/hash_gost.c context->tables = &tables_test; tables 252 ext/hash/hash_gost.c context->tables = &tables_crypto; tables 69 ext/hash/hash_snefru.c t0 = tables[2*index+0]; tables 70 ext/hash/hash_snefru.c t1 = tables[2*index+1]; tables 32 ext/hash/php_hash_gost.h const php_hash_uint32 (*tables)[4][256]; tables 21 ext/hash/php_hash_snefru_tables.h static const php_hash_uint32 tables[16][256]= { tables 65 ext/pcre/pcrelib/dftables.c const unsigned char *tables; tables 84 ext/pcre/pcrelib/dftables.c tables = pcre_maketables(); tables 85 ext/pcre/pcrelib/dftables.c base_of_tables = tables; tables 137 ext/pcre/pcrelib/dftables.c fprintf(f, "%3d", *tables++); tables 148 ext/pcre/pcrelib/dftables.c fprintf(f, "%3d", *tables++); tables 168 ext/pcre/pcrelib/dftables.c fprintf(f, "0x%02x", *tables++); tables 196 ext/pcre/pcrelib/dftables.c fprintf(f, "0x%02x", *tables++); tables 381 ext/pcre/pcrelib/pcre.h const unsigned char *tables; /* Pointer to character tables */ tables 394 ext/pcre/pcrelib/pcre.h const unsigned char *tables; /* Pointer to character tables */ tables 407 ext/pcre/pcrelib/pcre.h const unsigned char *tables; /* Pointer to character tables */ tables 8961 ext/pcre/pcrelib/pcre_compile.c int *erroroffset, const unsigned char *tables) tables 8965 ext/pcre/pcrelib/pcre_compile.c int *erroroffset, const unsigned char *tables) tables 8969 ext/pcre/pcrelib/pcre_compile.c int *erroroffset, const unsigned char *tables) tables 8973 ext/pcre/pcrelib/pcre_compile.c return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables); tables 8975 ext/pcre/pcrelib/pcre_compile.c return pcre16_compile2(pattern, options, NULL, errorptr, erroroffset, tables); tables 8977 ext/pcre/pcrelib/pcre_compile.c return pcre32_compile2(pattern, options, NULL, errorptr, erroroffset, tables); tables 8985 ext/pcre/pcrelib/pcre_compile.c const char **errorptr, int *erroroffset, const unsigned char *tables) tables 8989 ext/pcre/pcrelib/pcre_compile.c const char **errorptr, int *erroroffset, const unsigned char *tables) tables 8993 ext/pcre/pcrelib/pcre_compile.c const char **errorptr, int *erroroffset, const unsigned char *tables) tables 9057 ext/pcre/pcrelib/pcre_compile.c if (tables == NULL) tables = PRIV(default_tables); tables 9058 ext/pcre/pcrelib/pcre_compile.c cd->lcc = tables + lcc_offset; tables 9059 ext/pcre/pcrelib/pcre_compile.c cd->fcc = tables + fcc_offset; tables 9060 ext/pcre/pcrelib/pcre_compile.c cd->cbits = tables + cbits_offset; tables 9061 ext/pcre/pcrelib/pcre_compile.c cd->ctypes = tables + ctypes_offset; tables 9369 ext/pcre/pcrelib/pcre_compile.c re->tables = (tables == PRIV(default_tables))? NULL : tables; tables 6377 ext/pcre/pcrelib/pcre_exec.c const pcre_uint8 *tables; tables 6510 ext/pcre/pcrelib/pcre_exec.c tables = re->tables; tables 6525 ext/pcre/pcrelib/pcre_exec.c if ((flags & PCRE_EXTRA_TABLES) != 0) tables = extra_data->tables; tables 6541 ext/pcre/pcrelib/pcre_exec.c if (tables == NULL) tables = PRIV(default_tables); tables 6578 ext/pcre/pcrelib/pcre_exec.c md->lcc = tables + lcc_offset; tables 6579 ext/pcre/pcrelib/pcre_exec.c md->fcc = tables + fcc_offset; tables 6580 ext/pcre/pcrelib/pcre_exec.c md->ctypes = tables + ctypes_offset; tables 2348 ext/pcre/pcrelib/pcre_internal.h const pcre_uint8 *tables; /* Pointer to tables or NULL for std */ tables 2372 ext/pcre/pcrelib/pcre_internal.h const pcre_uint8 *tables; /* Pointer to tables or NULL for std */ tables 2577 ext/pcre/pcrelib/pcre_internal.h const pcre_uint8 *tables; /* Character tables */ tables 9798 ext/pcre/pcrelib/pcre_jit_compile.c const pcre_uint8 *tables = re->tables; tables 9821 ext/pcre/pcrelib/pcre_jit_compile.c if (!tables) tables 9822 ext/pcre/pcrelib/pcre_jit_compile.c tables = PRIV(default_tables); tables 9830 ext/pcre/pcrelib/pcre_jit_compile.c common->fcc = tables + fcc_offset; tables 9831 ext/pcre/pcrelib/pcre_jit_compile.c common->lcc = (sljit_sw)(tables + lcc_offset); tables 9871 ext/pcre/pcrelib/pcre_jit_compile.c common->ctypes = (sljit_sw)(tables + ctypes_offset); tables 1467 ext/pcre/pcrelib/pcre_study.c const pcre_uint8 *tables; tables 1513 ext/pcre/pcrelib/pcre_study.c tables = re->tables; tables 1516 ext/pcre/pcrelib/pcre_study.c if (tables == NULL) tables 1518 ext/pcre/pcrelib/pcre_study.c (void *)(&tables)); tables 1520 ext/pcre/pcrelib/pcre_study.c if (tables == NULL) tables 1522 ext/pcre/pcrelib/pcre_study.c (void *)(&tables)); tables 1524 ext/pcre/pcrelib/pcre_study.c if (tables == NULL) tables 1526 ext/pcre/pcrelib/pcre_study.c (void *)(&tables)); tables 1529 ext/pcre/pcrelib/pcre_study.c compile_block.lcc = tables + lcc_offset; tables 1530 ext/pcre/pcrelib/pcre_study.c compile_block.fcc = tables + fcc_offset; tables 1531 ext/pcre/pcrelib/pcre_study.c compile_block.cbits = tables + cbits_offset; tables 1532 ext/pcre/pcrelib/pcre_study.c compile_block.ctypes = tables + ctypes_offset; tables 101 ext/pcre/php_pcre.c if ((void*)pce->tables) pefree((void*)pce->tables, 1); tables 270 ext/pcre/php_pcre.c unsigned const char *tables = NULL; tables 420 ext/pcre/php_pcre.c tables = pcre_maketables(); tables 428 ext/pcre/php_pcre.c tables); tables 433 ext/pcre/php_pcre.c if (tables) { tables 434 ext/pcre/php_pcre.c pefree((void*)tables, 1); tables 472 ext/pcre/php_pcre.c new_entry.tables = tables; tables 49 ext/pcre/php_pcre.h unsigned const char *tables;