Lines Matching refs:carry
135 * carry 1 into the next limb. Else the carry is 0.
161 unsigned int carry = bytes >> bc->bc_key->data_unit_size_bits;
164 if (bc->bc_dun[i] + carry != next_dun[i])
168 * carry 1 into the next limb. Else the carry is 0.
170 if ((bc->bc_dun[i] + carry) < carry)
171 carry = 1;
173 carry = 0;
177 return carry == 0;