Lines Matching refs:num

315 	double num;  in PHP_FUNCTION()  local
318 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
320 RETURN_DOUBLE(sin(num)); in PHP_FUNCTION()
327 double num; in PHP_FUNCTION() local
330 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
332 RETURN_DOUBLE(cos(num)); in PHP_FUNCTION()
339 double num; in PHP_FUNCTION() local
342 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
344 RETURN_DOUBLE(tan(num)); in PHP_FUNCTION()
351 double num; in PHP_FUNCTION() local
354 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
356 RETURN_DOUBLE(asin(num)); in PHP_FUNCTION()
363 double num; in PHP_FUNCTION() local
366 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
368 RETURN_DOUBLE(acos(num)); in PHP_FUNCTION()
375 double num; in PHP_FUNCTION() local
378 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
380 RETURN_DOUBLE(atan(num)); in PHP_FUNCTION()
400 double num; in PHP_FUNCTION() local
403 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
405 RETURN_DOUBLE(sinh(num)); in PHP_FUNCTION()
412 double num; in PHP_FUNCTION() local
415 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
417 RETURN_DOUBLE(cosh(num)); in PHP_FUNCTION()
424 double num; in PHP_FUNCTION() local
427 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
429 RETURN_DOUBLE(tanh(num)); in PHP_FUNCTION()
436 double num; in PHP_FUNCTION() local
439 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
441 RETURN_DOUBLE(asinh(num)); in PHP_FUNCTION()
448 double num; in PHP_FUNCTION() local
451 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
453 RETURN_DOUBLE(acosh(num)); in PHP_FUNCTION()
460 double num; in PHP_FUNCTION() local
463 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
465 RETURN_DOUBLE(atanh(num)); in PHP_FUNCTION()
531 double num; in PHP_FUNCTION() local
534 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
537 RETURN_DOUBLE(exp(num)); in PHP_FUNCTION()
544 double num; in PHP_FUNCTION() local
547 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
550 RETURN_DOUBLE(expm1(num)); in PHP_FUNCTION()
557 double num; in PHP_FUNCTION() local
560 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
563 RETURN_DOUBLE(log1p(num)); in PHP_FUNCTION()
570 double num, base = 0; in PHP_FUNCTION() local
573 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
579 RETURN_DOUBLE(log(num)); in PHP_FUNCTION()
583 RETURN_DOUBLE(log2(num)); in PHP_FUNCTION()
587 RETURN_DOUBLE(log10(num)); in PHP_FUNCTION()
599 RETURN_DOUBLE(log(num) / log(base)); in PHP_FUNCTION()
606 double num; in PHP_FUNCTION() local
609 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
612 RETURN_DOUBLE(log10(num)); in PHP_FUNCTION()
619 double num; in PHP_FUNCTION() local
622 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
625 RETURN_DOUBLE(sqrt(num)); in PHP_FUNCTION()
674 zend_long num = 0, digit, onum; in _php_math_basetolong() local
696 onum = num; in _php_math_basetolong()
697 num = num * base + digit; in _php_math_basetolong()
698 if (num > onum) in _php_math_basetolong()
708 return num; in _php_math_basetolong()
718 zend_long num = 0; in _php_math_basetozval() local
765 if (num < cutoff || (num == cutoff && c <= cutlim)) { in _php_math_basetozval()
766 num = num * base + c; in _php_math_basetozval()
769 fnum = (double)num; in _php_math_basetozval()
785 ZVAL_LONG(ret, num); in _php_math_basetozval()
1133 double num; in PHP_FUNCTION() local
1140 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
1162 …RETURN_STR(_php_math_number_format_ex(num, dec_int, dec_point, dec_point_len, thousand_sep, thousa… in PHP_FUNCTION()