Home
last modified time | relevance | path

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

/PHP-5.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
238 carry = 0; in bc_divide()
241 val = (int) *ptr1 + (int) *ptr2-- + carry; in bc_divide()
245 carry = 1; in bc_divide()
248 carry = 0; in bc_divide()
[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)
H A Drecmul.c119 int count, carry; in _bc_shift_addsub() local
130 carry = 0; in _bc_shift_addsub()
137 carry = 1; in _bc_shift_addsub()
140 carry = 0; in _bc_shift_addsub()
144 while (carry) { in _bc_shift_addsub()
145 *accp -= carry; in _bc_shift_addsub()
149 carry = 0; in _bc_shift_addsub()
156 carry = 1; in _bc_shift_addsub()
159 carry = 0; in _bc_shift_addsub()
163 while (carry) { in _bc_shift_addsub()
[all …]
/PHP-5.3/ext/hash/
H A Dhash_whirlpool.c286 php_hash_uint32 b, carry; in PHP_WHIRLPOOLUpdate() local
293 for (i = 31, carry = 0; i >= 0 && (carry != 0 || value != L64(0)); i--) { in PHP_WHIRLPOOLUpdate()
294 carry += bitLength[i] + ((php_hash_uint32)value & 0xff); in PHP_WHIRLPOOLUpdate()
295 bitLength[i] = (unsigned char)carry; in PHP_WHIRLPOOLUpdate()
296 carry >>= 8; in PHP_WHIRLPOOLUpdate()
/PHP-5.3/Zend/
H A Dzend_strtod.c675 ULong carry, y, z; in mult() local
707 carry = 0; in mult()
710 carry = z >> 16; in mult()
716 *xc = carry; in mult()
721 carry = 0; in mult()
725 carry = z >> 16; in mult()
739 carry = 0; in mult()
742 carry = z >> 16; in mult()
746 *xc = carry; in mult()
1312 carry = 0; in quorem()
[all …]
H A Dzend_operators.c1683 int carry=0; in increment_string() local
1702 carry=1; in increment_string()
1705 carry=0; in increment_string()
1711 carry=1; in increment_string()
1714 carry=0; in increment_string()
1720 carry=1; in increment_string()
1723 carry=0; in increment_string()
1727 carry=0; in increment_string()
1730 if (carry == 0) { in increment_string()
1736 if (carry) { in increment_string()
/PHP-5.3/ext/mbstring/libmbfl/
H A DLICENSE169 b) You must cause the files modified to carry prominent notices
/PHP-5.3/ext/pcre/pcrelib/
H A DChangeLog4151 0 => success, carry on matching
/PHP-5.3/ext/pcre/pcrelib/doc/
H A Dpcre.txt5637 do carry on into subsequent branches within the same subpattern. For

Completed in 62 milliseconds