Home
last modified time | relevance | path

Searched refs:h (Results 101 – 125 of 613) sorted by relevance

12345678910>>...25

/PHP-8.1/ext/dba/tests/
H A Ddba_db4_handlers.phpt17 function check($h)
19 if (!$h) {
23 foreach ($h as $key) {
35 $h = dba_handlers(1);
36 foreach ($h as $key => $val) {
H A Ddba_handlers.phpt17 function check($h)
19 if (!$h) {
23 foreach ($h as $key) {
43 $h = dba_handlers(1);
44 foreach ($h as $key => $val) {
/PHP-8.1/ext/zlib/tests/
H A Dgzopen_basic.phpt16 $h = gzopen($filename, $mode, $use_include_path);
17 gzpassthru($h);
18 gzclose($h);
21 $h = gzopen($filename, $mode);
22 gzpassthru($h);
23 gzclose($h);
H A Dgzgets_basic.phpt12 $h = gzopen($f, 'r');
15 var_dump(gzgets( $h, $length ) );
18 while (gzeof($h) === false) {
19 var_dump(gzgets($h));
21 gzclose($h);
H A Dzlib_scheme_copy_variation2.phpt26 $h = gzopen($outputFileName, 'r');
27 $copied_data = gzread($h, 4096);
28 gzclose($h);
33 $h = fopen($outputFileName, 'r');
34 $magic = fread($h, 2);
35 fclose($h);
H A Dzlib_wrapper_fstat_basic.phpt8 $h = gzopen($f, "r");
9 var_dump(fstat($h));
10 fclose($h);
H A Dzlib_wrapper_flock_basic.phpt8 $h = gzopen($f,'r');
9 var_dump(flock($h, LOCK_SH));
10 gzclose($h);
/PHP-8.1/ext/fileinfo/libmagic/
H A Dreadcdf.c268 if (cdf_unpack_catalog(h, sst, &cat) == -1) in cdf_file_catalog()
370 cdf_dump_catalog(h, scn); in cdf_file_catalog_info()
372 if ((i = cdf_file_catalog(ms, h, scn)) == -1) in cdf_file_catalog_info()
390 cdf_dump_summary_info(h, scn); in cdf_check_summary_info()
538 cdf_header_t h; in file_trycdf() local
552 if (cdf_read_header(&info, &h) == -1) in file_trycdf()
555 cdf_dump_header(&h); in file_trycdf()
558 if ((i = cdf_read_sat(&info, &h, &sat)) == -1) { in file_trycdf()
563 cdf_dump_sat("SAT", &sat, CDF_SEC_SIZE(&h)); in file_trycdf()
585 cdf_dump_dir(&info, &h, &sat, &ssat, &sst, &dir); in file_trycdf()
[all …]
/PHP-8.1/ext/standard/tests/file/
H A Dpathinfo_basic2.phpt81 string(6) "inet.h"
82 string(1) "h"
88 string(6) "inet.h"
90 string(1) "h"
111 string(7) "inet..h"
112 string(1) "h"
120 string(1) "h"
156 string(6) "inet,h"
158 string(6) "inet,h"
163 string(6) "inet,h"
[all …]
H A Ddirectory_wrapper_fstat_basic.phpt6 $h = opendir($d);
7 var_dump(fstat($h));
8 closedir($h);
H A Dfopen_variation14.phpt47 $h = fopen($absFile, 'w');
48 fwrite($h, $readData);
49 fclose($h);
51 $h = fopen($fileURI, 'r');
52 if ($h !== false) {
59 fclose($h);
65 $h = fopen($fileURI, 'w');
66 if ($h !== false) {
68 fclose($h);
71 if ($h !== false) {
[all …]
H A Dfopen_variation15.phpt51 $h = fopen($absFile, 'w');
52 fwrite($h, $readData);
53 fclose($h);
56 if ($h !== false) {
63 fclose($h);
70 if ($h !== false) {
71 fwrite($h, $writeData);
72 fclose($h);
74 $h = fopen($absFile, 'r');
75 if ($h !== false) {
[all …]
/PHP-8.1/ext/hash/
H A Dhash_gost.c34 #define R(tables, key, h, i, t, l, r) \ argument
35 r = h[i]; \
36 l = h[i + 1]; \
152 #define SHIFT16(h, v, u) \ argument
153 v[0] = h[0] ^ (u[1] << 16) ^ (u[0] >> 16); \
154 v[1] = h[1] ^ (u[2] << 16) ^ (u[1] >> 16); \
155 v[2] = h[2] ^ (u[3] << 16) ^ (u[2] >> 16); \
163 #define SHIFT61(h, v) \ argument
196 R((tables), key, h, i, t, l, r); \
218 SHIFT16(h, v, u); in Gost()
[all …]
/PHP-8.1/Zend/
H A Dzend_hash.c705 if ((p->h == h) in zend_hash_str_find_bucket()
1094 p->h = h; in _zend_hash_index_add_or_update_i()
1424 (p->h == h && in zend_hash_del()
1454 (p->h == h && in zend_hash_del_ind()
2046 q->h = p->h; in zend_array_dup_element()
2504 h = p->h; in zend_hash_bucket_swap()
2508 p->h = q->h; in zend_hash_bucket_swap()
2512 q->h = h; in zend_hash_bucket_swap()
2531 h = p->h; in zend_hash_bucket_packed_swap()
2534 p->h = q->h; in zend_hash_bucket_packed_swap()
[all …]
/PHP-8.1/ext/tidy/
H A Dconfig.m416 if test -f $i/include/$j/$j.h; then
21 elif test -f $i/include/$j.h; then
33 dnl Check for tidybuffio.h (as opposed to simply buffio.h) which indicates
36 if test -f "$TIDY_INCDIR/tidybuffio.h"; then
37 AC_DEFINE(HAVE_TIDYBUFFIO_H,1,[defined if tidybuffio.h exists])
43 AC_DEFINE(HAVE_TIDYP_H,1,[defined if tidyp.h exists])
45 AC_DEFINE(HAVE_TIDY_H,1,[defined if tidy.h exists])
H A Dconfig.w3210 CHECK_HEADER_ADD_INCLUDE("tidy.h", "CFLAGS_TIDY") ||
11 CHECK_HEADER_ADD_INCLUDE("tidy/tidy.h", "CFLAGS_TIDY", null, null, true) ||
12 CHECK_HEADER_ADD_INCLUDE("libtidy/tidy.h", "CFLAGS_TIDY", null, null, true)
15 if (CHECK_HEADER_ADD_INCLUDE("tidybuffio.h", "CFLAGS_TIDY")) {
16 AC_DEFINE('HAVE_TIDYBUFFIO_H', 1, 'Have tidybuffio.h header file');
/PHP-8.1/sapi/fpm/
H A Dconfig.m4106 #include <sys/types.h>
118 #include <unistd.h>
119 #include <signal.h>
123 #include <errno.h>
240 #include <fcntl.h>
241 #include <stdio.h>
369 #include <sys/time.h>
389 #include <port.h>
410 #include <stdio.h>
471 #include <sys/time.h>
[all …]
/PHP-8.1/
H A D.gitignore66 confdefs.h
92 config.h
93 config.h.in
95 /main/build-defs.h
96 /main/php_config.h.in
97 /main/php_config.h
98 /Zend/zend_config.h
160 /Zend/zend_ini_parser.h
206 /main/config.w32.h
214 /win32/wsyslog.h
[all …]
/PHP-8.1/ext/json/
H A DMakefile.frag.w321 …on\json_scanner.c ext\json\php_json_scanner_defs.h: ext\json\json_scanner.re ext\json\json_parser.…
2 …$(RE2C) $(RE2C_FLAGS) -t ext/json/php_json_scanner_defs.h --no-generation-date -bci -o ext/json/js…
4 ext\json\json_parser.tab.c ext\json\json_parser.tab.h: ext\json\json_parser.y
/PHP-8.1/ext/pcre/tests/
H A Dbug79257.phpt18 preg_match('/(?J)(?:(?<g>foo)|(?<g>bar))(?<h>baz)/', 'foobaz', $matches);
20 preg_match('/(?J)(?:(?<g>foo)|(?<g>bar))(?<h>baz)/', 'foobaz', $matches,
23 preg_match('/(?J)(?:(?<g>foo)|(?<g>bar))(?<h>baz)/', 'foobaz', $matches,
26 preg_match('/(?J)(?:(?<g>foo)|(?<g>bar))(?<h>baz)/', 'foobaz', $matches,
112 ["h"]=>
126 ["h"]=>
160 ["h"]=>
204 ["h"]=>
H A Dbug27103.phpt25 h: 1
29 h: 1
35 h: 1
39 h: 1
/PHP-8.1/ext/gd/libgd/
H A Dgd2time.c17 int x, y, w, h; in main() local
32 h = atoi (argv[6]); in main()
34 printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h); in main()
46 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdparttopng.c15 int x, y, w, h; in main() local
32 h = atoi (argv[6]); in main()
34 printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h); in main()
36 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
/PHP-8.1/Zend/tests/
H A Ddereference_012.phpt29 $h = $foo->b();
30 var_dump($h);
32 $h[0] = 3;
33 var_dump($h);
/PHP-8.1/ext/opcache/
H A Dconfig.m4115 #include <sys/ipc.h>
116 #include <sys/shm.h>
117 #include <unistd.h>
118 #include <string.h>
187 #include <unistd.h>
188 #include <string.h>
251 #include <fcntl.h>
252 #include <unistd.h>
253 #include <string.h>
254 #include <stdlib.h>
[all …]

Completed in 34 milliseconds

12345678910>>...25