/external/compiler-rt/lib/ |
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/chromium_org/third_party/openssl/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
|
/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
|
/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/chromium_org/third_party/WebKit/Source/core/platform/ |
DateComponents.cpp | 244 int carry; local 248 carry = minute / 60; 251 carry = (59 - 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;
|
/art/compiler/dex/ |
compiler_enums.h | 201 kCondCs, // carry set (unsigned less than) 203 kCondCc, // carry clear (unsigned greater than or same) 249 kX86CondC = kX86CondB, // carry 253 kX86CondNc = kX86CondNb, // not-carry
|
/external/chromium_org/build/mac/ |
verify_no_objc.sh | 20 # to carry this section around. Not linking them as Objective-C when they
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
tab_strip_drag_controller.h | 17 // This protocol is used to carry mouse events to the TabStripDragController,
|
/external/chromium_org/content/browser/renderer_host/ |
ui_events_helper.h | 34 // WebTouchEvent. All the ui::TouchEvent in the list will carry the same
|
/external/chromium_org/ppapi/thunk/ |
ppb_file_ref_api.h | 60 // (the contained resource does not carry a ref on behalf of the caller).
|
/external/chromium_org/ui/base/keycodes/ |
keyboard_code_conversion.h | 27 // keyboard, a special native event object should be introduced to carry extra
|
/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.
|
/external/llvm/test/CodeGen/X86/ |
add.ll | 56 br i1 %obit, label %carry, label %normal 60 br label %carry 62 carry:
|
/external/llvm/unittests/ADT/ |
APIntTest.cpp | 541 integerPart carry = APInt::tcDecrement(&singleWord, 1); local 542 EXPECT_EQ(carry, integerPart(0)); 549 integerPart carry = APInt::tcDecrement(&singleWord, 1); local 550 EXPECT_EQ(carry, integerPart(1)); 568 integerPart carry = APInt::tcDecrement(test, 4); local 569 EXPECT_EQ(carry, integerPart(0)); 577 integerPart carry = APInt::tcDecrement(test, 4); local 578 EXPECT_EQ(carry, integerPart(0)); 586 integerPart carry = APInt::tcDecrement(test, 4); local 587 EXPECT_EQ(carry, integerPart(0)) 595 integerPart carry = APInt::tcDecrement(test, 4); local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
bitvect.c | 1816 boolean carry; local 1927 boolean carry; local 2499 boolean carry = TRUE; local 2518 boolean carry = TRUE; local 2616 boolean carry = TRUE; local 2623 boolean carry = TRUE; local 2632 boolean carry = TRUE; local 2688 boolean carry; local 3033 boolean carry; local [all...] |