Home
last modified time | relevance | path

Searched refs:pow (Results 1 – 25 of 40) sorted by path

12

/PHP-5.5/Zend/
H A Dzend_operators.c159 result *= pow(10.0, exponent); in zend_string_to_double()
173 result *= pow(10.0, exponent); in zend_string_to_double()
H A Dzend_operators.h79 double two_pow_32 = pow(2., 32.), in END_EXTERN_C()
97 double two_pow_64 = pow(2., 64.),
/PHP-5.5/ext/com_dotnet/tests/
H A Dvariants.phpt125 pow:
159 pow: 1
241 pow:
275 pow: 1
329 pow:
391 pow:
449 pow:
511 pow:
533 pow: 0
547 pow: 0
[all …]
/PHP-5.5/ext/date/lib/
H A Dparse_date.c24996 s->time->f = (f / pow(10, (ptr - tptr))); in timelib_parse_from_format()
H A Dparse_date.re2005 s->time->f = (f / pow(10, (ptr - tptr)));
/PHP-5.5/ext/gd/
H A Dgd.c3049 (int) ((pow((pow((gdTrueColorGetRed(c) / 255.0), input)), 1.0 / output) * 255) + .5), in PHP_FUNCTION()
3050 (int) ((pow((pow((gdTrueColorGetGreen(c) / 255.0), input)), 1.0 / output) * 255) + .5), in PHP_FUNCTION()
3051 (int) ((pow((pow((gdTrueColorGetBlue(c) / 255.0), input)), 1.0 / output) * 255) + .5), in PHP_FUNCTION()
3061 im->red[i] = (int)((pow((pow((im->red[i] / 255.0), input)), 1.0 / output) * 255) + .5); in PHP_FUNCTION()
3062 im->green[i] = (int)((pow((pow((im->green[i] / 255.0), input)), 1.0 / output) * 255) + .5); in PHP_FUNCTION()
3063 im->blue[i] = (int)((pow((pow((im->blue[i] / 255.0), input)), 1.0 / output) * 255) + .5); in PHP_FUNCTION()
/PHP-5.5/ext/gd/libgd/
H A Dgd.c988 p_alpha = pow (1.0 - (p_dist / 1.5), 2); in gdImageAntiAliasedApply()
H A Dgd_interpolation.c368 return (pow(2.0 - x, 3.0)/6.0); in filter_cubic_spline()
474 if (x < 1.5) return (0.5 * pow(x - 1.5, 2.0)); in filter_bell()
584 return (1.0f - (double)fabs(pow(x,a))); in filter_power()
/PHP-5.5/ext/interbase/
H A Dibase_query.c487 l = Z_DVAL_P(val) * pow(10, -array->ar_desc.array_desc_scale) + .5; in _php_ibase_bind_array()
489 l = Z_DVAL_P(val) * pow(10, -array->ar_desc.array_desc_scale) - .5; in _php_ibase_bind_array()
520 *(ISC_INT64 *) buf = (ISC_INT64) (l * pow(10, in _php_ibase_bind_array()
523 *(ISC_INT64 *) buf = (ISC_INT64) (l * pow(10, in _php_ibase_bind_array()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fetch_array_large.phpt122 $limit = (ini_get('memory_limit') > 0) ? parse_memory_limit(ini_get('memory_limit')) : pow(2, 32);
H A Dmysqli_fetch_assoc_bit.phpt24 $maxval = pow(2, $bits);
45 $max_value = pow(2, $bits) - 1;
H A Dmysqli_insert_packet_overflow.phpt11 $max_len = pow(2, 24);
39 $max_len = pow(2, 24);
69 $max_len = pow(2, 24);
H A Dmysqli_stmt_bind_result_bit.phpt15 $maxval = pow(2, $bits);
41 $max_value = pow(2, $bits) - 1;
H A Dmysqli_stmt_fetch_bit.phpt27 $max_value = pow(2, $bits) - 1;
H A Dmysqli_stmt_get_result_bit.phpt27 $maxval = pow(2, $bits);
48 $max_value = pow(2, $bits) - 1;
/PHP-5.5/ext/standard/
H A Dbasic_functions.c2922 PHP_FE(pow, arginfo_pow)
H A Dmath.c89 return pow(10.0, (double)power); in php_intpow10()
222 return(log(z + sqrt(1 + pow(z, 2))) / log(M_E)); in php_asinh()
599 PHP_FUNCTION(pow) in PHP_FUNCTION() argument
629 if (overflow) RETURN_DOUBLE(dval * pow(l2,i)); in PHP_FUNCTION()
633 if (overflow) RETURN_DOUBLE((double)l1 * pow(dval,i)); in PHP_FUNCTION()
643 RETURN_DOUBLE(pow(Z_DVAL_P(zbase), Z_DVAL_P(zexp))); in PHP_FUNCTION()
H A Dphp_math.h46 PHP_FUNCTION(pow);
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php741 $numelems = max(pow(2, ceil(log(1.5*count($origdp))/log(2))),16);
/PHP-5.5/ext/standard/tests/array/
H A Darray_map_variation12.phpt19 echo "-- with built-in function 'pow' and two parameters --\n";
20 var_dump( array_map('pow', $array1, $array2));
22 echo "-- with built-in function 'pow' and one parameter --\n";
23 var_dump( array_map('pow', $array1));
32 -- with built-in function 'pow' and two parameters --
41 -- with built-in function 'pow' and one parameter --
43 Warning: pow() expects exactly 2 parameters, 1 given in %s on line %d
45 Warning: pow() expects exactly 2 parameters, 1 given in %s on line %d
47 Warning: pow() expects exactly 2 parameters, 1 given in %s on line %d
H A Darray_walk_recursive_variation8.phpt12 * pow function
21 echo "-- With 'pow' built-in function --\n";
22 var_dump( array_walk_recursive($input, 'pow'));
34 -- With 'pow' built-in function --
H A Darray_walk_variation8.phpt12 * pow function
21 echo "-- With 'pow' built-in function --\n";
22 var_dump( array_walk($input, 'pow'));
34 -- With 'pow' built-in function --
H A Ddata.inc2 $tmp = pow(2,24);
/PHP-5.5/ext/standard/tests/
H A Dbug49244.phpt7 printf("{%f} %1\$f\n", pow(-1.0, 0.3));
8 printf(b"{%f} %1\$f\n", pow(-1.0, 0.3));
/PHP-5.5/ext/standard/tests/math/
H A Dbug45712.phpt28 $inf = pow(0,-2);

Completed in 177 milliseconds

12