Searched refs:probe (Results 1 – 6 of 6) sorted by relevance
/php-src/Zend/ |
H A D | zend_dtrace.d | 20 probe exception__caught(char *classname); 21 probe exception__thrown(char* classname); 22 probe request__startup(char* request_file, char* request_uri, char* request_method); 23 probe request__shutdown(char* request_file, char* request_uri, char* request_method); 24 probe compile__file__entry(char * compile_file, char *compile_file_translated); 25 probe compile__file__return(char *compile_file, char *compile_file_translated); 26 probe error(char *errormsg, char *request_file, int lineno); 27 probe execute__entry(char* request_file, int lineno); 28 probe execute__return(char* request_file, int lineno); 29 …probe function__entry(char* function_name, char* request_file, int lineno, char* classname, char* … [all …]
|
/php-src/ext/standard/tests/network/ |
H A D | udp6loop.phpt | 10 * cannot tell for sure if IPv6 works until we probe it at run time,
|
/php-src/ext/gd/libgd/ |
H A D | gd_gif_out.c | 569 probe: 578 goto probe;
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_auth_pam.phpt | 35 die(sprintf("SKIP MariaDB probe of GLOBAL VARIABLES failed [%d] %s\n",
|
/php-src/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_cjk.c | 44 unsigned short lo = tbl[2 * probe], hi = tbl[(2 * probe) + 1]; in mbfl_bisec_srch() 46 r = probe - 1; in mbfl_bisec_srch() 48 l = probe + 1; in mbfl_bisec_srch() 50 return probe; in mbfl_bisec_srch() 64 r = probe - 1; in mbfl_bisec_srch2() 66 l = probe + 1; in mbfl_bisec_srch2() 68 return probe; in mbfl_bisec_srch2() 80 if (w < tbl[probe][0]) { in mbfl_binary_search_paired_sorted_table() 81 r = probe; in mbfl_binary_search_paired_sorted_table() 83 l = probe + 1; in mbfl_binary_search_paired_sorted_table() [all …]
|
/php-src/ext/mbstring/ |
H A D | mbstring.c | 2481 unsigned int probe = (lo + hi) / 2; in character_width() local 2482 if (c < mbfl_eaw_table[probe].begin) { in character_width() 2483 hi = probe; in character_width() 2484 } else if (c > mbfl_eaw_table[probe].end) { in character_width() 2485 lo = probe + 1; in character_width()
|
Completed in 59 milliseconds