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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/timeline/
timeline_data.py 6 """ Subclasses of TimelineData carry timeline data from a source
  /external/chromium_org/third_party/smhasher/src/
PMurHash.c 39 the caller a carry containing up to 3 bytes that we were unable to process.
40 This carry also needs to record the number of bytes the carry holds. I use
41 the low 2 bits as a count (0..3) and the carry bytes are shifted into the
161 /* Append unaligned bytes to carry, forcing hash churn if we have 4 bytes */
162 /* cnt=bytes to process, h1=name of h1 var, c=carry, n=bytes in c, ptr/len=payload */
176 /* Main hashing function. Initialise carry to 0 and h1 to 0 or an initial seed
186 /* Extract carry count from low 2 bits of c value */
192 /* Consume any carry bytes */
214 /* We're now aligned. Process in aligned blocks. Specialise for each possible carry count *
288 uint32_t h1=seed, carry=0; local
298 uint32_t h1=seed, carry=0; local
    [all...]
  /external/valgrind/main/VEX/switchback/
test_emfloat.c 531 static void Add16Bits(u16 *carry,u16 *a,u16 b,u16 c);
533 static void ShiftMantLeft1(u16 *carry,u16 *mantissa);
534 static void ShiftMantRight1(u16 *carry,u16 *mantissa);
768 ** Add b, c, and carry. Retult in a. New carry in carry.
770 static void Add16Bits(u16 *carry,
779 ** the carry.
783 accum+=(u32)*carry;
784 *carry=(u16)((accum & 0x00010000) ? 1 : 0); /* New carry *
872 u16 carry; \/* Self-explanatory *\/ local
916 u16 carry; local
1075 u16 carry; local
1283 u16 carry; local
1445 u16 carry; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
misc.c 173 ULLong carry, y; local
175 ULong carry, *x, y; local
185 carry = a;
188 y = *x * (ULLong)m + carry;
189 carry = y >> 32;
194 y = (xi & 0xffff) * m + carry;
196 carry = z >> 16;
199 y = *x * m + carry;
200 carry = y >> 16;
206 if (carry) {
286 ULLong carry, z; local
288 ULong carry, z; local
    [all...]
  /external/llvm/test/CodeGen/Generic/
add-with-overflow-128.ll 14 br i1 %obit, label %carry, label %normal
20 carry:
  /external/llvm/test/CodeGen/X86/
umul-with-carry.ll 14 br i1 %obit, label %carry, label %normal
20 carry:
mul128_sext_loop.ll 15 %carry.02 = phi i128 [ 0, %.lr.ph ], [ %10, %3 ]
21 %8 = add nsw i128 %7, %carry.02
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
x86_cliptest.S 172 ADD_L( EBP, EBP ) /* ebp = abs(S(3))*2 ; carry = sign of S(3) */
175 ADD_L( EBX, EBX ) /* ebx = abs(S(2))*2 ; carry = sign of S(2) */
178 CMP_L( EBX, EBP ) /* carry = abs(S(2))*2 > abs(S(3))*2 */
183 ADD_L( EBX, EBX ) /* ebx = abs(S(1))*2 ; carry = sign of S(1) */
186 CMP_L( EBX, EBP ) /* carry = abs(S(1))*2 > abs(S(3))*2 */
191 ADD_L( EBX, EBX ) /* ebx = abs(S(0))*2 ; carry = sign of S(0) */
194 CMP_L( EBX, EBP ) /* carry = abs(S(0))*2 > abs(S(3))*2 */
338 ADD_L( EBP, EBP ) /* ebp = abs(S(3))*2 ; carry = sign of S(3) */
341 ADD_L( EBX, EBX ) /* ebx = abs(S(2))*2 ; carry = sign of S(2) */
344 CMP_L( EBX, EBP ) /* carry = abs(S(2))*2 > abs(S(3))*2 *
    [all...]
  /external/mesa3d/src/mesa/x86/
x86_cliptest.S 172 ADD_L( EBP, EBP ) /* ebp = abs(S(3))*2 ; carry = sign of S(3) */
175 ADD_L( EBX, EBX ) /* ebx = abs(S(2))*2 ; carry = sign of S(2) */
178 CMP_L( EBX, EBP ) /* carry = abs(S(2))*2 > abs(S(3))*2 */
183 ADD_L( EBX, EBX ) /* ebx = abs(S(1))*2 ; carry = sign of S(1) */
186 CMP_L( EBX, EBP ) /* carry = abs(S(1))*2 > abs(S(3))*2 */
191 ADD_L( EBX, EBX ) /* ebx = abs(S(0))*2 ; carry = sign of S(0) */
194 CMP_L( EBX, EBP ) /* carry = abs(S(0))*2 > abs(S(3))*2 */
338 ADD_L( EBP, EBP ) /* ebp = abs(S(3))*2 ; carry = sign of S(3) */
341 ADD_L( EBX, EBX ) /* ebx = abs(S(2))*2 ; carry = sign of S(2) */
344 CMP_L( EBX, EBP ) /* carry = abs(S(2))*2 > abs(S(3))*2 *
    [all...]
  /external/openssl/crypto/bn/asm/
ppc64-mont.pl 99 $carry="r0";
274 li $carry,0
504 add $t0,$t0,$carry ; can not overflow
509 srdi $carry,$t0,16
510 add $t1,$t1,$carry
511 srdi $carry,$t1,16
518 add $t2,$t2,$carry
521 srdi $carry,$t2,16
525 add $t3,$t3,$carry
526 srdi $carry,$t3,1
    [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/chromium_org/third_party/boringssl/src/crypto/bn/
add.c 104 BN_ULONG *ap, *bp, *rp, carry, t1, t2; local
126 carry = bn_add_words(rp, ap, bp, min);
131 if (carry) {
138 carry = 0;
142 if (carry) {
143 /* carry != 0 => dif == 0 */
262 int i, carry; local
282 carry = 0;
286 if (carry) {
287 carry = (t1 <= t2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/docs/source/cso/
dsa.rst 44 The operation to carry out if the stencil test fails. One of
47 The operation to carry out if the stencil test passes but the depth test
50 The operation to carry out if the stencil test and depth test both pass.
  /external/llvm/test/CodeGen/Thumb2/
thumb2-sbc.ll 60 define i64 @livecarry(i64 %carry, i32 %digit) nounwind {
61 %ch = lshr i64 %carry, 32
62 %cl = and i64 %carry, 4294967295
  /external/mesa3d/src/gallium/docs/source/cso/
dsa.rst 44 The operation to carry out if the stencil test fails. One of
47 The operation to carry out if the stencil test passes but the depth test
50 The operation to carry out if the stencil test and depth test both pass.
  /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/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum.cc 191 // In both cases we might need a carry bigit.
194 Chunk carry = 0; local
198 Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry;
200 carry = sum >> kBigitSize;
204 while (carry != 0) {
205 Chunk sum = bigits_[bigit_pos] + carry;
207 carry = sum >> kBigitSize;
260 // Assert that this number + 1 (for the carry) fits into double chunk.
262 DoubleChunk carry = 0; local
264 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry;
    [all...]
  /external/chromium_org/v8/src/
bignum.cc 168 // In both cases we might need a carry bigit.
171 Chunk carry = 0; local
175 Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry;
177 carry = sum >> kBigitSize;
181 while (carry != 0) {
182 Chunk sum = bigits_[bigit_pos] + carry;
184 carry = sum >> kBigitSize;
237 // Assert that this number + 1 (for the carry) fits into double chunk.
239 DoubleChunk carry = 0; local
241 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry;
    [all...]
  /system/core/libmincrypt/
p256_ec.c 191 /* felem_reduce_carry adds a multiple of p in order to cancel |carry|,
194 * On entry: carry < 2**3, inout[0,2,...] < 2**29, inout[1,3,...] < 2**28.
196 static void felem_reduce_carry(felem inout, limb carry) {
197 const u32 carry_mask = NON_ZERO_TO_ALL_ONES(carry);
199 inout[0] += carry << 1;
201 /* carry < 2**3 thus (carry << 11) < 2**14 and we added 2**28 in the
203 inout[3] -= carry << 11;
207 inout[6] -= carry << 22;
208 /* This may underflow if carry is non-zero but, if so, we'll fix it in th
219 limb carry = 0; local
257 limb carry = 0; local
298 limb tmp2[18], carry, x, xMask; local
675 limb carry = 0; local
702 limb carry = 0, next_carry; local
733 limb carry = 0, next_carry; local
762 limb carry; local
    [all...]
  /ndk/sources/android/support/src/wcstox/
floatscan.c 200 uint32_t carry = 0; local
203 x[k] = x[k]/p10 + carry;
204 carry = 1000000000/p10 * tmp;
210 if (carry) x[z++] = carry;
216 uint32_t carry = 0; local
219 uint64_t tmp = ((uint64_t)x[k] << 29) + carry;
221 carry = tmp / 1000000000;
224 carry = 0;
230 if (carry) {
243 uint32_t carry = 0; local
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
entenc.c 72 /*Outputs a symbol, with a carry bit.
73 If there is a potential to propagate a carry over several symbols, they are
74 buffered until it can be determined whether or not an actual carry will
80 The alternative is to truncate the range in order to force a carry, but
81 requires similar carry tracking in the decoder, needlessly slowing it down.*/
84 /*No further carry propagation possible, flush buffer.*/
85 int carry; local
86 carry=_c>>EC_SYM_BITS;
89 if(_this->rem>=0)_this->error|=ec_write_byte(_this,_this->rem+carry);
92 sym=(EC_SYM_MAX+carry)&EC_SYM_MAX
    [all...]
  /external/libopus/celt/
entenc.c 72 /*Outputs a symbol, with a carry bit.
73 If there is a potential to propagate a carry over several symbols, they are
74 buffered until it can be determined whether or not an actual carry will
80 The alternative is to truncate the range in order to force a carry, but
81 requires similar carry tracking in the decoder, needlessly slowing it down.*/
84 /*No further carry propagation possible, flush buffer.*/
85 int carry; local
86 carry=_c>>EC_SYM_BITS;
89 if(_this->rem>=0)_this->error|=ec_write_byte(_this,_this->rem+carry);
92 sym=(EC_SYM_MAX+carry)&EC_SYM_MAX
    [all...]
  /external/llvm/test/CodeGen/ARM/
carry.ll 23 ; add with live carry
33 ; ch == carry bit
  /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

Completed in 2019 milliseconds

12 3 4 5 6 7 8 91011>>