HomeSort by relevance Sort by last modified time
    Searched full:carry (Results 1 - 25 of 3296) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/arm-neon-tests/
ref_dspfns.c 61 fprintf(ref_file, "Checking %s with input Overflow=%d and input Carry=%d\n",
66 Carry = init_Carry;
68 fprintf(ref_file, "%s(%#x) = %#x overflow %d carry %d\n",
69 func_name, svar32_a, svar16_a, Overflow, Carry);
73 Carry = init_Carry;
75 fprintf(ref_file, "%s(%#x) = %#x overflow %d carry %d\n",
76 func_name, svar32_a, svar16_a, Overflow, Carry);
80 Carry = init_Carry;
82 fprintf(ref_file, "%s(%#x) = %#x overflow %d carry %d\n",
83 func_name, svar32_a, svar16_a, Overflow, Carry);
    [all...]
  /external/libxml2/result/valid/
rss.xml.err 1 ./test/valid/rss.xml:177: element rss: validity error : Element rss does not carry attribute version
rss.xml.err.rdr 1 ./test/valid/rss.xml:177: element rss: validity error : Element rss does not carry attribute version
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/
xgate-offset.s 8 ldw r2,#var+0x106 ; check for correct carry too
  /external/boringssl/src/ssl/test/runner/ed25519/internal/edwards25519/
edwards25519.go 131 var carry [10]int32
149 carry[0] = h[0] >> 26
150 h[1] += carry[0]
151 h[0] -= carry[0] << 26
152 carry[1] = h[1] >> 25
153 h[2] += carry[1]
154 h[1] -= carry[1] << 25
155 carry[2] = h[2] >> 26
156 h[3] += carry[2]
157 h[2] -= carry[2] << 2
    [all...]
  /external/boringssl/src/ssl/test/runner/curve25519/
curve25519.go 98 var carry [10]int64
99 carry[9] = (h9 + 1<<24) >> 25
100 h0 += carry[9] * 19
101 h9 -= carry[9] << 25
102 carry[1] = (h1 + 1<<24) >> 25
103 h2 += carry[1]
104 h1 -= carry[1] << 25
105 carry[3] = (h3 + 1<<24) >> 25
106 h4 += carry[3]
107 h3 -= carry[3] << 2
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/curve25519/
curve25519.go 98 var carry [10]int64
99 carry[9] = (h9 + 1<<24) >> 25
100 h0 += carry[9] * 19
101 h9 -= carry[9] << 25
102 carry[1] = (h1 + 1<<24) >> 25
103 h2 += carry[1]
104 h1 -= carry[1] << 25
105 carry[3] = (h3 + 1<<24) >> 25
106 h4 += carry[3]
107 h3 -= carry[3] << 2
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/curve25519/
curve25519.go 98 var carry [10]int64
99 carry[9] = (h9 + 1<<24) >> 25
100 h0 += carry[9] * 19
101 h9 -= carry[9] << 25
102 carry[1] = (h1 + 1<<24) >> 25
103 h2 += carry[1]
104 h1 -= carry[1] << 25
105 carry[3] = (h3 + 1<<24) >> 25
106 h4 += carry[3]
107 h3 -= carry[3] << 2
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
sum.c 42 ULong carry, *xc, *xa, *xb, *xe, y; local
54 carry = 0;
61 y = (*xa & 0xffff) + (*xb & 0xffff) + carry;
62 carry = (y & 0x10000) >> 16;
63 z = (*xa++ >> 16) + (*xb++ >> 16) + carry;
64 carry = (z & 0x10000) >> 16;
70 y = (*xa & 0xffff) + carry;
71 carry = (y & 0x10000) >> 16;
72 z = (*xa++ >> 16) + carry;
73 carry = (z & 0x10000) >> 16
    [all...]
dmisc.c 120 ULLong borrow, carry, y, ys; local
122 ULong borrow, carry, y, ys; local
146 carry = 0;
149 ys = *sx++ * (ULLong)q + carry;
150 carry = ys >> 32;
157 ys = (si & 0xffff) * q + carry;
159 carry = zs >> 16;
166 ys = *sx++ * q + carry;
167 carry = ys >> 16;
185 carry = 0
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
sum.c 45 ULong carry, *xc, *xa, *xb, *xe, y; local
57 carry = 0;
64 y = (*xa & 0xffff) + (*xb & 0xffff) + carry;
65 carry = (y & 0x10000) >> 16;
66 z = (*xa++ >> 16) + (*xb++ >> 16) + carry;
67 carry = (z & 0x10000) >> 16;
73 y = (*xa & 0xffff) + carry;
74 carry = (y & 0x10000) >> 16;
75 z = (*xa++ >> 16) + carry;
76 carry = (z & 0x10000) >> 16;
    [all...]
dmisc.c 119 ULLong borrow, carry, y, ys; local
121 ULong borrow, carry, y, ys; local
145 carry = 0;
148 ys = *sx++ * (ULLong)q + carry;
149 carry = ys >> 32;
158 ys = (si & 0xffff) * q + carry;
160 carry = zs >> 16;
167 ys = *sx++ * q + carry;
168 carry = ys >> 16;
186 carry = 0;
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 85 int32 carry, abs_sum; local
87 carry = k0 >> 31;
88 abs_sum = (k0 ^ carry);
89 carry = k1 >> 31;
90 abs_sum += (k1 ^ carry) - carry;
91 carry = k2 >> 31;
92 abs_sum += (k2 ^ carry) - carry;
93 carry = k3 >> 31
244 int32 carry, abs_sum; local
247 eor carry, k0, k0, asr #31 ; local
249 adc abs_sum, abs_sum, carry ; local
250 eors carry, k2, k2, asr #31 ; local
251 adc abs_sum, abs_sum, carry ; local
252 eors carry, k3, k3, asr #31 ; local
253 adc abs_sum, abs_sum, carry ; local
254 eors carry, k4, k4, asr #31 ; local
255 adc abs_sum, abs_sum, carry ; local
256 eors carry, k5, k5, asr #31 ; local
257 adc abs_sum, abs_sum, carry ; local
258 eors carry, k6, k6, asr #31 ; local
259 adc abs_sum, abs_sum, carry ; local
260 eors carry, k7, k7, asr #31 ; local
261 adc abs_sum, abs_sum, carry ; local
350 register int32 carry; local
    [all...]
  /external/valgrind/none/tests/x86/
shift_ndep.c 6 /* Check whether the carry flag is properly preserved by a variable
12 /* First we set the carry flag. Then we increment %x, which sets
13 CC_OP to X86G_CC_OP_INCL and stores the carry (1) in
16 unchanged. Then we add-with-carry 0 to %x, which (assuming the
17 carry is still set as it should be) increments %x again. Thus the
22 clearing the carry bit, so the adc will be a no-op and the final
  /external/llvm/test/CodeGen/AArch64/
madd-lohi.ll 6 ; CHECK-DAG: umulh [[CARRY:x[0-9]+]], x0, x2
7 ; CHECK-DAG: madd [[PART1:x[0-9]+]], x0, x3, [[CARRY]]
12 ; CHECK-BE-DAG: umulh [[CARRY:x[0-9]+]], x1, x3
13 ; CHECK-BE-DAG: madd [[PART1:x[0-9]+]], x1, x2, [[CARRY]]
  /external/swiftshader/third_party/LLVM/test/CodeGen/CBackend/
2011-06-08-addWithOverflow.ll 10 br i1 %obit, label %carry, label %normal
15 carry: ; preds = %entry
23 br i1 %obit, label %carry, label %normal
28 carry: ; preds = %entry
  /external/compiler-rt/lib/builtins/
udivsi3.c 47 su_int carry = 0; local
50 /* r:q = ((r:q) << 1) | carry */
52 q = (q << 1) | carry;
53 /* carry = 0;
57 * carry = 1;
61 carry = s & 1;
64 q = (q << 1) | carry;
  /external/llvm/test/CodeGen/AMDGPU/
saddo.ll 12 %carry = extractvalue { i64, i1 } %sadd, 1
13 %ext = zext i1 %carry to i64
23 %carry = extractvalue { i32, i1 } %sadd, 1
25 store i1 %carry, i1 addrspace(1)* %carryout
35 %carry = extractvalue { i32, i1 } %sadd, 1
37 store i1 %carry, i1 addrspace(1)* %carryout
45 %carry = extractvalue { i64, i1 } %sadd, 1
47 store i1 %carry, i1 addrspace(1)* %carryout
59 %carry = extractvalue { i64, i1 } %sadd, 1
61 store i1 %carry, i1 addrspace(1)* %carryou
    [all...]
ssubo.ll 12 %carry = extractvalue { i64, i1 } %ssub, 1
13 %ext = zext i1 %carry to i64
23 %carry = extractvalue { i32, i1 } %ssub, 1
25 store i1 %carry, i1 addrspace(1)* %carryout
35 %carry = extractvalue { i32, i1 } %ssub, 1
37 store i1 %carry, i1 addrspace(1)* %carryout
47 %carry = extractvalue { i64, i1 } %ssub, 1
49 store i1 %carry, i1 addrspace(1)* %carryout
61 %carry = extractvalue { i64, i1 } %ssub, 1
63 store i1 %carry, i1 addrspace(1)* %carryou
    [all...]
  /external/wpa_supplicant_8/src/crypto/
fips_prf_internal.c 23 u32 carry; local
56 carry = 1;
58 carry += xkey[k] + xpos[k];
59 xkey[k] = carry & 0xff;
60 carry >>= 8;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines.c 46 /* if result is less than the added value we must take care of the carry */
49 /* propagate carry */
56 /* if value is too big, propagate carry to next byte, and so on */
64 /* propagate carry by adding one to the previous byte in the
65 * stream if that byte is 0xFFFF we need to propagate the carry
86 /* if result is less than the added value we must take care of the carry */
89 /* propagate carry */
96 /* if value to big, propagate carry to next byte, and so on */
104 /* Add carry to previous byte */
  /external/valgrind/none/tests/s390x/
add.h 6 #define ADD_REG_MEM(insn, s1, s2, CARRY) \
10 asm volatile( "lghi 0," #CARRY "\n" \
18 printf(#insn " " #CARRY " + %16.16lX + %16.16lX = %16.16lX (cc=%d)\n", s1, s2, tmp, cc); \
21 #define ADD_REG_REG(insn, s1, s2, CARRY) \
25 asm volatile( "lghi 0," #CARRY "\n" \
33 printf(#insn " " #CARRY " + %16.16lX + %16.16lX = %16.16lX (cc=%d)\n", s1, s2, tmp, cc); \
36 #define ADD_REG_IMM(insn, s1, s2, CARRY) \
40 asm volatile( "lghi 0," #CARRY "\n" \
48 printf(#insn " " #CARRY " + %16.16lX + %16.16lX = %16.16lX (cc=%d)\n", s1, (unsigned long) s2, tmp, cc); \
51 #define ADD_MEM_IMM(insn, s1, s2, CARRY) \
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
CheckSum.c 22 During calculation, the carry bits are dropped.
25 in unit of UINT8. The carry bits in result of addition are dropped.
32 @param Buffer Pointer to the buffer to carry out the sum operation.
35 @return Sum The sum of Buffer with carry bits dropped during additions.
64 buffer specified by Buffer and Length. The carry bits in the result
72 @param Buffer Pointer to the buffer to carry out the checksum operation.
97 calculation, the carry bits are dropped.
100 specified by Buffer and Length. The carry bits in result of addition are dropped.
108 @param Buffer Pointer to the buffer to carry out the sum operation.
111 @return Sum The sum of Buffer with carry bits dropped during additions.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
CheckSum.c 20 During calculation, the carry bits are dropped.
23 in unit of UINT8. The carry bits in result of addition are dropped.
30 @param Buffer The pointer to the buffer to carry out the sum operation.
33 @return Sum The sum of Buffer with carry bits dropped during additions.
62 buffer specified by Buffer and Length. The carry bits in the result
69 @param Buffer The pointer to the buffer to carry out the checksum operation.
94 calculation, the carry bits are dropped.
97 specified by Buffer and Length. The carry bits in result of addition are dropped.
105 @param Buffer The pointer to the buffer to carry out the sum operation.
108 @return Sum The sum of Buffer with carry bits dropped during additions.
    [all...]
  /external/swiftshader/third_party/LLVM/test/CodeGen/Blackfin/
add-overflow.ll 9 br i1 %obit, label %carry, label %normal
14 carry: ; preds = %entry

Completed in 2302 milliseconds

1 2 3 4 5 6 7 8 91011>>