Searched refs:carry (Results 1 – 12 of 12) sorted by relevance
/PHP-7.4/ext/bcmath/libbcmath/src/ |
H A D | div.c | 52 int carry, value; local 66 carry = 0; 70 value = *nptr-- * digit + carry; 72 carry = value / BASE; 75 if (carry != 0) *rptr = carry; 94 unsigned int qdig, qguess, borrow, carry; in bc_divide() local 234 carry = 0; in bc_divide() 237 val = (int) *ptr1 + (int) *ptr2-- + carry; in bc_divide() 241 carry = 1; in bc_divide() 244 carry = 0; in bc_divide() [all …]
|
H A D | recmul.c | 110 int count, carry; in _bc_shift_addsub() local 121 carry = 0; in _bc_shift_addsub() 128 carry = 1; in _bc_shift_addsub() 131 carry = 0; in _bc_shift_addsub() 135 while (carry) { in _bc_shift_addsub() 136 *accp -= carry; in _bc_shift_addsub() 140 carry = 0; in _bc_shift_addsub() 147 carry = 1; in _bc_shift_addsub() 150 carry = 0; in _bc_shift_addsub() 154 while (carry) { in _bc_shift_addsub() [all …]
|
H A D | doaddsub.c | 53 int carry, n1bytes, n2bytes; local 90 carry = 0; 93 *sumptr = *n1ptr-- + *n2ptr-- + carry; 96 carry = 1; 100 carry = 0; 111 *sumptr = *n1ptr-- + carry; 114 carry = 1; 118 carry = 0; 123 if (carry == 1)
|
/PHP-7.4/ext/intl/tests/ |
H A D | uconverter_getstandards_basic.phpt | 15 assertTrue(array_reduce($standards, function($carry, $item) { return $carry && is_string($item); },…
|
/PHP-7.4/ext/standard/tests/array/ |
H A D | bug76778.phpt | 8 function ($carry, $item) {
|
/PHP-7.4/Zend/ |
H A D | zend_strtod.c | 680 carry = a; 701 if (carry) { 895 carry = 0; 902 *xc = carry; 911 carry = 0; 920 *xc = carry; 925 carry = 0; 943 carry = 0; 950 *xc = carry; 2221 carry = 0; [all …]
|
H A D | zend_operators.c | 2372 int carry=0; in increment_string() local 2401 carry=1; in increment_string() 2404 carry=0; in increment_string() 2410 carry=1; in increment_string() 2413 carry=0; in increment_string() 2419 carry=1; in increment_string() 2422 carry=0; in increment_string() 2426 carry=0; in increment_string() 2429 if (carry == 0) { in increment_string() 2434 if (carry) { in increment_string()
|
/PHP-7.4/ext/hash/ |
H A D | hash_whirlpool.c | 284 uint32_t b, carry; in PHP_WHIRLPOOLUpdate() local 291 for (i = 31, carry = 0; i >= 0 && (carry != 0 || value != L64(0)); i--) { in PHP_WHIRLPOOLUpdate() 292 carry += bitLength[i] + ((uint32_t)value & 0xff); in PHP_WHIRLPOOLUpdate() 293 bitLength[i] = (unsigned char)carry; in PHP_WHIRLPOOLUpdate() 294 carry >>= 8; in PHP_WHIRLPOOLUpdate()
|
/PHP-7.4/sapi/phpdbg/ |
H A D | .phpdbginit | 81 # Now carry on initializing phpdbg ...
|
/PHP-7.4/ext/gd/tests/ |
H A D | Rochester-Regular.otf.LICENSE.txt | 98 (b) You must cause any modified files to carry prominent notices
|
/PHP-7.4/ext/mbstring/libmbfl/ |
H A D | LICENSE | 169 b) You must cause the files modified to carry prominent notices
|
/PHP-7.4/ext/bcmath/libbcmath/ |
H A D | LICENSE | 172 b) You must cause the files modified to carry prominent notices
|
Completed in 57 milliseconds