Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 49) sorted by path

12

/PHP-7.4/build/
H A Dlibtool.m45366 # preloaded symbol tables.
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic6989 0 string bvx1 lzfse compressed, uncompressed tables
6990 0 string bvx2 lzfse compressed, compressed tables
9149 # Locale data tables (MIPS and Alpha).
12751 # validate and display sfnt font data like number of tables
12753 # file 5.30 version assumes 00FFh as maximal number of tables
12755 # maximal 27 tables found like in Skia.ttf
12777 # search range = number of tables * 16 =< maximal number of tables * 16 = 27 * 16 = 432
12779 >>>4 ubeshort x \b, %d tables
12780 # minimal 9 tables found like in NISC18030.ttf
17574 # DB: Define Quantization tables
H A Dmagic私はガラスを食べられます6989 0 string bvx1 lzfse compressed, uncompressed tables
6990 0 string bvx2 lzfse compressed, compressed tables
9149 # Locale data tables (MIPS and Alpha).
12751 # validate and display sfnt font data like number of tables
12753 # file 5.30 version assumes 00FFh as maximal number of tables
12755 # maximal 27 tables found like in Skia.ttf
12777 # search range = number of tables * 16 =< maximal number of tables * 16 = 27 * 16 = 432
12779 >>>4 ubeshort x \b, %d tables
12780 # minimal 9 tables found like in NISC18030.ttf
17574 # DB: Define Quantization tables
/PHP-7.4/ext/hash/
H A Dhash_gost.c28 #define round(tables, k1, k2) \ argument
30 l ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \
31 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24]; \
33 r ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \
34 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24];
39 round(tables, key[0], key[1]) \
40 round(tables, key[2], key[3]) \
41 round(tables, key[4], key[5]) \
42 round(tables, key[6], key[7]) \
195 #define PASS(tables) \ argument
[all …]
H A Dhash_snefru.c67 t0 = tables[2*index+0]; in Snefru()
68 t1 = tables[2*index+1]; in Snefru()
H A Dphp_hash_gost.h30 const uint32_t (*tables)[4][256]; member
H A Dphp_hash_snefru_tables.h19 static const uint32_t tables[16][256]= { variable
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_change_user_get_lock.phpt39 …f any active transactions, closes and drops all temporary tables, and unlocks all locked tables. S…
H A Dmysqli_change_user_locks_temporary.phpt2 mysqli_change_user() - table locks, GET_LOCK(), temporary tables
65 // Temporary tables should be dropped
H A Dmysqli_character_set.phpt2 Fetching results from tables of different charsets.
H A Dmysqli_connect_attr.phpt15 if (!$res = mysqli_query($link, "select count(*) as count from information_schema.tables where tabl…
16 die("skip select from information_schema.tables for session_connect_attrs query failed");
H A Dmysqli_get_client_stats_off.phpt23 // connect and table inc connect to mysql and create tables
H A Dmysqli_get_connection_stats_off.phpt17 // connect and table inc connect to mysql and create tables
/PHP-7.4/ext/oci8/tests/
H A Drefcur_prefetch_1.phpt24 // Creates the necessary package and tables.
H A Drefcur_prefetch_2.phpt24 // Creates the necessary package and tables.
H A Drefcur_prefetch_3.phpt28 //Create tables here
H A Drefcur_prefetch_4.phpt24 // Creates the necessary package and tables.
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_compile.c1205 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_copy()
1242 memcpy(newtables, code->tables, TABLES_LENGTH); in pcre2_code_copy_with_tables()
1246 newcode->tables = newtables; in pcre2_code_copy_with_tables()
1273 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_free()
9647 const uint8_t *tables; /* Char tables base pointer */ in pcre2_compile() local
9749 tables = (ccontext->tables != NULL)? ccontext->tables : PRIV(default_tables); in pcre2_compile()
9751 cb.lcc = tables + lcc_offset; /* Individual */ in pcre2_compile()
9752 cb.fcc = tables + fcc_offset; /* character */ in pcre2_compile()
9753 cb.cbits = tables + cbits_offset; /* tables */ in pcre2_compile()
9754 cb.ctypes = tables + ctypes_offset; in pcre2_compile()
[all …]
H A Dpcre2_context.c326 const uint8_t *tables) in pcre2_set_character_tables() argument
328 ccontext->tables = tables; in pcre2_set_character_tables()
H A Dpcre2_dfa_match.c566 ctypes = mb->tables + ctypes_offset; in internal_dfa_match()
567 lcc = mb->tables + lcc_offset; in internal_dfa_match()
568 fcc = mb->tables + fcc_offset; in internal_dfa_match()
3422 mb->tables = re->tables; in pcre2_dfa_match()
3529 first_cu2 = TABLE_GET(first_cu, mb->tables + fcc_offset, first_cu); in pcre2_dfa_match()
3553 req_cu2 = TABLE_GET(req_cu, mb->tables + fcc_offset, req_cu); in pcre2_dfa_match()
H A Dpcre2_intmodedep.h569 const uint8_t *tables; member
620 const uint8_t *tables; /* The character tables */ member
901 const uint8_t *tables; /* Character tables */ member
H A Dpcre2_jit_compile.c13392 const sljit_u8 *tables = re->tables; in jit_compile() local
13412 SLJIT_ASSERT(tables); in jit_compile()
13435 common->fcc = tables + fcc_offset; in jit_compile()
13436 common->lcc = (sljit_sw)(tables + lcc_offset); in jit_compile()
13468 common->ctypes = (sljit_sw)(tables + ctypes_offset); in jit_compile()
H A Dpcre2_maketables.c154 pcre2_maketables_free(pcre2_general_context *gcontext, const uint8_t *tables) argument
157 gcontext->memctl.free((void *)tables, gcontext->memctl.memory_data);
159 free((void *)tables);
H A Dpcre2_match.c6653 mb->lcc = re->tables + lcc_offset; in pcre2_match()
6654 mb->fcc = re->tables + fcc_offset; in pcre2_match()
6655 mb->ctypes = re->tables + ctypes_offset; in pcre2_match()
H A Dpcre2_serialize.c81 const uint8_t *tables; in pcre2_serialize_encode() local
94 tables = NULL; in pcre2_serialize_encode()
101 if (tables == NULL) in pcre2_serialize_encode()
102 tables = re->tables; in pcre2_serialize_encode()
103 else if (tables != re->tables) in pcre2_serialize_encode()
124 memcpy(dst_bytes, tables, TABLES_LENGTH); in pcre2_serialize_encode()
172 uint8_t *tables; in pcre2_serialize_decode() local
193 if (tables == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_serialize_decode()
195 memcpy(tables, src_bytes, TABLES_LENGTH); in pcre2_serialize_decode()
219 memctl->free(tables, memctl->memory_data); in pcre2_serialize_decode()
[all …]

Completed in 249 milliseconds

12