Home
last modified time | relevance | path

Searched refs:h (Results 226 – 250 of 681) sorted by relevance

12345678910>>...28

/php-src/Zend/asm/
H A Djump_arm64_aapcs_pe_armasm.asm85 ldp x5, x6, [x18, #0x08] ; TeStackBase and TeStackLimit at ksarm64.h
88 ldr x5, [x18, #0x1478] ; TeDeallocationStack at ksarm64.h
89 ldr x6, [x18, #0x20] ; TeFiberData at ksarm64.h
100 stp x5, x6, [x18, #0x08] ; TeStackBase and TeStackLimit at ksarm64.h
103 str x5, [x18, #0x1478] ; TeDeallocationStack at ksarm64.h
104 str x6, [x18, #0x20] ; TeFiberData at ksarm64.h
/php-src/ext/fileinfo/libmagic/
H A Dcdf.h78 #define CDF_SEC_SIZE(h) CAST(size_t, 1 << (h)->h_sec_size_p2) argument
79 #define CDF_SEC_POS(h, secid) (CDF_SEC_SIZE(h) + (secid) * CDF_SEC_SIZE(h)) argument
80 #define CDF_SHORT_SEC_SIZE(h) CAST(size_t, 1 << (h)->h_short_sec_size_p2) argument
81 #define CDF_SHORT_SEC_POS(h, secid) ((secid) * CDF_SHORT_SEC_SIZE(h)) argument
/php-src/ext/standard/tests/file/
H A Dfopen_variation14-win32.phpt55 $h = fopen($absFile, 'w');
56 fwrite($h, $readData);
57 fclose($h);
59 $h = fopen($fileURI, 'r');
60 if ($h !== false) {
67 fclose($h);
73 $h = fopen($fileURI, 'w');
74 if ($h !== false) {
76 fclose($h);
79 if ($h !== false) {
[all …]
H A Dfopen_variation15-win32.phpt59 $h = fopen($absFile, 'w');
60 fwrite($h, $readData);
61 fclose($h);
64 if ($h !== false) {
71 fclose($h);
78 if ($h !== false) {
79 fwrite($h, $writeData);
80 fclose($h);
82 $h = fopen($absFile, 'r');
83 if ($h !== false) {
[all …]
H A Dreadfile_variation6.phpt30 $h = fopen($secondFile, "w");
31 fwrite($h, "File in include path");
32 fclose($h);
H A Dreadfile_variation7.phpt30 $h = fopen($scriptLocFile, "w");
31 fwrite($h, "File in script location");
32 fclose($h);
/php-src/ext/zlib/tests/
H A Dgzread_basic.phpt11 $h = gzopen($f, 'r');
15 var_dump(gzread( $h, $length ) );
17 gzclose($h);
/php-src/ext/xmlreader/tests/
H A Dinvalid_encoding.phpt14 $h = fopen("php://memory", "w+");
16 XMLReader::fromStream($h, encoding: "does not exist");
20 fclose($h);
/php-src/ext/xmlwriter/tests/
H A Dxmlwriter_toStream_encoding_utf8.phpt8 $h = fopen("php://output", "w");
10 $writer = XMLWriter::toStream($h);
H A Dxmlwriter_toStream_encoding_shiftjis.phpt8 $h = fopen("php://output", "w");
10 $writer = XMLWriter::toStream($h);
H A Dxmlwriter_toStream_custom_constructor_error.phpt14 $h = fopen("php://output", "w");
17 CustomXMLWriter::toStream($h);
/php-src/ext/spl/tests/
H A Dheap_it_current_empty.phpt8 $h = new SplMinHeap();
10 foreach ($h as $val) { echo 'FAIL'; }
H A Dheap_top_variation_003.phpt8 $h = new SplMinHeap();
10 $h->top();
H A Dgh14290.phpt8 $h = new ArrayIterator(['test' => 'test1']);
9 $i = new RegexIterator($h, '/^test(.*)/', RegexIterator::REPLACE);
/php-src/scripts/
H A Dphpize.in62 …PHP_MINOR_VERSION=`grep '#define PHP_MINOR_VERSION' $includedir/main/php_version.h|$SED 's/#define…
63 …PHP_MAJOR_VERSION=`grep '#define PHP_MAJOR_VERSION' $includedir/main/php_version.h|$SED 's/#define…
64 …PHP_API_VERSION=`grep '#define PHP_API_VERSION' $includedir/main/php.h|$SED 's/#define PHP_API_VER…
65 …ZEND_MODULE_API_NO=`grep '#define ZEND_MODULE_API_NO' $includedir/Zend/zend_modules.h|$SED 's/#def…
66 …ZEND_EXTENSION_API_NO=`grep '#define ZEND_EXTENSION_API_NO' $includedir/Zend/zend_extensions.h|$SE…
/php-src/ext/ffi/tests/
H A Dbug_gh9090.phpt10 $h = <<<'EOD'
23 $ffi = FFI::cdef($h);
26 $ffi = FFI::cdef($h, 'php_zend_test.dll');
28 $ffi = FFI::cdef($h, ffi_get_php_dll_name());
/php-src/ext/opcache/tests/jit/
H A Dadd_007.phpt22 $h = 0x1000000; // Cannot be encoded into imm12 field
32 $a = $a + $h;
45 $h = 0x1000000; // Cannot be encoded into imm12 field
55 $a = $a - $h;
/php-src/ext/bz2/
H A Dconfig.m47 AS_IF([test -r $PHP_BZ2/include/bzlib.h], [BZIP_DIR=$PHP_BZ2], [
9 AS_IF([test -r $i/include/bzlib.h], [BZIP_DIR=$i; break;])
15 AC_MSG_RESULT([bzlib.h not found])
/php-src/ext/enchant/
H A Dconfig.w326 …if (CHECK_HEADER_ADD_INCLUDE("enchant.h", "CFLAGS_ENCHANT", PHP_ENCHANT+ ";" + PHP_PHP_BUILD + "\\…
7 …CHECK_HEADER_ADD_INCLUDE("glib.h", "CFLAGS_ENCHANT", PHP_ENCHANT+ ";" + PHP_PHP_BUILD + "\\include…
23 WARNING('Could not find enchant.h; skipping');
/php-src/ext/hash/
H A Dphp_hash_murmur.h21 uint32_t h; member
33 uint32_t h[4]; member
45 uint64_t h[2]; member
/php-src/Zend/tests/
H A Dbug47714.phpt16 $h = new handler();
17 $h->handle($exception);
/php-src/ext/standard/html_tables/
H A Dhtml_table_gen.php754 foreach ($hashes[$i] as $h) {
755 if (isset($h[2])) {
757 $h[0], strlen($h[0]), hexdec($h[1]), hexdec($h[2]));
760 $h[0], strlen($h[0]), hexdec($h[1]));
/php-src/ext/standard/tests/general_functions/
H A Dgetopt.phpt4 -v -h -d test -m 1234 -t -j
16 ["h"]=>
/php-src/sapi/phpdbg/
H A Dphpdbg_break.c28 #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s, flags) \ argument
29 PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9], flags)
/php-src/.github/scripts/windows/
H A Dfind-target-branch.bat3 for /f "usebackq tokens=3" %%i in (`findstr PHP_MAJOR_VERSION main\php_version.h`) do set BRANCH=%%i
4 for /f "usebackq tokens=3" %%i in (`findstr PHP_MINOR_VERSION main\php_version.h`) do set BRANCH=%B…

Completed in 30 milliseconds

12345678910>>...28