Home
last modified time | relevance | path

Searched refs:st (Results 101 – 125 of 169) sorted by relevance

1234567

/PHP-7.4/
H A Drun-tests.php2797 $st = $steps / 2;
2799 for ($ofs1 = $idx1 + 1; $ofs1 < $cnt1 && $st-- > 0; $ofs1++) {
2800 $eq = @count_array_diff($ar1, $ar2, $is_reg, $w, $ofs1, $idx2, $cnt1, $cnt2, $st);
2808 $st = $steps;
2810 for ($ofs2 = $idx2 + 1; $ofs2 < $cnt2 && $st-- > 0; $ofs2++) {
2811 $eq = @count_array_diff($ar1, $ar2, $is_reg, $w, $idx1, $ofs2, $cnt1, $cnt2, $st);
/PHP-7.4/ext/gd/
H A Dgd.c1765 int e, st; in PHP_FUNCTION() local
1780 st = ST; in PHP_FUNCTION()
1781 if (st < 0) { in PHP_FUNCTION()
1782 st %= 360; in PHP_FUNCTION()
1785 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
3345 int e, st; in PHP_FUNCTION() local
3360 st = ST; in PHP_FUNCTION()
3361 if (st < 0) { in PHP_FUNCTION()
3362 st %= 360; in PHP_FUNCTION()
3365 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
/PHP-7.4/ext/zlib/tests/
H A Ddata.inc60 Thou marshall'st me the way that I was going;
/PHP-7.4/ext/fileinfo/libmagic/
H A Dfile.h155 zend_stat_t st; member
/PHP-7.4/ext/oci8/tests/
H A Ddbmsoutput.phpt62 $s = oci_parse($c, "begin dbms_output.get_line(:ln, :st); end;");
64 oci_bind_by_name($s, ":st", $st, -1, SQLT_INT);
66 while (($succ = oci_execute($s)) && !$st) {
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c1064 struct stat st; in init_request_info() local
1117 if (stat(pt, &st) == 0 && S_ISREG(st.st_mode)) { in init_request_info()
/PHP-7.4/ext/standard/tests/strings/
H A Dchunk_split_variation12.phpt143 string(597) "This is st"To check " in heredoc".I'm sure it'll \work!r to check"To check " in heredo…
H A Dstrstr.phpt16 var_dump( md5(strstr("te".chr(0)."st", chr(0))) );
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c914 SYSTEMTIME st; in zend_get_file_handle_timestamp_win() local
916 st.wYear = 1970; in zend_get_file_handle_timestamp_win()
917 st.wMonth = 1; in zend_get_file_handle_timestamp_win()
918 st.wDay = 1; in zend_get_file_handle_timestamp_win()
919 st.wHour = 0; in zend_get_file_handle_timestamp_win()
920 st.wMinute = 0; in zend_get_file_handle_timestamp_win()
921 st.wSecond = 0; in zend_get_file_handle_timestamp_win()
922 st.wMilliseconds = 0; in zend_get_file_handle_timestamp_win()
924 SystemTimeToFileTime (&st, &utc_base_ft); in zend_get_file_handle_timestamp_win()
/PHP-7.4/ext/sodium/
H A Dlibsodium.c3392 volatile size_t st; in PHP_FUNCTION() local
3424 st = 1U; in PHP_FUNCTION()
3429 k -= st; in PHP_FUNCTION()
3430 st = (size_t) (~(((( (((uint64_t) k) >> 48) | (((uint64_t) k) >> 32) | in PHP_FUNCTION()
3432 i += st; in PHP_FUNCTION()
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c1228 zend_stat_t st; local
1282 if (zend_stat(pt, &st) == 0 && S_ISREG(st.st_mode)) {
/PHP-7.4/ext/exif/
H A Dexif.c4422 zend_stat_t st; in exif_read_from_impl() local
4432 if (VCWD_STAT(stream->orig_path, &st) >= 0) { in exif_read_from_impl()
4434 if ((st.st_mode & S_IFMT) != S_IFREG) { in exif_read_from_impl()
4447 ImageInfo->FileDateTime = st.st_mtime; in exif_read_from_impl()
4448 ImageInfo->FileSize = st.st_size; in exif_read_from_impl()
/PHP-7.4/ext/zip/
H A Dphp_zip.c1484 zend_stat_t st; local
1487 if (VCWD_STAT(resolved_path, &st) == 0 && st.st_size == 0) {
/PHP-7.4/ext/spl/tests/
H A DSplFileObject_fputcsv_variation1.phpt11 1st element is delimiter, 2nd element is enclosure
H A DSplFileObject_fputcsv_variation11.phpt11 1st element is delimiter, 2nd element is enclosure
H A DSplFileObject_fputcsv_variation12.phpt12 1st element is delimiter, 2nd element is enclosure
H A DSplFileObject_fputcsv_variation5.phpt11 1st element is delimiter, 2nd element is enclosure
H A DSplFileObject_fputcsv_variation6.phpt14 1st element is delimiter, 2nd element is enclosure
H A DSplFileObject_fputcsv_variation7.phpt14 1st element is delimiter, 2nd element is enclosure
H A DSplFileObject_fputcsv_variation8.phpt14 1st element is delimiter, 2nd element is enclosure
/PHP-7.4/ext/standard/tests/file/
H A Dfgetcsv_variation18.phpt17 1st element is delimiter & 2nd element is csv fields
H A Dfputcsv_variation1.phpt15 1st element is delimiter, 2nd element is enclosure
H A Dfputcsv_variation5.phpt15 1st element is delimiter, 2nd element is enclosure
H A Dfputcsv_variation6.phpt18 1st element is delimiter, 2nd element is enclosure
/PHP-7.4/ext/soap/
H A Dphp_sdl.c1551 struct stat st; in get_sdl_from_cache() local
1558 if (fstat(f, &st) != 0) { in get_sdl_from_cache()
1562 buf = in = emalloc(st.st_size); in get_sdl_from_cache()
1563 if (read(f, in, st.st_size) != st.st_size) { in get_sdl_from_cache()

Completed in 150 milliseconds

1234567