Lines Matching defs:carry
127 * carry 1 into the next limb. Else the carry is 0.
153 unsigned int carry = bytes >> bc->bc_key->data_unit_size_bits;
156 if (bc->bc_dun[i] + carry != next_dun[i])
160 * carry 1 into the next limb. Else the carry is 0.
162 if ((bc->bc_dun[i] + carry) < carry)
163 carry = 1;
165 carry = 0;
169 return carry == 0;