Home
last modified time | relevance | path

Searched refs:us (Results 1 – 25 of 85) sorted by relevance

1234

/PHP-8.4/main/streams/
H A Duserspace.c322 us = emalloc(sizeof(*us)); in user_wrapper_opener()
323 us->wrapper = uwrap; in user_wrapper_opener()
331 efree(us); in user_wrapper_opener()
371 efree(us); in user_wrapper_opener()
411 us = emalloc(sizeof(*us)); in user_wrapper_opendir()
419 efree(us); in user_wrapper_opendir()
447 efree(us); in user_wrapper_opendir()
572 assert(us != NULL); in php_userstreamop_write()
621 assert(us != NULL); in php_userstreamop_read()
708 efree(us); in php_userstreamop_close()
[all …]
/PHP-8.4/ext/json/
H A Djson_encoder.c373 unsigned int us; in php_json_escape_string() local
411 us = (unsigned char)s[pos]; in php_json_escape_string()
425 us = (unsigned char)s[0]; in php_json_escape_string()
455 || us < 0x2028 || us > 0x2029)) { in php_json_escape_string()
459 if (us >= 0x10000) { in php_json_escape_string()
462 us -= 0x10000; in php_json_escape_string()
464 us = (unsigned short)((us >> 10) | 0xd800); in php_json_escape_string()
472 us = next_us; in php_json_escape_string()
480 dst[5] = digits[us & 0xf]; in php_json_escape_string()
487 switch (us) { in php_json_escape_string()
[all …]
/PHP-8.4/ext/date/lib/
H A Dinterval.c55 …ne)->h == (*two)->h && (*one)->i == (*two)->i && (*one)->s == (*two)->s && (*one)->us > (*two)->us) in sort_old_to_new()
65 ((*one)->sse == (*two)->sse && (*one)->us > (*two)->us) in sort_old_to_new()
94 rt->us = two->us - one->us; in timelib_diff_with_tzid()
171 rt->us = two->us - one->us; in timelib_diff()
229 t->relative.us = interval->us * bias; in timelib_add()
258 t->relative.us = 0 - (interval->us * bias); in timelib_sub()
311 if (interval->us == 0) { in timelib_add_wall()
317 do_range_limit(0, 1000000, 1000000, &temp_interval->us, &temp_interval->s); in timelib_add_wall()
320 t->us += temp_interval->us * bias; in timelib_add_wall()
364 if (interval->us == 0) { in timelib_sub_wall()
[all …]
H A Dtimelib.c78 if (t1->us == t2->us) { in timelib_time_compare()
82 return (t1->us < t2->us) ? -1 : 1; in timelib_time_compare()
218 void timelib_hmsf_to_decimal_hour(int hour, int min, int sec, int us, double *h) in timelib_hmsf_to_decimal_hour() argument
221 …*h = ((double)hour + (double)min / MINS_PER_HOUR + (double)sec / SECS_PER_HOUR) + (double)us / USE… in timelib_hmsf_to_decimal_hour()
223 …*h = ((double)hour - (double)min / MINS_PER_HOUR - (double)sec / SECS_PER_HOUR) - (double)us / USE… in timelib_hmsf_to_decimal_hour()
312 if (d->us > 0) { in timelib_dump_date()
313 printf(" 0.%06lld", d->us); in timelib_dump_date()
342 if (d->relative.us) { in timelib_dump_date()
343 printf(" 0.%06lld", d->relative.us); in timelib_dump_date()
/PHP-8.4/ext/intl/tests/
H A Dlocale_accept.phpt17 'en-us,en;q=0.5',
19 'zh, en-us;q=0.8, en;q=0.7',
37 Accepting en-us,en;q=0.5: en_US
39 Accepting zh, en-us;q=0.8, en;q=0.7: zh
/PHP-8.4/sapi/fpm/tests/
H A Dbug74083-concurrent-reload.phpt52 echo "Reached interval $interval us with $step us steps\n";
65 Reached interval 25000 us with 1000 us steps
H A Dbug76601-reload-child-signals.phpt63 echo "Reached interval $interval us with $step us steps\n";
78 Reached interval 25000 us with 1000 us steps
/PHP-8.4/ext/dom/tests/modern/css_selectors/
H A Dattribute.phpt12 <a title="http://example.com" lang="en-us"/>
56 <a title="http://example.com" lang="en-us"/>
61 <a title="http://example.com" lang="en-us"/>
64 <a title="http://example.com" lang="en-us"/>
71 <a title="http://example.com" lang="en-us"/>
76 <a title="http://example.com" lang="en-us"/>
90 <a title="http://example.com" lang="en-us"/>
95 <a title="http://example.com" lang="en-us"/>
98 <a title="http://example.com" lang="en-us"/>
103 <a title="http://example.com" lang="en-us"/>
[all …]
/PHP-8.4/ext/date/tests/
H A Dbug81273.phpt10 $us = new DateTime($time, $tz_us);
12 $diff = $auz->diff($us);
H A D009_win32.phpt6 if (false === setlocale(LC_TIME, "en-us")) die("skip, couldn't set the locale to en-us");
13 setlocale(LC_TIME, "en-us");
/PHP-8.4/Zend/tests/readonly_props/
H A Dvariation.phpt38 public function us() {
72 function us($test) {
84 foreach (['r', 'w', 'rw', 'im', 'is', 'us', 'us_dim'] as $op) {
112 Init: 1, scope: 1, op: us: Cannot unset readonly property Test::$prop
119 Init: 1, scope: 0, op: us: Cannot unset readonly property Test::$prop
126 Init: 0, scope: 1, op: us: done
133 Init: 0, scope: 0, op: us: Cannot unset protected(set) readonly property Test::$prop from global sc…
H A Dvariation_nested.phpt42 function us($test) {
53 foreach (['r', 'w', 'rw', 'im', 'is', 'us', 'us_dim'] as $op) {
76 Init: 1, op: us: done
83 Init: 0, op: us: done
/PHP-8.4/Zend/tests/asymmetric_visibility/
H A Dvariation.phpt38 public function us() {
72 function us($test) {
84 foreach (['r', 'w', 'rw', 'im', 'is', 'us', 'us_dim'] as $op) {
112 Init: 1, scope: 1, op: us: done
119 Init: 1, scope: 0, op: us: Cannot unset private(set) property Test::$prop from global scope
126 Init: 0, scope: 1, op: us: done
133 Init: 0, scope: 0, op: us: Cannot unset private(set) property Test::$prop from global scope
H A Dvariation_nested.phpt42 function us($test) {
53 foreach (['r', 'w', 'rw', 'im', 'is', 'us', 'us_dim'] as $op) {
76 Init: 1, op: us: done
83 Init: 0, op: us: done
/PHP-8.4/ext/fileinfo/tests/
H A Dbug57547.phpt22 string(28) "text/x-php; charset=us-ascii"
23 string(28) "text/x-php; charset=us-ascii"
H A Dfinfo_file_basic.phpt25 string(28) "text/x-php; charset=us-ascii"
27 string(29) "text/x-file; charset=us-ascii"
H A Dfinfo_buffer_variation1.phpt41 string(28) "text/plain; charset=us-ascii"
44 string(28) "text/plain; charset=us-ascii"
H A Dfinfo_buffer_basic-mb.phpt42 string(28) "text/plain; charset=us-ascii"
45 string(28) "text/plain; charset=us-ascii"
H A Dfinfo_buffer_basic.phpt42 string(28) "text/plain; charset=us-ascii"
45 string(28) "text/plain; charset=us-ascii"
H A Dfinfo_buffer_variation1-mb.phpt41 string(28) "text/plain; charset=us-ascii"
44 string(28) "text/plain; charset=us-ascii"
/PHP-8.4/ext/openssl/tests/
H A Dsni_server.phpt17 "us.php.net" => __DIR__ . "/sni_server_us.pem"
50 $ctxArr['peer_name'] = 'us.php.net';
63 string(%d) "us.php.net"
H A Dsni_server_key_cert.phpt23 "us.php.net" => [
59 $ctxArr['peer_name'] = 'us.php.net';
72 string(%d) "us.php.net"
/PHP-8.4/ext/iconv/tests/
H A Dbug63839.phpt17 Content-Language: en-us
44 string(5) "en-us"
66 string(5) "en-us"
/PHP-8.4/ext/zlib/tests/
H A Ddata.inc15 Must give us pause. There's the respect
28 And makes us rather bear those ills we have
30 Thus conscience does make cowards of us all,
42 as a Christian is? If you prick us, do we not bleed? If you
43 tickle us, do we not laugh? If you poison us, do we not die?
44 And if you wrong us, shall we not revenge? If we are like you
/PHP-8.4/ext/standard/tests/strings/
H A Dtrim1.phpt35 us
40 var_dump( trim($str, "us\ning") );

Completed in 48 milliseconds

1234