Home
last modified time | relevance | path

Searched refs:sec (Results 1 – 25 of 47) sorted by relevance

12

/PHP-8.0/ext/date/tests/
H A Dmktime_basic1.phpt12 $sec = 45;
19 var_dump( mktime($hour, $minute, $sec) );
20 var_dump( mktime($hour, $minute, $sec, $month) );
21 var_dump( mktime($hour, $minute, $sec, $month, $day) );
22 var_dump( mktime($hour, $minute, $sec, $month, $day, $year) );
H A Dgmmktime_variation9_64bits.phpt14 $sec = 8;
29 var_dump( gmmktime($value, $min, $sec, $mon, $day, $year) );
30 var_dump( gmmktime($hour, $value, $sec, $mon, $day, $year) );
32 var_dump( gmmktime($hour, $min, $sec, $value, $day, $year) );
33 var_dump( gmmktime($hour, $min, $sec, $mon, $value, $value) );
H A Dgmmktime_variation8.phpt10 $sec = 010;
16 var_dump( gmmktime($hour, $min, $sec, $mon, $day, $year) );
21 $sec = 0x8;
27 var_dump( gmmktime($hour, $min, $sec, $mon, $day, $year) );
H A Dgmmktime_variation9.phpt14 $sec = 8;
29 var_dump( gmmktime($value, $min, $sec, $mon, $day, $year) );
30 var_dump( gmmktime($hour, $value, $sec, $mon, $day, $year) );
32 var_dump( gmmktime($hour, $min, $sec, $value, $day, $year) );
33 var_dump( gmmktime($hour, $min, $sec, $mon, $value, $value) );
H A Dgmmktime_variation7.phpt10 $sec = 8;
21 var_dump( gmmktime($hour, $min, $sec) );
24 var_dump( gmmktime($hour, $min, $sec, $mon) );
27 var_dump( gmmktime($hour, $min, $sec, $mon, $day) );
H A Dgmmktime_basic.phpt10 $sec = 8;
16 var_dump( gmmktime($hour, $min, $sec, $mon, $day, $year) );
H A Dbug64887.phpt19 '+11 µsec',
22 '+8 msec -2 µsec',
H A Dgettimeofday_basic.phpt29 ["sec"]=>
39 ["sec"]=>
H A Dmktime_error.phpt20 $sec = 45;
26 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $extra_arg) );
H A Dbug35143.phpt13 ["sec"]=>
/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddasm_mips.h47 #define DASM_SEC2POS(sec) ((sec)<<24) argument
174 int pos = sec->pos, ofs = sec->ofs; in dasm_put()
177 if (pos >= sec->epos) { in dasm_put()
178 DASM_M_GROW(Dst, int, sec->buf, sec->bsize, in dasm_put()
180 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
184 b = sec->rbuf; in dasm_put()
252 sec->pos = pos; in dasm_put()
253 sec->ofs = ofs; in dasm_put()
286 int *b = sec->rbuf; in dasm_link()
333 int *b = sec->buf; in dasm_encode()
[all …]
H A Ddasm_ppc.h47 #define DASM_SEC2POS(sec) ((sec)<<24) argument
174 int pos = sec->pos, ofs = sec->ofs; in dasm_put()
177 if (pos >= sec->epos) { in dasm_put()
178 DASM_M_GROW(Dst, int, sec->buf, sec->bsize, in dasm_put()
180 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
184 b = sec->rbuf; in dasm_put()
256 sec->pos = pos; in dasm_put()
257 sec->ofs = ofs; in dasm_put()
290 int *b = sec->rbuf; in dasm_link()
337 int *b = sec->buf; in dasm_encode()
[all …]
H A Ddasm_arm.h48 #define DASM_SEC2POS(sec) ((sec)<<24) argument
183 int pos = sec->pos, ofs = sec->ofs; in dasm_put()
186 if (pos >= sec->epos) { in dasm_put()
187 DASM_M_GROW(Dst, int, sec->buf, sec->bsize, in dasm_put()
189 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
193 b = sec->rbuf; in dasm_put()
272 sec->pos = pos; in dasm_put()
273 sec->ofs = ofs; in dasm_put()
306 int *b = sec->rbuf; in dasm_link()
354 int *b = sec->buf; in dasm_encode()
[all …]
H A Ddasm_arm64.h48 #define DASM_SEC2POS(sec) ((sec)<<24) argument
223 int pos = sec->pos, ofs = sec->ofs; in dasm_put()
226 if (pos >= sec->epos) { in dasm_put()
227 DASM_M_GROW(Dst, int, sec->buf, sec->bsize, in dasm_put()
229 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
233 b = sec->rbuf; in dasm_put()
327 sec->pos = pos; in dasm_put()
328 sec->ofs = ofs; in dasm_put()
361 int *b = sec->rbuf; in dasm_link()
410 int *b = sec->buf; in dasm_encode()
[all …]
H A Ddasm_x86.h46 #define DASM_SEC2POS(sec) ((sec)<<24) argument
176 int pos = sec->pos, ofs = sec->ofs, mrm = -1; in dasm_put()
179 if (pos >= sec->epos) { in dasm_put()
180 DASM_M_GROW(Dst, int, sec->buf, sec->bsize, in dasm_put()
182 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
186 b = sec->rbuf; in dasm_put()
272 sec->pos = pos; in dasm_put()
273 sec->ofs = ofs; in dasm_put()
306 int *b = sec->rbuf; in dasm_link()
388 int *b = sec->buf; in dasm_encode()
[all …]
/PHP-8.0/ext/standard/
H A Duniqid.c45 int sec, usec; in PHP_FUNCTION() local
67 sec = (int) tv.tv_sec; in PHP_FUNCTION()
74 uniqid = strpprintf(0, "%s%08x%05x%.8F", prefix, sec, usec, php_combined_lcg() * 10); in PHP_FUNCTION()
76 uniqid = strpprintf(0, "%s%08x%05x", prefix, sec, usec); in PHP_FUNCTION()
/PHP-8.0/ext/sockets/tests/
H A Dsocket_set_option_rcvtimeo.phpt28 $options = array("sec" => 1, "usec" => 0);
37 socket_set_option(): Argument #4 ($value) must have key "sec"
H A Dsocket_set_option_sndtimeo.phpt28 $options = array("sec" => 1, "usec" => 0);
37 socket_set_option(): Argument #4 ($value) must have key "sec"
H A Dsocket_setopt_basic.phpt21 $options = array("sec" => 1, "usec" => 0);
/PHP-8.0/ext/date/lib/
H A Dtimelib.c186 void timelib_decimal_hour_to_hms(double h, int *hour, int *min, int *sec) in timelib_decimal_hour_to_hms() argument
191 *sec = (h - *hour - ((float) *min / 60)) * 3600; in timelib_decimal_hour_to_hms()
195 *sec = 0 - (h - *hour - ((float) *min / -60)) * 3600; in timelib_decimal_hour_to_hms()
199 void timelib_hms_to_decimal_hour(int hour, int min, int sec, double *h) in timelib_hms_to_decimal_hour() argument
202 *h = ((double)hour + (double)min / 60 + (double)sec / 3600); in timelib_hms_to_decimal_hour()
204 *h = ((double)hour - (double)min / 60 - (double)sec / 3600); in timelib_hms_to_decimal_hour()
H A Dtimelib.h892 void timelib_decimal_hour_to_hms(double h, int *hour, int *min, int *sec);
897 void timelib_hms_to_decimal_hour(int hour, int min, int sec, double *h);
/PHP-8.0/ext/fileinfo/libmagic/
H A Dcdf_time.c170 cdf_ctime(const time_t *sec, char *buf) in cdf_ctime() argument
172 char *ptr = php_ctime_r(sec, buf); in cdf_ctime()
176 CAST(long long, *sec)); in cdf_ctime()
/PHP-8.0/ext/standard/tests/mail/
H A Dmail_skipif.inc9 socket_set_option($socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => 10, 'usec' => 10));
/PHP-8.0/ext/standard/tests/strings/
H A Dstrtok_variation3.phpt98 string(3) "sec"
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_process_ctl.c59 static int fpm_pctl_timeout_set(int sec) /* {{{ */ in fpm_pctl_timeout_set() argument
62 fpm_event_add(&pctl_event, sec * 1000); in fpm_pctl_timeout_set()

Completed in 54 milliseconds

12