Home
last modified time | relevance | path

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

12

/PHP-7.4/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.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_context.c326 const uint8_t *tables) in pcre2_set_character_tables() argument
328 ccontext->tables = tables; in pcre2_set_character_tables()
H A Dpcre2_substitute.c581 const uint8_t *ctypes = code->tables + ctypes_offset; in pcre2_substitute()
772 if (((code->tables + cbits_offset + in pcre2_substitute()
775 ch = (code->tables + fcc_offset)[ch]; in pcre2_substitute()
874 if (((code->tables + cbits_offset + in pcre2_substitute()
877 ch = (code->tables + fcc_offset)[ch]; in pcre2_substitute()
/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 Dphp_hash_snefru_tables.h19 static const uint32_t tables[16][256]= { variable
H A Dphp_hash_gost.h30 const uint32_t (*tables)[4][256]; member
H A Dhash_snefru.c67 t0 = tables[2*index+0]; in Snefru()
68 t1 = tables[2*index+1]; in Snefru()
/PHP-7.4/ext/standard/tests/misc/
H A Dget_browser_variation1.phpt50 ["tables"]=>
130 ["tables"]=>
192 ["tables"]=>
264 ["tables"]=>
336 ["tables"]=>
402 ["tables"]=>
484 ["tables"]=>
560 ["tables"]=>
630 ["tables"]=>
694 ["tables"]=>
[all …]
H A Dget_browser_basic.phpt51 ["tables"]=>
121 ["tables"]=>
193 ["tables"]=>
265 ["tables"]=>
333 ["tables"]=>
409 ["tables"]=>
481 ["tables"]=>
553 ["tables"]=>
625 ["tables"]=>
697 ["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.phpt62 ["tables"]=>
/PHP-7.4/ext/spl/tests/
H A DArrayObject_modify_shared_object_properties.phpt2 Modifications to ArrayObjects should not affect shared properties tables
/PHP-7.4/ext/pcre/tests/
H A Dlocales.phpt12 // this tests if the cache is working correctly, as the char tables
/PHP-7.4/ext/mysqli/tests/
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_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.phpt17 // 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-7.4/ext/standard/tests/strings/
H A Dstrtr_variation4.phpt7 * Description: Translates characters in str using given translation tables
H A Dstrtr_variation1.phpt7 * Description: Translates characters in str using given translation tables
H A Dstrtr_variation2.phpt7 * Description: Translates characters in str using given translation tables
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_connect_attr.phpt12 $stmt = $pdo->query("select count(*) from information_schema.tables where table_schema='performance…

Completed in 53 milliseconds

12