Lines Matching refs:first

165 	bc_num first = NULL, second = NULL, result = NULL;  in PHP_FUNCTION()  local
186 if (php_str2num(&first, left) == FAILURE) { in PHP_FUNCTION()
196 result = bc_add (first, second, scale); in PHP_FUNCTION()
201 bc_free_num(&first); in PHP_FUNCTION()
215 bc_num first = NULL, second = NULL, result = NULL; in PHP_FUNCTION() local
236 if (php_str2num(&first, left) == FAILURE) { in PHP_FUNCTION()
246 result = bc_sub (first, second, scale); in PHP_FUNCTION()
251 bc_free_num(&first); in PHP_FUNCTION()
265 bc_num first = NULL, second = NULL, result = NULL; in PHP_FUNCTION() local
286 if (php_str2num(&first, left) == FAILURE) { in PHP_FUNCTION()
296 result = bc_multiply (first, second, scale); in PHP_FUNCTION()
301 bc_free_num(&first); in PHP_FUNCTION()
315 bc_num first = NULL, second = NULL, result; in PHP_FUNCTION() local
338 if (php_str2num(&first, left) == FAILURE) { in PHP_FUNCTION()
348 if (!bc_divide(first, second, &result, scale)) { in PHP_FUNCTION()
356 bc_free_num(&first); in PHP_FUNCTION()
370 bc_num first = NULL, second = NULL, result; in PHP_FUNCTION() local
393 if (php_str2num(&first, left) == FAILURE) { in PHP_FUNCTION()
403 if (!bc_modulo(first, second, &result, scale)) { in PHP_FUNCTION()
411 bc_free_num(&first); in PHP_FUNCTION()
503 bc_num first = NULL, bc_exponent = NULL, result; in PHP_FUNCTION() local
526 if (php_str2num(&first, base_str) == FAILURE) { in PHP_FUNCTION()
547 bc_raise(first, exponent, &result, scale); in PHP_FUNCTION()
552 bc_free_num(&first); in PHP_FUNCTION()
610 bc_num first = NULL, second = NULL; in PHP_FUNCTION() local
631 if (!bc_str2num(&first, ZSTR_VAL(left), ZSTR_VAL(left) + ZSTR_LEN(left), scale, false)) { in PHP_FUNCTION()
641 RETVAL_LONG(bc_compare(first, second)); in PHP_FUNCTION()
644 bc_free_num(&first); in PHP_FUNCTION()