Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 44) sorted by relevance

12

/php-src/ext/pcre/pcre2lib/
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 …]
H A Dpcre2_maketables.c156 pcre2_maketables_free(pcre2_general_context *gcontext, const uint8_t *tables) argument
159 gcontext->memctl.free((void *)tables, gcontext->memctl.memory_data);
161 free((void *)tables);
H A Dpcre2_context.c327 const uint8_t *tables) in pcre2_set_character_tables() argument
329 ccontext->tables = tables; in pcre2_set_character_tables()
H A Dpcre2_substitute.c603 const uint8_t *ctypes = code->tables + ctypes_offset; in pcre2_substitute()
794 if (((code->tables + cbits_offset + in pcre2_substitute()
797 ch = (code->tables + fcc_offset)[ch]; in pcre2_substitute()
896 if (((code->tables + cbits_offset + in pcre2_substitute()
899 ch = (code->tables + fcc_offset)[ch]; in pcre2_substitute()
/php-src/ext/hash/
H A Dhash_gost.c26 #define round(tables, k1, k2) \ argument
28 l ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \
29 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24]; \
31 r ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \
32 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24];
37 round(tables, key[0], key[1]) \
38 round(tables, key[2], key[3]) \
39 round(tables, key[4], key[5]) \
40 round(tables, key[6], key[7]) \
193 #define PASS(tables) \ argument
[all …]
H A Dphp_hash_snefru_tables.h17 static const uint32_t tables[16][256]= { variable
H A Dphp_hash_gost.h28 const uint32_t (*tables)[4][256]; member
/php-src/ext/standard/tests/misc/
H A Dget_browser_basic.phpt41 ["tables"]=>
111 ["tables"]=>
183 ["tables"]=>
255 ["tables"]=>
323 ["tables"]=>
399 ["tables"]=>
471 ["tables"]=>
543 ["tables"]=>
615 ["tables"]=>
687 ["tables"]=>
[all …]
H A Dget_browser_variation1.phpt40 ["tables"]=>
120 ["tables"]=>
182 ["tables"]=>
254 ["tables"]=>
326 ["tables"]=>
392 ["tables"]=>
474 ["tables"]=>
550 ["tables"]=>
620 ["tables"]=>
684 ["tables"]=>
[all …]
H A Dbug69983.phpt29 [tables] => 1
H A Dbug77338.phpt41 ["tables"]=>
H A Dget_browser_variation2.phpt36 ["tables"]=>
H A Dget_browser_error.phpt49 ["tables"]=>
/php-src/ext/spl/tests/
H A DArrayObject_modify_shared_object_properties.phpt2 Modifications to ArrayObjects should not affect shared properties tables
/php-src/ext/dom/lexbor/patches/
H A DREADME.md17 … specific patch to patch utilities and data structure to be able to generate smaller lookup tables.
26 **Note** for this patch the utilities to generate the tables are also patched.
27 …xbor/utils/encoding`): `python3 single-byte.py` and `python3 multi-byte.py` to generate the tables.
H A D0001-Patch-utilities-and-data-structure-to-be-able-to-gen.patch5 smaller lookup tables
9 tables in size.
/php-src/ext/pcre/tests/
H A Dlocales.phpt11 // this tests if the cache is working correctly, as the char tables
/php-src/ext/mysqli/tests/
H A Dmysqli_connect_attr.phpt13 if (!$res = mysqli_query($link, "select count(*) as count from information_schema.tables where tabl…
14 die("skip select from information_schema.tables for session_connect_attrs query failed");
H A Dmysqli_get_client_stats_off.phpt20 // connect and table inc connect to mysql and create tables
H A DREADME.md8 The test suite will create the necessary tables for testing, and then delete them when testing is c…
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_get_connection_stats_off.phpt14 // connect and table inc connect to mysql and create tables
H A Dmysqli_change_user_get_lock.phpt39 …f any active transactions, closes and drops all temporary tables, and unlocks all locked tables. S…
/php-src/ext/standard/tests/array/
H A Darray_search_variation2.phpt30 checking PHP type comparison tables
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_connect_attr.phpt13 $stmt = $pdo->query("SELECT COUNT(*) FROM information_schema.tables WHERE table_schema='performance…

Completed in 41 milliseconds

12