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

1 23 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafUtil.java 70 boolean carry = false;
75 if (k.testBit(pos) == carry)
84 if (carry)
89 carry = (digit & sign) != 0;
90 if (carry)
214 boolean carry = false;
219 if (k.testBit(pos) == carry)
228 if (carry)
233 carry = (digit & sign) != 0;
234 if (carry)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 164 unsigned long long carry; local
166 uint32_t carry;
172 carry = a;
175 unsigned long long y = *x * (unsigned long long)m + carry;
176 carry = y >> 32;
180 uint32_t y = (xi & 0xffff) * m + carry;
182 carry = z >> 16;
187 if (carry)
188 b.append((uint32_t)carry);
283 unsigned long long carry, z local
285 uint32_t carry, z; local
614 unsigned long long borrow, carry, y, ys; local
616 uint32_t borrow, carry, y, ys; local
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 181 /// 1 is returned if there is a carry out, otherwise 0 is returned.
182 /// @returns the carry of the addition.
187 y = 1; // Carry one to next digit.
189 y = 0; // No need to carry so exit early
236 /// @returns the carry out from the addition
240 bool carry = false; local
243 dest[i] = x[i] + y[i] + carry;
244 carry = dest[i] < limit || (carry && dest[i] == limit);
246 return carry;
295 uint64_t carry = 0; local
331 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/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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/
processor-flags.h 8 #define X86_EFLAGS_CF 0x00000001 /* Carry Flag */
10 #define X86_EFLAGS_AF 0x00000010 /* Auxillary carry Flag */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
processor-flags.h 8 #define X86_EFLAGS_CF 0x00000001 /* Carry Flag */
10 #define X86_EFLAGS_AF 0x00000010 /* Auxillary carry Flag */
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/res/values/
base-strings.xml 23 This application allows two Android devices to carry out two-way text chat over
  /development/samples/browseable/BluetoothChat/res/values/
base-strings.xml 23 This application allows two Android devices to carry out two-way text chat over
  /external/chromium_org/media/base/
text_cue.h 16 // A text buffer to carry the components of a text track cue.
  /external/chromium_org/ppapi/thunk/
ppb_file_ref_api.h 46 // (the contained resource does not carry a ref on behalf of the caller).
  /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/chromium_org/third_party/harfbuzz-ng/src/
hb-shape-plan-private.hh 41 hb_face_t *face_unsafe; /* We don't carry a reference to face. */
  /external/clang/test/CodeGenCXX/
debug-info-template-fwd.cpp 25 // Base<int> was never emitted so we ignore it and carry on until we
  /external/harfbuzz_ng/src/
hb-shape-plan-private.hh 41 hb_face_t *face_unsafe; /* We don't carry a reference to face. */
  /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

Completed in 1417 milliseconds

1 23 4 5 6 7 8 91011>>