Home
last modified time | relevance | path

Searched refs:num (Results 101 – 125 of 380) sorted by relevance

12345678910>>...16

/php-src/ext/gmp/tests/
H A Dgmp_intval.phpt45 gmp_intval(): Argument #1 ($num) is not an integer string
46 gmp_intval(): Argument #1 ($num) must be of type GMP|string|int, stdClass given
47 gmp_intval(): Argument #1 ($num) must be of type GMP|string|int, array given
48 gmp_intval(): Argument #1 ($num) is not an integer string
H A Dgmp_sqrt.phpt43 gmp_sqrt(): Argument #1 ($num) must be greater than or equal to 0
44 gmp_sqrt(): Argument #1 ($num) must be greater than or equal to 0
49 gmp_sqrt(): Argument #1 ($num) must be greater than or equal to 0
51 gmp_sqrt(): Argument #1 ($num) must be of type GMP|string|int, array given
H A Dgmp_mod.phpt38 ["num"]=>
42 ["num"]=>
48 ["num"]=>
H A Dgmp_sign.phpt39 gmp_sign(): Argument #1 ($num) is not an integer string
40 gmp_init(): Argument #1 ($num) is not an integer string
41 gmp_sign(): Argument #1 ($num) must be of type GMP|string|int, array given
H A Dclone.phpt16 ["num"]=>
20 ["num"]=>
/php-src/ext/bcmath/tests/
H A Dbcround_test_helper.inc5 foreach ($cases as [$num, $precision]) {
6 …echo str_pad("[{$num}, {$precision}]", 17, ' ', STR_PAD_LEFT), " => ", bcround($num, $precision, $…
/php-src/ext/bcmath/
H A Dbcmath_arginfo.h19 ZEND_ARG_TYPE_INFO(0, num, IS_STRING, 0)
26 ZEND_ARG_TYPE_INFO(0, num, IS_STRING, 0)
32 ZEND_ARG_TYPE_INFO(0, num, IS_STRING, 0)
47 ZEND_ARG_TYPE_INFO(0, num, IS_STRING, 0)
53 ZEND_ARG_TYPE_INFO(0, num, IS_STRING, 0)
/php-src/ext/filter/
H A Dlogical_filters.c346 char *num, *p; in php_filter_float() local
445 switch (is_numeric_string(num, p - num, &lval, &dval, 0)) { in php_filter_float()
465 efree(num); in php_filter_float()
468 efree(num); in php_filter_float()
724 int num, m; in _php_filter_validate_ipv4() local
736 num = num * 10 + ((*(str++)) - '0'); in _php_filter_validate_ipv4()
760 int num, n, i; in _php_filter_validate_ipv6() local
821 num = n = 0; in _php_filter_validate_ipv6()
824 num = 16 * num + (*str - '0'); in _php_filter_validate_ipv6()
826 num = 16 * num + (*str - 'a') + 10; in _php_filter_validate_ipv6()
[all …]
/php-src/Zend/tests/
H A Dbug40809.phpt12 $num = 5000;
14 for ($i=0; $i<$num; $i++) {
17 for ($i=0; $i<$num; $i++) {
/php-src/ext/dom/tests/
H A Ddomelement.phpt20 $node->setAttribute('num', '1');
21 echo "Chapter: ".$node->getAttribute('num')."\n";
22 echo 'Attribute num exists?: '.($node->hasAttribute('num')?'Yes':'No')."\n";
23 $node->removeAttribute('num');
24 echo "Chapter: ".$node->getAttribute('num')."\n";
25 echo 'Attribute num exists?: '.($node->hasAttribute('num')?'Yes':'No')."\n";
90 Attribute num exists?: Yes
92 Attribute num exists?: No
/php-src/ext/dom/lexbor/lexbor/core/
H A Dconv.h19 lexbor_conv_float_to_data(double num, lxb_char_t *buf, size_t len);
22 lexbor_conv_long_to_data(long num, lxb_char_t *buf, size_t len);
25 lexbor_conv_int64_to_data(int64_t num, lxb_char_t *buf, size_t len);
/php-src/ext/intl/tests/
H A Dbug48227.phpt19 NumberFormatter::format(): Argument #1 ($num) must be of type int|float, string given
22 Deprecated: NumberFormatter::format(): Passing null to parameter #1 ($num) of type int|float is dep…
24 NumberFormatter::format(): Argument #1 ($num) must be of type int|float, NumberFormatter given
/php-src/ext/mysqli/tests/
H A Dmysqli_next_result_error.phpt39 $stmt->bind_result($num);
41 echo "num = $num\n";
67 num = 1
/php-src/ext/xmlreader/tests/
H A D014.phpt11 <books><book num="1" idx="2">book1</book></books>';
32 // Try to set the value of the first "num" attribute from "1" to "num attribute 1"
35 $reader->value = 'num attribute 1';
39 // Try to set the name of the first attribute from "num" to "number"
/php-src/Zend/
H A Dzend_smart_str.h32 smart_str *str, double num, int precision, bool zero_fraction);
144 static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persis… in smart_str_append_long_ex() argument
146 char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); in smart_str_append_long_ex()
150 static zend_always_inline void smart_str_append_long(smart_str *dest, zend_long num) in smart_str_append_long() argument
152 smart_str_append_long_ex(dest, num, false); in smart_str_append_long()
155 static zend_always_inline void smart_str_append_unsigned_ex(smart_str *dest, zend_ulong num, bool p… in smart_str_append_unsigned_ex() argument
157 char *result = zend_print_ulong_to_buf(buf + sizeof(buf) - 1, num); in smart_str_append_unsigned_ex()
161 static zend_always_inline void smart_str_append_unsigned(smart_str *dest, zend_ulong num) in smart_str_append_unsigned() argument
163 smart_str_append_unsigned_ex(dest, num, false); in smart_str_append_unsigned()
/php-src/ext/standard/
H A Dtype.c145 zval *num; in PHP_FUNCTION() local
149 Z_PARAM_ZVAL(num) in PHP_FUNCTION()
154 if (Z_TYPE_P(num) != IS_STRING || base == 10) { in PHP_FUNCTION()
155 RETVAL_LONG(zval_get_long(num)); in PHP_FUNCTION()
161 char *strval = Z_STRVAL_P(num); in PHP_FUNCTION()
162 size_t strlen = Z_STRLEN_P(num); in PHP_FUNCTION()
197 RETVAL_LONG(ZEND_STRTOL(Z_STRVAL_P(num), NULL, base)); in PHP_FUNCTION()
204 zval *num; in PHP_FUNCTION() local
207 Z_PARAM_ZVAL(num) in PHP_FUNCTION()
210 RETURN_DOUBLE(zval_get_double(num)); in PHP_FUNCTION()
/php-src/ext/soap/tests/
H A Dserver009.phpt14 function Sum($num) {
15 return $this->sum += $num;
34 <num xsi:type="xsd:int">5</num>
52 <num xsi:type="xsd:int">3</num>
H A Dserver010.phpt10 function Sum($num) {
11 return $this->sum += $num;
31 <num xsi:type="xsd:int">5</num>
49 <num xsi:type="xsd:int">3</num>
/php-src/ext/pgsql/tests/
H A Dpg_meta_data_001.phpt43 ["num"]=>
60 ["num"]=>
79 ["num"]=>
96 ["num"]=>
115 ["num"]=>
140 ["num"]=>
H A D26async_query_prepared.phpt17 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
18 pg_query($db, "INSERT INTO {$table_name} (num) VALUES(1000)");
20 if (!pg_send_prepare($db, 'php_test', "SELECT * FROM ".$table_name." WHERE num > \$1;")) {
65 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
66 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
68 pg_field_num($result, "num");
/php-src/ext/standard/tests/math/
H A Ddecbin_variation1_64bit.phpt64 decbin(): Argument #1 ($num) must be of type int, float given
67 decbin(): Argument #1 ($num) must be of type int, float given
85 decbin(): Argument #1 ($num) must be of type int, string given
88 decbin(): Argument #1 ($num) must be of type int, string given
H A Ddechex_variation1_64bit.phpt64 dechex(): Argument #1 ($num) must be of type int, float given
67 dechex(): Argument #1 ($num) must be of type int, float given
85 dechex(): Argument #1 ($num) must be of type int, string given
88 dechex(): Argument #1 ($num) must be of type int, string given
H A Ddecoct_variation1_64bit.phpt64 decoct(): Argument #1 ($num) must be of type int, float given
67 decoct(): Argument #1 ($num) must be of type int, float given
85 decoct(): Argument #1 ($num) must be of type int, string given
88 decoct(): Argument #1 ($num) must be of type int, string given
/php-src/tests/classes/
H A Diterators_003.phpt8 private $num = 0;
18 $more = $this->num < $this->obj->max;
24 return $this->num;
28 $this->num++;
31 return $this->num;
/php-src/Zend/Optimizer/
H A Doptimize_func_calls.c198 fcall->op1.num = zend_vm_calc_used_stack(fcall->extended_value, call_stack[call].func); in zend_optimize_func_calls()
206 fcall->op1.num = zend_vm_calc_used_stack(fcall->extended_value, call_stack[call].func); in zend_optimize_func_calls()
275 if (has_known_send_mode(&call_stack[call - 1], opline->op2.num)) { in zend_optimize_func_calls()
276 if (!ARG_MUST_BE_SENT_BY_REF(call_stack[call - 1].func, opline->op2.num)) { in zend_optimize_func_calls()
288 if (has_known_send_mode(&call_stack[call - 1], opline->op2.num)) { in zend_optimize_func_calls()
289 call_stack[call - 1].func_arg_num = opline->op2.num; in zend_optimize_func_calls()
310 if (has_known_send_mode(&call_stack[call - 1], opline->op2.num)) { in zend_optimize_func_calls()
312 if (ARG_SHOULD_BE_SENT_BY_REF(call_stack[call - 1].func, opline->op2.num)) { in zend_optimize_func_calls()
325 if (has_known_send_mode(&call_stack[call - 1], opline->op2.num)) { in zend_optimize_func_calls()
326 if (ARG_MUST_BE_SENT_BY_REF(call_stack[call - 1].func, opline->op2.num)) { in zend_optimize_func_calls()
[all …]

Completed in 44 milliseconds

12345678910>>...16