Lines Matching refs:num
418 double num; in PHP_FUNCTION() local
421 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
423 RETURN_DOUBLE(sin(num)); in PHP_FUNCTION()
431 double num; in PHP_FUNCTION() local
434 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
436 RETURN_DOUBLE(cos(num)); in PHP_FUNCTION()
444 double num; in PHP_FUNCTION() local
447 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
449 RETURN_DOUBLE(tan(num)); in PHP_FUNCTION()
457 double num; in PHP_FUNCTION() local
460 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
462 RETURN_DOUBLE(asin(num)); in PHP_FUNCTION()
470 double num; in PHP_FUNCTION() local
473 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
475 RETURN_DOUBLE(acos(num)); in PHP_FUNCTION()
483 double num; in PHP_FUNCTION() local
486 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
488 RETURN_DOUBLE(atan(num)); in PHP_FUNCTION()
510 double num; in PHP_FUNCTION() local
513 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
515 RETURN_DOUBLE(sinh(num)); in PHP_FUNCTION()
523 double num; in PHP_FUNCTION() local
526 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
528 RETURN_DOUBLE(cosh(num)); in PHP_FUNCTION()
536 double num; in PHP_FUNCTION() local
539 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
541 RETURN_DOUBLE(tanh(num)); in PHP_FUNCTION()
549 double num; in PHP_FUNCTION() local
552 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
554 RETURN_DOUBLE(php_asinh(num)); in PHP_FUNCTION()
562 double num; in PHP_FUNCTION() local
565 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
567 RETURN_DOUBLE(php_acosh(num)); in PHP_FUNCTION()
575 double num; in PHP_FUNCTION() local
578 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
580 RETURN_DOUBLE(php_atanh(num)); in PHP_FUNCTION()
649 double num; in PHP_FUNCTION() local
652 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
655 RETURN_DOUBLE(exp(num)); in PHP_FUNCTION()
667 double num; in PHP_FUNCTION() local
670 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
673 RETURN_DOUBLE(php_expm1(num)); in PHP_FUNCTION()
685 double num; in PHP_FUNCTION() local
688 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
691 RETURN_DOUBLE(php_log1p(num)); in PHP_FUNCTION()
699 double num, base = 0; in PHP_FUNCTION() local
702 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
708 RETURN_DOUBLE(log(num)); in PHP_FUNCTION()
713 RETURN_DOUBLE(log2(num)); in PHP_FUNCTION()
718 RETURN_DOUBLE(log10(num)); in PHP_FUNCTION()
730 RETURN_DOUBLE(log(num) / log(base)); in PHP_FUNCTION()
738 double num; in PHP_FUNCTION() local
741 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
744 RETURN_DOUBLE(log10(num)); in PHP_FUNCTION()
752 double num; in PHP_FUNCTION() local
755 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
758 RETURN_DOUBLE(sqrt(num)); in PHP_FUNCTION()
816 zend_long num = 0, digit, onum; in _php_math_basetolong() local
838 onum = num; in _php_math_basetolong()
839 num = num * base + digit; in _php_math_basetolong()
840 if (num > onum) in _php_math_basetolong()
850 return num; in _php_math_basetolong()
860 zend_long num = 0; in _php_math_basetozval() local
895 if (num < cutoff || (num == cutoff && c <= cutlim)) { in _php_math_basetozval()
896 num = num * base + c; in _php_math_basetozval()
899 fnum = (double)num; in _php_math_basetozval()
911 ZVAL_LONG(ret, num); in _php_math_basetozval()
1236 double num; in PHP_FUNCTION() local
1243 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
1252 RETURN_STR(_php_math_number_format(num, 0, dec_point_chr, thousand_sep_chr)); in PHP_FUNCTION()
1255 RETURN_STR(_php_math_number_format(num, (int)dec, dec_point_chr, thousand_sep_chr)); in PHP_FUNCTION()
1268 RETVAL_STR(_php_math_number_format_ex(num, (int)dec, in PHP_FUNCTION()