/PHP-5.3/ext/pcre/pcrelib/ |
H A D | dftables.c | 65 const unsigned char *tables; in main() local 84 tables = pcre_maketables(); in main() 85 base_of_tables = tables; in main() 137 fprintf(f, "%3d", *tables++); in main() 148 fprintf(f, "%3d", *tables++); in main() 168 fprintf(f, "0x%02x", *tables++); in main() 196 fprintf(f, "0x%02x", *tables++); in main()
|
H A D | pcre_study.c | 1344 const pcre_uint8 *tables; in pcre_study() local 1389 tables = re->tables; in pcre_study() 1392 if (tables == NULL) in pcre_study() 1394 (void *)(&tables)); in pcre_study() 1396 if (tables == NULL) in pcre_study() 1398 (void *)(&tables)); in pcre_study() 1400 if (tables == NULL) in pcre_study() 1402 (void *)(&tables)); in pcre_study() 1405 compile_block.lcc = tables + lcc_offset; in pcre_study() 1406 compile_block.fcc = tables + fcc_offset; in pcre_study() [all …]
|
H A D | README | 31 Character tables 308 tables for ASCII encoding that is part of the distribution. If you specify 547 character tables (the pcre_chartables.c file). This will probably not work, 552 by making a copy of pcre_chartables.c.dist, which is a default set of tables 556 If you need to modify the character tables when cross-compiling, you should 672 set of character tables for a specific locale and using them instead of the 673 default tables. The tests make use of the "fr_FR" (French) locale. Before 723 Character tables 726 For speed, PCRE uses four tables for manipulating and identifying characters 745 tables. [all …]
|
H A D | pcre.h | 366 const unsigned char *tables; /* Pointer to character tables */ member 379 const unsigned char *tables; /* Pointer to character tables */ member 392 const unsigned char *tables; /* Pointer to character tables */ member
|
H A D | NEWS | 65 . The Unicode tables have been updated to 6.1.0. 114 The Unicode tables have been updated. The only new feature in the library is 311 the character tables as previously, add --enable-rebuild-chartables to the 330 1. The Unicode property tables have been updated to Unicode 5.0.0, which adds 367 2. The Unicode property tables have been updated to Unicode 4.1.0, and the 430 tables at exec time. This is useful if compiled regex are saved and re-used 431 at a later time when the tables may not be at the same address. If the 432 default internal tables are used, the pointer saved with the compiled 434 special unless you are using custom tables. 593 possible to pass over a pointer to character tables built in the current [all …]
|
/PHP-5.3/ext/mysql/tests/ |
H A D | mysql_list_tables.phpt | 38 $tables_def = $tables = $tables_query = array(); 45 $tables[] = $row; 52 if ($tables_def !== $tables) { 55 var_dump($tables); 59 foreach ($tables as $k => $tlist)
|
H A D | mysql_field_flags.phpt | 50 $tables = array( 90 $tables['label1 TIMESTAMP']['label1'][] = 'zerofill'; 91 $tables['label1 TIMESTAMP']['label1'][] = 'unsigned'; 95 foreach ($tables as $columns => $expected) {
|
/PHP-5.3/ext/standard/tests/misc/ |
H A D | get_browser_variation1.phpt | 60 ["tables"]=> 140 ["tables"]=> 202 ["tables"]=> 274 ["tables"]=> 346 ["tables"]=> 412 ["tables"]=> 494 ["tables"]=> 570 ["tables"]=> 640 ["tables"]=> 704 ["tables"]=> [all …]
|
H A D | get_browser_basic.phpt | 61 ["tables"]=> 131 ["tables"]=> 203 ["tables"]=> 275 ["tables"]=> 343 ["tables"]=> 419 ["tables"]=> 491 ["tables"]=> 563 ["tables"]=> 635 ["tables"]=> 707 ["tables"]=> [all …]
|
/PHP-5.3/ext/hash/ |
H A D | php_hash_gost_tables.h | 1 static const php_hash_uint32 tables[4][256] = { variable
|
H A D | php_hash_snefru_tables.h | 21 static const php_hash_uint32 tables[16][256]= { variable
|
H A D | hash_gost.c | 32 l ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \ 33 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24]; \ 35 r ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \ 36 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24];
|
H A D | hash_snefru.c | 69 t0 = tables[2*index+0]; in Snefru() 70 t1 = tables[2*index+1]; in Snefru()
|
/PHP-5.3/ext/pcre/tests/ |
H A D | locales.phpt | 13 // this tests if the cache is working correctly, as the char tables
|
/PHP-5.3/ext/mysqli/tests/ |
H A D | mysqli_get_client_stats_off.phpt | 23 // connect and table inc connect to mysql and create tables
|
H A D | mysqli_change_user_locks_temporary.phpt | 2 mysqli_change_user() - table locks, GET_LOCK(), temporary tables 65 // Temporary tables should be dropped
|
H A D | mysqli_get_connection_stats_off.phpt | 17 // connect and table inc connect to mysql and create tables
|
H A D | mysqli_change_user_get_lock.phpt | 39 …f any active transactions, closes and drops all temporary tables, and unlocks all locked tables. S…
|
H A D | mysqli_class_mysqli_interface.phpt | 302 …tables: %d Open tables: %d Queries per second avg: %d.%d'/string ('Uptime: %d Threads: %d Ques…
|
/PHP-5.3/ext/pcre/ |
H A D | php_pcre.h | 49 unsigned const char *tables; member
|
H A D | php_pcre.c | 96 if ((void*)pce->tables) pefree((void*)pce->tables, 1); in php_free_pcre_cache() 245 unsigned const char *tables = NULL; in pcre_get_compiled_regex_cache() local 386 tables = pcre_maketables(); in pcre_get_compiled_regex_cache() 394 tables); in pcre_get_compiled_regex_cache() 399 if (tables) { in pcre_get_compiled_regex_cache() 400 pefree((void*)tables, 1); in pcre_get_compiled_regex_cache() 438 new_entry.tables = tables; in pcre_get_compiled_regex_cache()
|
/PHP-5.3/ext/standard/tests/strings/ |
H A D | strtr_error.phpt | 6 * Description: Translates characters in str using given translation tables
|
H A D | strtr_variation4.phpt | 7 * Description: Translates characters in str using given translation tables
|
H A D | strtr_variation1.phpt | 7 * Description: Translates characters in str using given translation tables
|
/PHP-5.3/ext/pdo/tests/ |
H A D | pdo_test.inc | 42 // clean up any crufty test tables we might have left behind
|