Lines Matching refs:num
319 double num; in PHP_FUNCTION() local
322 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
324 RETURN_DOUBLE(sin(num)); in PHP_FUNCTION()
331 double num; in PHP_FUNCTION() local
334 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
336 RETURN_DOUBLE(cos(num)); in PHP_FUNCTION()
343 double num; in PHP_FUNCTION() local
346 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
348 RETURN_DOUBLE(tan(num)); in PHP_FUNCTION()
355 double num; in PHP_FUNCTION() local
358 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
360 RETURN_DOUBLE(asin(num)); in PHP_FUNCTION()
367 double num; in PHP_FUNCTION() local
370 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
372 RETURN_DOUBLE(acos(num)); in PHP_FUNCTION()
379 double num; in PHP_FUNCTION() local
382 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
384 RETURN_DOUBLE(atan(num)); in PHP_FUNCTION()
404 double num; in PHP_FUNCTION() local
407 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
409 RETURN_DOUBLE(sinh(num)); in PHP_FUNCTION()
416 double num; in PHP_FUNCTION() local
419 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
421 RETURN_DOUBLE(cosh(num)); in PHP_FUNCTION()
428 double num; in PHP_FUNCTION() local
431 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
433 RETURN_DOUBLE(tanh(num)); in PHP_FUNCTION()
440 double num; in PHP_FUNCTION() local
443 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
445 RETURN_DOUBLE(asinh(num)); in PHP_FUNCTION()
452 double num; in PHP_FUNCTION() local
455 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
457 RETURN_DOUBLE(acosh(num)); in PHP_FUNCTION()
464 double num; in PHP_FUNCTION() local
467 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
469 RETURN_DOUBLE(atanh(num)); in PHP_FUNCTION()
535 double num; in PHP_FUNCTION() local
538 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
541 RETURN_DOUBLE(exp(num)); in PHP_FUNCTION()
548 double num; in PHP_FUNCTION() local
551 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
554 RETURN_DOUBLE(expm1(num)); in PHP_FUNCTION()
561 double num; in PHP_FUNCTION() local
564 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
567 RETURN_DOUBLE(log1p(num)); in PHP_FUNCTION()
574 double num, base = 0; in PHP_FUNCTION() local
577 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
583 RETURN_DOUBLE(log(num)); in PHP_FUNCTION()
587 RETURN_DOUBLE(log2(num)); in PHP_FUNCTION()
591 RETURN_DOUBLE(log10(num)); in PHP_FUNCTION()
603 RETURN_DOUBLE(log(num) / log(base)); in PHP_FUNCTION()
610 double num; in PHP_FUNCTION() local
613 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
616 RETURN_DOUBLE(log10(num)); in PHP_FUNCTION()
623 double num; in PHP_FUNCTION() local
626 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
629 RETURN_DOUBLE(sqrt(num)); in PHP_FUNCTION()
678 zend_long num = 0, digit, onum; in _php_math_basetolong() local
700 onum = num; in _php_math_basetolong()
701 num = num * base + digit; in _php_math_basetolong()
702 if (num > onum) in _php_math_basetolong()
712 return num; in _php_math_basetolong()
722 zend_long num = 0; in _php_math_basetozval() local
769 if (num < cutoff || (num == cutoff && c <= cutlim)) { in _php_math_basetozval()
770 num = num * base + c; in _php_math_basetozval()
773 fnum = (double)num; in _php_math_basetozval()
789 ZVAL_LONG(ret, num); in _php_math_basetozval()
1137 double num; in PHP_FUNCTION() local
1143 Z_PARAM_DOUBLE(num) in PHP_FUNCTION()
1159 …RETURN_STR(_php_math_number_format_ex(num, (int)dec, dec_point, dec_point_len, thousand_sep, thous… in PHP_FUNCTION()