/php-src/ext/mysqli/tests/ |
H A D | mysqli_debug_mysqlnd_control_string.phpt | 72 // i - add PID of the current process 77 $trace = try_control_string($link, 't:O,' . $trace_file . ':i', $trace_file, 30);
|
H A D | mysqli_stmt_execute.phpt | 64 if (!mysqli_stmt_bind_param($stmt, "i", $limit))
|
/php-src/ext/opcache/ |
H A D | config.m4 | 38 [[i[34567]86*|x86*|aarch64|amd64]], [], 82 [[i[34567]86*|x86*]], [
|
/php-src/ext/standard/ |
H A D | streamsfuncs.c | 882 int i; in user_space_stream_notifier() local 898 for (i = 0; i < 6; i++) { in user_space_stream_notifier() 899 zval_ptr_dtor(&zvs[i]); in user_space_stream_notifier()
|
H A D | file.c | 591 int i = 0; in PHP_FUNCTION() local 648 add_index_stringl(return_value, i++, s, p-s); in PHP_FUNCTION() 661 add_index_stringl(return_value, i++, s, p-s-windows_eol); in PHP_FUNCTION() 1741 uint32_t count, i = 0; in php_fputcsv() local 1782 if (++i != count) { in php_fputcsv()
|
/php-src/ext/phar/ |
H A D | zip.c | 234 uint16_t i; in phar_parse_zipfile() local 393 for (i = 0; i < PHAR_GET_16(locator.count); ++i) { in phar_parse_zipfile() 411 entry.manifest_pos = i; in phar_parse_zipfile() 539 if (i != PHAR_GET_16(locator.count) - 1) { in phar_parse_zipfile()
|
H A D | phar.c | 99 uint32_t i = 0; in phar_split_cache_list() local 137 phar->phar_pos = i++; in phar_split_cache_list() 3495 for (uint32_t i = 0; i < zend_hash_num_elements(&cached_phars); ++i) { in PHP_RSHUTDOWN_FUNCTION() local 3496 if (PHAR_G(cached_fp)[i].fp) { in PHP_RSHUTDOWN_FUNCTION() 3497 php_stream_close(PHAR_G(cached_fp)[i].fp); in PHP_RSHUTDOWN_FUNCTION() 3499 if (PHAR_G(cached_fp)[i].ufp) { in PHP_RSHUTDOWN_FUNCTION() 3500 php_stream_close(PHAR_G(cached_fp)[i].ufp); in PHP_RSHUTDOWN_FUNCTION() 3502 efree(PHAR_G(cached_fp)[i].manifest); in PHP_RSHUTDOWN_FUNCTION()
|
/php-src/ext/xml/tests/ |
H A D | bug32001b.phpt | 45 $canonical_name = preg_replace('/BE|LE/i', '', $this->encoding);
|
/php-src/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeX86_32.c | 1316 sljit_s32 i, next, reg_idx, offset; in sljit_emit_mem() local 1349 for (i = 0; i < 2; i++) { in sljit_emit_mem() 1350 reg_idx = next > 0 ? i : (i ^ 0x1); in sljit_emit_mem()
|
/php-src/ext/standard/tests/file/ |
H A D | file.inc | 219 $size = size of the fill in terms of kilobyte, i.e size of the file. 338 $size = size of the fill in terms of kilobyte, i.e size of the file. 560 // if the $return_value is false, i.e all the element do not match then 645 // if the result is false(i.e values are not as expected),
|
/php-src/ext/mbstring/tests/ |
H A D | gb18030_encoding.phpt | 276 $i = rand(0, $n-1); 277 $gb = fourByteCodeFromIndex(fourByteCodeIndex($byte4, $byte3, $byte2, $byte1) + $i); 278 $unicode += $i;
|
/php-src/ |
H A D | CODING_STANDARDS.md | 143 meaning (e.g. `for (i=0; i<100; i++) ...`).
|
/php-src/Zend/ |
H A D | zend_vm_def.h | 3439 uint32_t i; variable 3464 for (i = 0; i <= opline->extended_value; i++) { 3475 for (i = 0; i <= opline->extended_value; i++) { 3484 for (i = 0; i <= opline->extended_value; i++) { 3485 memcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i])); 8127 for (i = throw_op_num; i < range->end; i++) { 8143 for (i = 0; i < EX(func)->op_array.last_try_catch; i++) { 9560 uint32_t i = skip; in ZEND_HASH_FILL_PACKED() local 9561 p = EX_VAR_NUM(i); in ZEND_HASH_FILL_PACKED() 9576 i++; in ZEND_HASH_FILL_PACKED() [all …]
|
H A D | zend_language_scanner.l | 2054 size_t i; 2055 for (i = 0; i < len; i++) { 2056 if (lnum[i] == '8' || lnum[i] == '9') { 2067 len = i;
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_helpers.c | 3346 uint32_t i; in zend_jit_rope_end() local 3350 for (i = 0; i <= count; i++) { in zend_jit_rope_end() 3351 flags &= ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(rope[i]); in zend_jit_rope_end() 3352 len += ZSTR_LEN(rope[i]); in zend_jit_rope_end() 3358 for (i = 0; i <= count; i++) { in zend_jit_rope_end() 3359 target = zend_mempcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i])); in zend_jit_rope_end() 3360 zend_string_release_ex(rope[i], 0); in zend_jit_rope_end()
|
/php-src/ext/dom/tests/ |
H A D | DOMNode_isEqualNode.phpt | 29 <texts>abc<i/>def<i/>abc</texts>
|
/php-src/ext/reflection/tests/types/ |
H A D | ReflectionType_001.phpt | 5 function foo(stdClass $a, array $b, callable $c, string $f, bool $g, int $h, float $i, NotExisting …
|
/php-src/sapi/fuzzer/ |
H A D | README.md | 32 * `php-fuzz-mbregex`: Fuzzing `mb_ereg[i]()` (requires --enable-mbstring)
|
/php-src/docs/source/core/data-structures/ |
H A D | zval.rst | 45 zend_long lval; /* long value, i.e. int. */ 46 double dval; /* double value, i.e. float. */
|
/php-src/ext/dom/ |
H A D | xml_serializer.c | 898 for (int i = 0; i < indent; i++) { in dom_xml_output_indents() local
|
/php-src/ext/sockets/ |
H A D | sockets.c | 1810 size_t i; local 1821 for (i = 0; i < optlen / sizeof(struct fil_info); i++) { 1822 add_index_string(return_value, i, fi[i].fi_name);
|
/php-src/ext/xml/ |
H A D | xml.c | 757 for (size_t i = 0; i < ZSTR_LEN(decoded_value); i++) { in xml_characterDataHandler() local 758 switch (ZSTR_VAL(decoded_value)[i]) { in xml_characterDataHandler()
|
/php-src/docs/ |
H A D | release-process.md | 273 > version numbers that end in `-dev` in these files. The main branch (i.e. 462 5. **For pre-GA *RCs* only,** coordinate with the social media team (i.e., 694 This will create a release file (i.e., `releases/X_Y_Z.php`) and a news entry 695 file (i.e., `archive/entries/YYYY-MM-DD-n.xml`), while also updating 790 13. Coordinate with the social media team (i.e., Derick) to 795 ## Re-releasing the same version or a patch-level (i.e., `-plN`) 808 and release a patch-level (i.e., *pl*) release. If it is not critical and/or 868 version branch. This frees up the main branch (i.e., `master`) for any new 876 i.e. `PHP-X.Y`. 878 3. Add a commit on the main branch (i.e., `master`) after the branch point.
|
/php-src/ext/spl/tests/ |
H A D | fixedarray_003.phpt | 38 $o['03'] = 'i';
|
/php-src/ext/hash/sha3/generic64lc/ |
H A D | KeccakP-1600-64.macros | 45 #define thetaRhoPiChiIotaPrepareTheta(i, A, E) \ 63 E##ba ^= KeccakF1600RoundConstants[i]; \ 161 #define thetaRhoPiChiIota(i, A, E) \ 179 E##ba ^= KeccakF1600RoundConstants[i]; \ 253 #define thetaRhoPiChiIotaPrepareTheta(i, A, E) \ 271 E##ba ^= KeccakF1600RoundConstants[i]; \ 369 #define thetaRhoPiChiIota(i, A, E) \ 387 E##ba ^= KeccakF1600RoundConstants[i]; \
|