HomeSort by relevance Sort by last modified time
    Searched full:carry (Results 26 - 50 of 1679) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/asm-mips/
checksum.h 106 int carry; local
110 carry = (csum < word[1]);
111 csum += carry;
114 carry = (csum < word[2]);
115 csum += carry;
118 carry = (csum < word[3]);
119 csum += carry;
124 carry = (csum < *word);
125 csum += carry;
251 " addu %0, $1 # Add final carry\n
    [all...]
  /external/openssl/crypto/bn/
bn_add.c 108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
130 carry=bn_add_words(rp,ap,bp,min);
135 if (carry)
145 carry=0;
149 if (carry)
151 /* carry != 0 => dif == 0 */
170 int i,carry; local
195 carry=0;
200 if (carry)
202 carry=(t1 <= t2)
    [all...]
  /external/valgrind/main/none/tests/s390x/
cksm.c 69 easy to see whether there was a carry-out. */
72 /* If there was a carry-out, add 1 to the sum. */
102 /* If there was a carry-out, add 1 to the sum. */
185 /* Add one word to an initial sum; no carry */
193 /* Add one word to an initial sum; with carry */
201 /* Add 15 words to an initial sum; no carry */
223 /* Add some words such that every addition generates a carry.
247 /* Add 1 byte; no carry */
255 /* Add 1 byte; carry */
263 /* Add 2 bytes; no carry */
    [all...]
  /external/dropbear/libtommath/
bn_s_mp_mul_high_digs.c 46 /* clear the carry */
67 /* carry the carry */
bn_fast_mp_montgomery_reduce.c 73 * that W[ix-1] have the carry cleared (see after the inner loop)
85 * inner loop In this case we fix the carry from the previous
88 * handled by fixing up one carry after the inner loop. The
89 * carry fixups are done in order so after these loops the
109 /* now fix carry for next digit, W[ix+1] */
126 /* alias for next word, where the carry goes */
bn_fast_s_mp_mul_digs.c 50 /* clear the carry */
79 /* make next carry */
91 /* now extract the previous digit [below the carry] */
bn_fast_s_mp_mul_high_digs.c 69 /* make next carry */
82 /* now extract the previous digit [below the carry] */
bn_mp_add_d.c 64 * the carry.
76 /* set final carry */
bn_mp_dr_reduce.c 60 /* set carry to zero */
70 /* set final carry */
bn_s_mp_sqr.c 43 /* get the carry */
64 /* get carry */
  /external/openssl/crypto/bn/asm/x86/
mul.pl 19 &xor($c,$c); # clear carry
38 &adc("edx",0); # H(t)+=carry
65 &adc("edx",0); # H(t)+=carry
  /external/v8/src/
bignum.cc 189 // In both cases we might need a carry bigit.
192 Chunk carry = 0; local
196 Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry;
198 carry = sum >> kBigitSize;
202 while (carry != 0) {
203 Chunk sum = bigits_[bigit_pos] + carry;
205 carry = sum >> kBigitSize;
258 // Assert that this number + 1 (for the carry) fits into double chunk.
260 DoubleChunk carry = 0; local
262 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry;
    [all...]
  /external/llvm/test/CodeGen/ARM/
carry.ll 23 ; add with live carry
33 ; ch == carry bit
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
MessageProtocol.java 60 private Byte carry; field in class:MessageProtocol
114 // If we have a left over carry then we need to
116 if( carry != null ) {
117 byte high = carry;
121 carry = null;
130 carry = buffer.get();
  /external/srec/srec/cfront/
himul32.h 128 asr_uint32_t oldlo, carry;
165 // Note that folding mid into lo can cause a carry. An old trick
166 // for portable carry-detection applies: if a and b are unsigned,
173 carry = lo < oldlo;
175 hi += carry + (mid >> 16);
181 // complement and adding 1. So there's a carry out of the low
  /external/llvm/lib/Support/
APInt.cpp 180 /// 1 is returned if there is a carry out, otherwise 0 is returned.
181 /// @returns the carry of the addition.
186 y = 1; // Carry one to next digit.
188 y = 0; // No need to carry so exit early
235 /// @returns the carry out from the addition
239 bool carry = false; local
242 dest[i] = x[i] + y[i] + carry;
243 carry = dest[i] < limit || (carry && dest[i] == limit);
245 return carry;
294 uint64_t carry = 0; local
330 uint64_t carry = 0, lx = 0, hx = 0; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-omac1.c 18 int i, carry; local
20 carry = pad[0] & 0x80;
24 if (carry)
  /external/openssl/crypto/modes/
xts128.c 102 unsigned int carry,res; local
105 carry = (unsigned int)(tweak.u[0]>>63);
107 tweak.u[1] = (tweak.u[1]<<1)|carry;
138 unsigned int carry,res; local
141 carry = (unsigned int)(tweak.u[0]>>63);
143 tweak1.u[1] = (tweak.u[1]<<1)|carry;
  /libcore/luni/src/main/java/java/math/
BitLevel.java 76 // this digit absorbs the carry
115 int carry = 0; local
118 result[i] = (val << 1) | carry;
119 carry = val >>> 31;
121 if(carry != 0) {
122 result[srcLen] = carry;
  /external/kernel-headers/original/asm-x86/
processor-flags.h 8 #define X86_EFLAGS_CF 0x00000001 /* Carry Flag */
10 #define X86_EFLAGS_AF 0x00000010 /* Auxillary carry Flag */
  /external/llvm/test/CodeGen/Generic/
add-with-overflow-24.ll 29 br i1 %obit, label %carry, label %normal
35 carry:
  /external/llvm/test/CodeGen/X86/
sub-with-overflow.ll 31 br i1 %obit, label %carry, label %normal
37 carry:
  /external/kernel-headers/original/linux/
debug_locks.h 15 * In the debug case we carry the caller's instruction pointer into
  /external/liblzf/
LICENSE 24 Alternatively, the following files carry an additional notice that
NOTICE 24 Alternatively, the following files carry an additional notice that

Completed in 1693 milliseconds

12 3 4 5 6 7 8 91011>>