HomeSort by relevance Sort by last modified time
    Searched full:carry (Results 51 - 75 of 2018) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/dropbear/libtommath/
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/wpa_supplicant_8/src/crypto/
aes-omac1.c 18 int i, carry; local
20 carry = pad[0] & 0x80;
24 if (carry)
  /external/chromium_org/third_party/openssl/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;
  /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/
i128-mul.ll 27 %carry.013 = phi i64 [ %conv6, %for.body ], [ 0, %entry ]
33 %conv3 = zext i64 %carry.013 to i128
sub-with-overflow.ll 31 br i1 %obit, label %carry, label %normal
37 carry:
setcc.ll 4 ; Use sbb x, x to materialize carry bit in a GPR. The value is either
  /external/chromium_org/third_party/WebKit/ManualTests/autocorrection/
remove-misspelling-marker-after-appending-letter.html 24 // Now the word "brough" should carry misspelling marker.
  /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
  /external/llvm/test/CodeGen/ARM/
2012-03-26-FoldImmBug.ll 21 ; Note the adds.w may not set the carry flag even if the original sequence
  /frameworks/av/include/media/stagefright/
NativeWindowWrapper.h 26 // base classes, in order to carry it in AMessages, we'll temporarily wrap it
  /hardware/qcom/bt/libbt-vendor/include/
userial_vendor.h 48 /*hci cmd/event packet is required to carry the Packet indicator for UART interfaces only
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_loadtk.py 31 # doesn't actually carry through to the process level
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_loadtk.py 31 # doesn't actually carry through to the process level
  /external/compiler-rt/lib/
udivmoddi4.c 228 su_int carry = 0; local
231 /* r:q = ((r:q) << 1) | carry */
235 q.s.low = (q.s.low << 1) | carry;
236 /* carry = 0;
240 * carry = 1;
244 carry = s & 1;
247 q.all = (q.all << 1) | carry;

Completed in 482 milliseconds

1 23 4 5 6 7 8 91011>>