/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_serialize.c | 81 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 D | pcre2_maketables.c | 154 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 D | pcre2_context.c | 326 const uint8_t *tables) in pcre2_set_character_tables() argument 328 ccontext->tables = tables; in pcre2_set_character_tables()
|
H A D | pcre2_substitute.c | 581 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-8.0/ext/hash/ |
H A D | hash_gost.c | 26 #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 D | php_hash_snefru_tables.h | 17 static const uint32_t tables[16][256]= { variable
|
H A D | php_hash_gost.h | 28 const uint32_t (*tables)[4][256]; member
|
H A D | hash_snefru.c | 65 t0 = tables[2*index+0]; in Snefru() 66 t1 = tables[2*index+1]; in Snefru()
|
/PHP-8.0/ext/standard/tests/misc/ |
H A D | get_browser_basic.phpt | 41 ["tables"]=> 111 ["tables"]=> 183 ["tables"]=> 255 ["tables"]=> 323 ["tables"]=> 399 ["tables"]=> 471 ["tables"]=> 543 ["tables"]=> 615 ["tables"]=> 687 ["tables"]=> [all …]
|
H A D | get_browser_variation1.phpt | 40 ["tables"]=> 120 ["tables"]=> 182 ["tables"]=> 254 ["tables"]=> 326 ["tables"]=> 392 ["tables"]=> 474 ["tables"]=> 550 ["tables"]=> 620 ["tables"]=> 684 ["tables"]=> [all …]
|
H A D | bug69983.phpt | 29 [tables] => 1
|
H A D | bug77338.phpt | 41 ["tables"]=>
|
H A D | get_browser_variation2.phpt | 36 ["tables"]=>
|
H A D | get_browser_error.phpt | 49 ["tables"]=>
|
/PHP-8.0/ext/spl/tests/ |
H A D | ArrayObject_modify_shared_object_properties.phpt | 2 Modifications to ArrayObjects should not affect shared properties tables
|
/PHP-8.0/ext/pdo/tests/ |
H A D | pdo_test.inc | 40 // Ignore errors about non-existent tables 43 // clean up any crufty test tables we might have left behind
|
/PHP-8.0/ext/pcre/tests/ |
H A D | locales.phpt | 12 // this tests if the cache is working correctly, as the char tables
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_connect_attr.phpt | 15 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 D | mysqli_get_client_stats_off.phpt | 22 // connect and table inc connect to mysql and create tables
|
H A D | README.md | 8 The test suite will create the necessary tables for testing, and then delete them when testing is c…
|
H A D | mysqli_change_user_locks_temporary.phpt | 2 mysqli_change_user() - table locks, GET_LOCK(), temporary tables 64 // Temporary tables should be dropped
|
H A D | mysqli_get_connection_stats_off.phpt | 16 // connect and table inc connect to mysql and create tables
|
H A D | mysqli_change_user_get_lock.phpt | 38 …f any active transactions, closes and drops all temporary tables, and unlocks all locked tables. S…
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_search_variation2.phpt | 30 checking PHP type comparison tables
|
/PHP-8.0/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_connect_attr.phpt | 12 $stmt = $pdo->query("select count(*) from information_schema.tables where table_schema='performance…
|