/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
|
/external/llvm/test/CodeGen/X86/ |
setcc.ll | 4 ; Use sbb x, x to materialize carry bit in a GPR. The value is either
|
add.ll | 56 br i1 %obit, label %carry, label %normal 60 br label %carry 62 carry:
|
/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
|
/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;
|
udivmodti4.c | 231 su_int carry = 0; local 234 /* r:q = ((r:q) << 1) | carry */ 238 q.s.low = (q.s.low << 1) | carry; 239 /* carry = 0; 243 * carry = 1; 247 carry = s & 1; 250 q.all = (q.all << 1) | carry;
|
/external/webkit/Source/JavaScriptCore/wtf/ |
dtoa.cpp | 206 unsigned long long carry; local 208 uint32_t carry; 214 carry = a; 217 unsigned long long y = *x * (unsigned long long)m + carry; 218 carry = y >> 32; 222 uint32_t y = (xi & 0xffff) * m + carry; 224 carry = z >> 16; 229 if (carry) 230 b.append((uint32_t)carry); 344 unsigned long long carry, z local 346 uint32_t carry, z; local 1194 unsigned long long borrow, carry, y, ys; local 1196 uint32_t borrow, carry, y, ys; local [all...] |
/external/openssl/crypto/bn/asm/ |
s390x.S | 28 lghi %r8,0 // carry = 0 31 jz .Loop1_madd // carry is incidentally cleared if branch taken 32 algr zero,zero // clear carry 37 alcgr %r7,%r8 // +=carry 70 alcgr %r8,zero // collect carry bit 78 alcgr %r7,%r8 // +=carry 103 lghi %r8,0 // carry = 0 106 jz .Loop1_mul // carry is incidentally cleared if branch taken 107 algr zero,zero // clear carry 112 alcgr %r7,%r8 // +=carry [all...] |
bn-586.pl | 117 &paddq("mm1","mm3"); # carry += r[i] 118 &paddq("mm1","mm2"); # carry += a[i]*w 121 &psrlq("mm1",32); # carry = carry_high 146 &xor($c,$c); # clear carry 168 &adc("edx",0); # H(t)+=carry 170 &adc("edx",0); # H(t)+=carry 194 &adc("edx",0); # H(t)+=carry 196 &adc("edx",0); # H(t)+=carry 229 &pxor("mm1","mm1"); # mm1 = carry = 0 235 &paddq("mm1","mm2"); # carry += a[i]* [all...] |
armv4-mont.S | 117 subs r7,r7,r7 @ "clear" carry flag 122 teq r4,r0 @ preserve carry 124 sbcs r14,r14,#0 @ upmost carry
|
x86_64-mont.pl | 1038 my ($shift,$carry)=($a0,$a1); 1044 xor $carry,$carry 1050 mov $carry,24($tptr) # t[7] 1065 neg $carry # mov $carry,cf 1074 sbb $carry,$carry # mov cf,$carry 1082 neg $carry # mov $carry,c [all...] |
/external/wpa_supplicant_8/src/tls/ |
libtommath.c | 264 /* zero the carry */ 270 /* U = carry bit of T[i] */ 273 /* take away carry bit from T[i] */ 285 /* U = carry bit of T[i] */ 288 /* take away carry bit from T[i] */ 293 /* add carry */ 334 /* set carry to zero */ 340 /* U = carry bit of T[i] 342 * if a carry does occur it will propagate all the way to the 343 * MSB. As a result a single shift is enough to get the carry [all...] |
/external/webkit/Source/WebCore/html/ |
DateComponents.cpp | 244 int carry; local 248 carry = minute / 60; 251 carry = (59 - m_minute) / 60; 252 minute += carry * 60; 253 carry = -carry; 262 int hour = m_hour + carry; 264 carry = hour / 24; 267 carry = (23 - hour) / 24; 268 hour += carry * 24 [all...] |
/external/dropbear/libtommath/ |
bn_fast_s_mp_sqr.c | 76 /* double the inner product and add carry */ 87 /* make next carry */
|
bn_mp_montgomery_reduce.c | 69 /* set the carry to zero */ 78 /* get carry */
|
bn_mp_mul.c | 41 * digits won't affect carry propagation
|
/external/srtp/crypto/kernel/ |
key.c | 83 // carry 88 // no carry
|
/external/stressapptest/src/ |
pattern.h | 118 uint32 carry = (addition & crc) >> 31; local 120 return crc + addition + carry;
|
/external/guava/guava/src/com/google/common/collect/ |
BstNodeFactory.java | 24 * <p>Typically, nodes will carry more information than the fields in the {@link BstNode} class,
|
/external/kernel-headers/original/linux/ |
rpmsg_omx.h | 51 * @OMX_CONN_REQ: a connection request message type. the message should carry 56 * @OMX_CONN_RSP: a response to a connection request. the message will carry 58 * the addr field will carry the address of the newly created OMX instance.
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/ |
FwdLockFile.c | 225 unsigned char carry = 0; local 229 pCounter[i] = part + carry; 230 carry = (part < pNonce[i] || pCounter[i] < part) ? 1 : 0; 233 pCounter[i] = pNonce[i] + carry; 234 carry = (pCounter[i] < pNonce[i]) ? 1 : 0;
|
/external/chromium/base/third_party/dmg_fp/ |
dtoa.cc | 613 ULLong carry, y; variable 615 ULong carry, *x, y; variable 625 carry = a; 628 y = *x * (ULLong)m + carry; 629 carry = y >> 32; 634 y = (xi & 0xffff) * m + carry; 636 carry = z >> 16; 639 y = *x * m + carry; 640 carry = y >> 16; 646 if (carry) { 808 ULLong carry, z; variable 810 ULong carry, z; variable 2116 ULLong borrow, carry, y, ys; variable 2118 ULong borrow, carry, y, ys; variable [all...] |
/external/llvm/lib/Target/MBlaze/ |
MBlazeRegisterInfo.td | 102 // The carry bit. In the Microblaze this is really bit 29 of the 105 def CARRY : MBlazeSPRReg<0x0000, "rmsr[c]">; 146 def CRC : RegisterClass<"MBlaze", [i32], 32, (add CARRY)> {
|
/external/icu4c/i18n/ |
decNumber.c | 4914 uInt carry; \/* carry (NB not uLong) *\/ local 6384 eInt carry=0; \/* carry integer (could be Long) *\/ local [all...] |