Home
last modified time | relevance | path

Searched refs:i (Results 1926 – 1950 of 2007) sorted by relevance

1...<<7172737475767778798081

/PHP-7.1/Zend/
H A Dzend_execute.c121 #define CV_DEF_OF(i) (EX(func)->op_array.vars[i]) argument
870 uint32_t i; in zend_verify_internal_arg_types() local
874 for (i = 0; i < num_args; ++i) { in zend_verify_internal_arg_types()
875 if (UNEXPECTED(!zend_verify_internal_arg_type(fbc, i + 1, p))) { in zend_verify_internal_arg_types()
2496 int i; in cleanup_live_vars() local
2498 for (i = 0; i < EX(func)->op_array.last_live_range; i++) { in cleanup_live_vars()
2499 const zend_live_range *range = &EX(func)->op_array.live_range[i]; in cleanup_live_vars()
H A DOBJECTS2_HOWTO96 == operation, === compares objects by handles, i.e., return true if
98 different object types (i.e., having different handlers) can not be
H A Dzend_vm_def.h3028 uint32_t i; variable
3052 for (i = 0; i <= opline->extended_value; i++) {
3059 for (i = 0; i <= opline->extended_value; i++) {
3060 len += ZSTR_LEN(rope[i]);
3065 for (i = 0; i <= opline->extended_value; i++) {
3066 memcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i]));
3067 target += ZSTR_LEN(rope[i]);
3068 zend_string_release(rope[i]);
4548 uint32_t i; variable
4552 for (i = 0; i < zend_hash_num_elements(ht); i++) {
[all …]
/PHP-7.1/ext/standard/tests/strings/
H A Dstrcasecmp.phpt23 for ($i=0; $i<count($str1_arr); $i++){
24 echo "\nIteration $i\n";
26 echo "- strcasecmp of '$str1_arr[$i]' and '$str1_arr[$j]' is => ";
27 var_dump(strcasecmp($str1_arr[$i], $str1_arr[$j]));
/PHP-7.1/ext/xml/tests/
H A Dbug32001b.phpt40 $canonical_name = preg_replace('/BE|LE/i', '', $this->encoding);
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt75 // i - add PID of the current process
80 $trace = try_control_string($link, 't:O,' . $trace_file . ':i', $trace_file, 30);
H A Dmysqli_stmt_execute.phpt75 if (!mysqli_stmt_bind_param($stmt, "i", $limit))
/PHP-7.1/ext/phar/
H A Dphar.c106 uint i = 0; in phar_split_cache_list() local
140 phar->phar_pos = i++; in phar_split_cache_list()
3503 uint32_t i; local
3519 for (i = 0; i < zend_hash_num_elements(&cached_phars); ++i) {
3520 if (PHAR_G(cached_fp)[i].fp) {
3521 php_stream_close(PHAR_G(cached_fp)[i].fp);
3523 if (PHAR_G(cached_fp)[i].ufp) {
3524 php_stream_close(PHAR_G(cached_fp)[i].ufp);
3526 efree(PHAR_G(cached_fp)[i].manifest);
H A Dzip.c171 uint16_t i; in phar_parse_zipfile() local
339 for (i = 0; i < PHAR_GET_16(locator.count); ++i) { in phar_parse_zipfile()
354 entry.manifest_pos = i; in phar_parse_zipfile()
442 if (i != PHAR_GET_16(locator.count) - 1) { in phar_parse_zipfile()
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_func_info.c1254 size_t i; in zend_func_info_startup() local
1263 for (i = 0; i < sizeof(func_infos)/sizeof(func_info_t); i++) { in zend_func_info_startup()
1264 …if (zend_hash_str_add_ptr(&func_info, func_infos[i].name, func_infos[i].name_len, (void**)&func_in… in zend_func_info_startup()
1265 fprintf(stderr, "ERROR: Duplicate function info for \"%s\"\n", func_infos[i].name); in zend_func_info_startup()
H A Dpass1_5.c42 int i = 0; in zend_optimizer_pass1() local
658 i++; in zend_optimizer_pass1()
/PHP-7.1/ext/reflection/tests/
H A DReflectionType_001.phpt5 …llable $c, stdClass $d = null, $e = null, string $f, bool $g, int $h, float $i, NotExisting $j) { }
/PHP-7.1/ext/standard/tests/general_functions/
H A Dis_scalar.phpt6 * Description: Finds whether a variable is a scalar (i.e integer, float, string or boolean)
/PHP-7.1/ext/standard/tests/file/
H A Dfile.inc219 $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
638 // if the result is false(i.e values are not as expected),
/PHP-7.1/ext/pcntl/
H A Dpcntl.c1010 int i; in PHP_FUNCTION() local
1011 for (i = 0; i < 32; i++) { in PHP_FUNCTION()
/PHP-7.1/ext/spl/
H A Dspl_observer.c327 int i = 0; in spl_object_storage_get_gc() local
337 ZVAL_COPY_VALUE(&intern->gcdata[i++], &element->obj); in spl_object_storage_get_gc()
338 ZVAL_COPY_VALUE(&intern->gcdata[i++], &element->inf); in spl_object_storage_get_gc()
342 *n = i; in spl_object_storage_get_gc()
/PHP-7.1/ext/mbstring/oniguruma/
H A DHISTORY965 ex. /[^a]/i.match("A")
1286 ex. /\x61/i =~ "A"
1395 ex. /[H-c]/i ==> (H-Z, 0x5b-0x60, a-c)/i
1400 (ex. bad match /(?i)(?-i)a/ =~ "A")
1517 ex. /(?i:(?<n>(a)\2)){0}\g<n>/.match("aA")
1575 ex. /\J/i =~ "j", /[\J]/i =~ "j" (same as Perl)
1752 2003/02/24: [impl] convert i(/../, ...) functions in testconv.rb.
1770 2003/02/12: [bug] mismatch /\?a/i.match('?A').
1780 ex. /[\x58-\x64]/i
1791 in ignore-case mode. (ex. /[A-c]/i == /[a-c]/i)
[all …]
/PHP-7.1/ext/snmp/
H A Dsnmp.c94 int i = 0; \
95 while (b[i].name != NULL) { \
96 php_snmp_add_property((a), (b)[i].name, (b)[i].name_length, \
97 (php_snmp_read_t)(b)[i].read_func, (php_snmp_write_t)(b)[i].write_func); \
98 i++; \
/PHP-7.1/ext/soap/interop/
H A Dclient_round2_interop.php546 $i = 0;
615 if ($this->numservers && ++$i >= $this->numservers) break;
/PHP-7.1/ext/date/tests/
H A Ddate_variation2.phpt97 $format = "F j, Y, g:i a";
/PHP-7.1/ext/oci8/tests/
H A Dbug43492.phpt41 function fetch($c, $i) {
50 for($i = 0; $i < 300; $i++) {
51 $cur = fetch($c, $i);
H A Dbug43492_2.phpt34 function fetch($c, $i) {
42 for($i = 0; $i < 300; $i++) {
43 $cur = fetch($c, $i);
/PHP-7.1/ext/soap/
H A Dphp_http.c818 int i, n; in make_http_soap_request() local
825 for (i = 0; i < n; i++) { in make_http_soap_request()
/PHP-7.1/ext/pcre/pcrelib/testdata/
H A Dtestinput5717 /(..)\1/8i
732 /(..)\1{2,}/8i
742 /(..)\1{2,}?x/8i
/PHP-7.1/ext/standard/
H A Dfile.c715 register int i = 0; in PHP_FUNCTION() local
768 add_index_stringl(return_value, i++, s, p-s); in PHP_FUNCTION()
781 add_index_stringl(return_value, i++, s, p-s-windows_eol); in PHP_FUNCTION()
1886 int count, i = 0; in php_fputcsv() local
1925 if (++i != count) { in php_fputcsv()

Completed in 175 milliseconds

1...<<7172737475767778798081