Home
last modified time | relevance | path

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

/PHP-5.5/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.5/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.5/Zend/
H A Dzend_strtod.c674 ULong carry, y, z; in mult() local
706 carry = 0; in mult()
709 carry = z >> 16; in mult()
715 *xc = carry; in mult()
720 carry = 0; in mult()
724 carry = z >> 16; in mult()
738 carry = 0; in mult()
741 carry = z >> 16; in mult()
745 *xc = carry; in mult()
1311 carry = 0; in quorem()
[all …]
H A Dzend_operators.c1780 int carry=0; in increment_string() local
1805 carry=1; in increment_string()
1808 carry=0; in increment_string()
1814 carry=1; in increment_string()
1817 carry=0; in increment_string()
1823 carry=1; in increment_string()
1826 carry=0; in increment_string()
1830 carry=0; in increment_string()
1833 if (carry == 0) { in increment_string()
1839 if (carry) { in increment_string()
/PHP-5.5/ext/mbstring/libmbfl/
H A DLICENSE169 b) You must cause the files modified to carry prominent notices
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog5088 0 => success, carry on matching
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt6017 do carry on into subsequent branches within the same subpattern. For

Completed in 112 milliseconds