Home
last modified time | relevance | path

Searched refs:carry (Results 1 – 12 of 12) sorted by relevance

/PHP-7.3/ext/bcmath/libbcmath/src/
H A Ddiv.c53 int carry, value; local
67 carry = 0;
71 value = *nptr-- * digit + carry;
73 carry = value / BASE;
76 if (carry != 0) *rptr = carry;
95 unsigned int qdig, qguess, borrow, carry; in bc_divide() local
235 carry = 0; in bc_divide()
238 val = (int) *ptr1 + (int) *ptr2-- + carry; in bc_divide()
242 carry = 1; in bc_divide()
245 carry = 0; in bc_divide()
[all …]
H A Drecmul.c110 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 Ddoaddsub.c54 int carry, n1bytes, n2bytes; local
91 carry = 0;
94 *sumptr = *n1ptr-- + *n2ptr-- + carry;
97 carry = 1;
101 carry = 0;
112 *sumptr = *n1ptr-- + carry;
115 carry = 1;
119 carry = 0;
124 if (carry == 1)
/PHP-7.3/ext/intl/tests/
H A Duconverter_getstandards_basic.phpt15 assertTrue(array_reduce($standards, function($carry, $item) { return $carry && is_string($item); },…
/PHP-7.3/ext/standard/tests/array/
H A Dbug76778.phpt8 function ($carry, $item) {
/PHP-7.3/Zend/
H A Dzend_strtod.c677 carry = a;
698 if (carry) {
892 carry = 0;
899 *xc = carry;
908 carry = 0;
917 *xc = carry;
922 carry = 0;
940 carry = 0;
947 *xc = carry;
2218 carry = 0;
[all …]
H A Dzend_operators.c2361 int carry=0; in increment_string() local
2390 carry=1; in increment_string()
2393 carry=0; in increment_string()
2399 carry=1; in increment_string()
2402 carry=0; in increment_string()
2408 carry=1; in increment_string()
2411 carry=0; in increment_string()
2415 carry=0; in increment_string()
2418 if (carry == 0) { in increment_string()
2423 if (carry) { in increment_string()
/PHP-7.3/ext/hash/
H A Dhash_whirlpool.c284 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.3/sapi/phpdbg/
H A D.phpdbginit81 # Now carry on initializing phpdbg ...
/PHP-7.3/ext/gd/tests/
H A DRochester-Regular.otf.LICENSE.txt98 (b) You must cause any modified files to carry prominent notices
/PHP-7.3/ext/mbstring/libmbfl/
H A DLICENSE169 b) You must cause the files modified to carry prominent notices
/PHP-7.3/
H A DNEWS1838 . Fixed bug #75533 (array_reduce is slow when $carry is large array).

Completed in 45 milliseconds