Home
last modified time | relevance | path

Searched refs:num (Results 226 – 250 of 334) sorted by relevance

12345678910>>...14

/PHP-8.0/ext/standard/tests/math/
H A Dbase_convert_error.phpt34 base_convert(): Argument #1 ($num) must be of type string, classA given
H A Ddecbin_basiclong_64bit.phpt58 decbin(): Argument #1 ($num) must be of type int, float given
H A Ddecoct_basiclong_64bit.phpt58 decoct(): Argument #1 ($num) must be of type int, float given
H A Ddechex_basiclong_64bit.phpt58 dechex(): Argument #1 ($num) must be of type int, float given
H A Dbase_convert_variation1.phpt148 base_convert(): Argument #1 ($num) must be of type string, array given
172 base_convert(): Argument #1 ($num) must be of type string, resource given
/PHP-8.0/ext/gmp/tests/
H A D003.phpt38 gmp_init(): Argument #1 ($num) is not an integer string
H A Dgmp_perfect_square.phpt44 gmp_perfect_square(): Argument #1 ($num) must be of type GMP|string|int, array given
H A Dgmp_clrbit.phpt55 gmp_clrbit(): Argument #1 ($num) must be of type GMP, array given
H A Dgmp_prob_prime.phpt78 gmp_prob_prime(): Argument #1 ($num) must be of type GMP|string|int, array given
H A Dgmp_pow.phpt60 gmp_pow(): Argument #1 ($num) must be of type GMP|string|int, array given
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_commit_oo.phpt62 if (!$res = $mysqli->query('SELECT COUNT(*) AS num FROM test')) {
67 if (1 != $tmp['num']) {
68 printf("[010] Expecting 1 row in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_stmt_get_result_metadata.phpt151 $num = count($fields['res']);
153 $pos = mt_rand(-1, $num + 1);
154 if ($pos >= 0 && $pos < $num) {
186 if ($pos >= $num && $tmp !== false) {
193 if ($pos >= $num && $tmp !== false) {
H A Dmysqli_stmt_affected_rows.phpt90 if (!($res = mysqli_query($link, "SELECT count(id) AS num FROM test")) ||
93 $num = (int)$tmp['num'];
103 if ($num !== ($tmp = mysqli_stmt_affected_rows($stmt)))
104 printf("[019] Expecting int/%d, got %s/%s\n", $num, gettype($tmp), $tmp);
/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_call_graph.h45 int num; member
H A Dpass1.c253 (opline->op1.num & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_SELF) { in zend_optimizer_pass1()
260 ((opline - 1)->op1.num & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_SELF) && in zend_optimizer_pass1()
319 if (send1_opline->op2.num == 2) { in zend_optimizer_pass1()
365 opline->result.num = 0; in zend_optimizer_pass1()
607 opline->op2.num = 0; in zend_optimizer_pass1()
615 opline->op2.num = 0; in zend_optimizer_pass1()
636 opline->op2.num = 0; in zend_optimizer_pass1()
H A Dblock_pass.c517 tmp = src->op1.num; in zend_optimize_block()
518 src->op1.num = src->op2.num; in zend_optimize_block()
519 src->op2.num = tmp; in zend_optimize_block()
535 tmp = src->op1.num; in zend_optimize_block()
536 src->op1.num = src->op2.num; in zend_optimize_block()
537 src->op2.num = tmp; in zend_optimize_block()
676 opline->op2.num = 0; in zend_optimize_block()
1124 opline->op2.num = map[opline->op2.num]; in assemble_code_blocks()
1350 last_op->op2.num = 0; in zend_jmp_optimization()
1353 last_op->op2.num = 0; in zend_jmp_optimization()
[all …]
/PHP-8.0/ext/intl/formatter/
H A Dformatter.stub.php19 public function format(int|float $num, int $type = NumberFormatter::TYPE_DEFAULT) {} argument
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_utils.c592 static int phpdbg_xml_array_element_dump(zval *zv, zend_string *key, zend_ulong num) { in phpdbg_xml_array_element_dump() argument
599 phpdbg_xml(" name=\"%ld\"", num); in phpdbg_xml_array_element_dump()
615 static int phpdbg_xml_object_property_dump(zval *zv, zend_string *key, zend_ulong num) { in phpdbg_xml_object_property_dump() argument
634 phpdbg_xml(" name=\"%ld\" protection=\"public\"", num); in phpdbg_xml_object_property_dump()
655 zend_ulong num; in phpdbg_xml_var_dump() local
657 int (*element_dump_func)(zval *zv, zend_string *key, zend_ulong num); in phpdbg_xml_var_dump()
709 ZEND_HASH_FOREACH_KEY_VAL_IND(myht, num, key, val) { in phpdbg_xml_var_dump()
710 element_dump_func(val, key, num); in phpdbg_xml_var_dump()
H A Dxml.md129 - num: if possible, information about which parameter had a wrong argument
168 - num: the nth opline of a function/method/file
245 - &lt;includedfileinfo num="" /> with num having an integer value, indicating the number of include…
256 - &lt;variableinfo num="" /> with num having an integer value, indicating the number of (local or s…
274 - &lt;literalinfo num="" /> with num having an integer value, indicating the number of literals, op…
298 - &lt;classinfo num="" /> with num having an integer value, indicating the number of loaded user-de…
310 - &lt;functioninfo num="" /> with num having an integer value, indicating the number of loaded user…
355 - introduced by &lt;printinfo num="" /> (except for print opline) with num being the number of opco…
/PHP-8.0/main/
H A Dspprintf.c150 #define STR_TO_DEC(str, num) do { \ argument
151 num = NUM(*str++); \
153 num *= 10; \
154 num += NUM(*str++); \
155 if (num >= INT_MAX / 10) { \
/PHP-8.0/Zend/tests/
H A Dnowdoc_015.phpt5 function error_handler($num, $msg, $file, $line) {
/PHP-8.0/Zend/
H A Dzend_language_parser.y272 %type <num> returns_ref function fn is_reference is_variadic variable_modifiers
273 %type <num> method_modifiers non_empty_member_modifiers member_modifier optional_visibility_modifier
274 %type <num> class_modifiers class_modifier use_type backup_fn_flags
564 class_modifiers T_CLASS { $<num>$ = CG(zend_lineno); }
566 …{ $$ = zend_ast_create_decl(ZEND_AST_CLASS, $1, $<num>3, $7, zend_ast_get_str($4), $5, $6, $9, NUL…
567 | T_CLASS { $<num>$ = CG(zend_lineno); }
569 …{ $$ = zend_ast_create_decl(ZEND_AST_CLASS, 0, $<num>2, $6, zend_ast_get_str($3), $4, $5, $8, NULL…
584 T_TRAIT { $<num>$ = CG(zend_lineno); }
590 T_INTERFACE { $<num>$ = CG(zend_lineno); }
998 T_CLASS { $<num>$ = CG(zend_lineno); } ctor_arguments
[all …]
H A Dzend_operators.h909 static zend_always_inline char *zend_print_ulong_to_buf(char *buf, zend_ulong num) { in zend_print_ulong_to_buf() argument
912 *--buf = (char) (num % 10) + '0'; in zend_print_ulong_to_buf()
913 num /= 10; in zend_print_ulong_to_buf()
914 } while (num > 0); in zend_print_ulong_to_buf()
919 static zend_always_inline char *zend_print_long_to_buf(char *buf, zend_long num) { in zend_print_long_to_buf() argument
920 if (num < 0) { in zend_print_long_to_buf()
921 char *result = zend_print_ulong_to_buf(buf, ~((zend_ulong) num) + 1); in zend_print_long_to_buf()
925 return zend_print_ulong_to_buf(buf, num); in zend_print_long_to_buf()
929 ZEND_API zend_string* ZEND_FASTCALL zend_long_to_str(zend_long num);
/PHP-8.0/ext/standard/tests/array/
H A Darray_fill_variation5.phpt13 $num = 2;
43 var_dump( array_fill($start_key , $num , $val) );
/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddasm_ppc.lua72 local num = map_action[name]
73 out:write(format(" %-10s %02X %d\n", name, num, num))
98 local function waction(action, val, a, num)
102 if a or num then secpos = secpos + (num or 1) end
1847 local num = ctypenum + 1
1850 ctypefmt = format("Dt%X(%%s)", num),
1853 wline(format("#define Dt%X(_V) (int)(ptrdiff_t)&(((%s *)0)_V)", num, ctype))
1854 ctypenum = num
1875 function _M.section(num)
1876 waction("SECTION", num)

Completed in 68 milliseconds

12345678910>>...14