Searched refs:a32 (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Denter.asm8 a32 o32 enter 4,0 label
9 a32 o16 enter 4,0 label
H A Dmem64.asm8 a32 mov rax, [0] ; 67 48 A1 00 00 00 00 label
9 a32 mov eax, [0] ; 67 A1 00 00 00 00 label
13 a32 mov rbx, [0] ; 67 48 8B 1C 25 00 00 00 00 label
18 a32 mov rcx, [rip+5] ; 67 48 8B 0D 05 00 00 00 label
H A Dloopadsz.asm2 foo: a32 loop foo ; 67 E2 FD
H A Driprel1.asm16 a32 mov rax, [val] ; 67 48 a1 ... (32-bit disp) label
17 a32 mov rax, [dword val] ; 67 48 a1 ... (32-bit disp) label
18 a32 mov rax, [qword val] ; 67 48 a1 ... (32-bit disp) label
20 ; I chose in yasm to make a32 override]
28 a32 mov rbx, [val] ; 67 48 8b ... (32-bit disp) label
29 a32 mov rbx, [dword val] ; 67 48 8b ... (32-bit disp) label
30 ;a32 mov rbx, [qword val] ; illegal (can't have 64-bit disp)
48 a32 mov rax, [val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
49 a32 mov rax, [dword val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
50 a32 mo label
60 a32 mov rbx, [val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
61 a32 mov rbx, [dword val] ; 67 48 8b ... (32-bit disp, RIP-rel) label
[all...]
H A Daddrop.asm11 a32 idiv byte [0] ; F6 3D 00 00 00 00 label
/external/chromium_org/third_party/opus/src/silk/
H A Dmacros.h40 /* (a32 * (opus_int32)((opus_int16)(b32))) >> 16 output have to be 32bit int */
41 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a32) & 0x0000FFFF) * (opus_int32)((opus_int16)(b32))) >> 16))
43 /* a32 + (b32 * (opus_int32)((opus_int16)(c32))) >> 16 output have to be 32bit int */
44 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_int16)(c32))) >> 16)))
46 /* (a32 * (b32 >> 16)) >> 16 */
47 #define silk_SMULWT(a32, b32) (((a32) >> 1
[all...]
H A DMacroDebug.h150 static OPUS_INLINE opus_int32 silk_ADD_SAT32_(opus_int32 a32, opus_int32 b32, char *file, int line){ argument
152 res = ((((opus_uint32)(a32) + (opus_uint32)(b32)) & 0x80000000) == 0 ? \
153 ((((a32) & (b32)) & 0x80000000) != 0 ? silk_int32_MIN : (a32)+(b32)) : \
154 ((((a32) | (b32)) & 0x80000000) == 0 ? silk_int32_MAX : (a32)+(b32)) );
155 if ( res != silk_SAT32( (opus_int64)a32 + (opus_int64)b32 ) )
157 fprintf (stderr, "silk_ADD_SAT32(%d, %d) in %s: line %d\n", a32, b32, file, line);
211 static OPUS_INLINE opus_int32 silk_SUB_SAT32_( opus_int32 a32, opus_int32 b32, char *file, int line ) { argument
213 res = ((((opus_uint32)(a32)
257 silk_MUL_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
274 silk_MUL_uint_(opus_uint32 a32, opus_uint32 b32, char *file, int line) argument
289 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
304 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, char *file, int line) argument
319 silk_SMULWB_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
334 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
349 silk_SMULWT_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
364 silk_SMLAWT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
401 silk_SMLABB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
417 silk_SMLABT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
433 silk_SMLATT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
448 silk_SMULWW_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
479 silk_SMLAWW_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
508 silk_DIV32_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
521 silk_DIV32_16_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
[all...]
H A DMacroCount.h54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ argument
57 ret = a32 * b32;
62 static OPUS_INLINE opus_uint32 silk_MUL_uint(opus_uint32 a32, opus_uint32 b32){ argument
65 ret = a32 * b32;
69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ argument
72 ret = a32 + b32 * c32;
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ argument
80 ret = a32 + b32 * c32;
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ argument
88 ret = (a32 >> 1
92 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
100 silk_SMULWT(opus_int32 a32, opus_int32 b32) argument
107 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
115 silk_SMULBB(opus_int32 a32, opus_int32 b32) argument
122 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
130 silk_SMULBT(opus_int32 a32, opus_int32 b32 ) argument
138 silk_SMLABT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
146 silk_SMULTT(opus_int32 a32, opus_int32 b32) argument
154 silk_SMLATT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
182 silk_SMULL(opus_int32 a32, opus_int32 b32) argument
255 silk_DIV32(opus_int32 a32, opus_int32 b32) argument
261 silk_DIV32_16(opus_int32 a32, opus_int32 b32) argument
557 silk_ADD_SAT32(opus_int32 a32, opus_int32 b32) argument
586 silk_SUB_SAT32( opus_int32 a32, opus_int32 b32 ) argument
607 silk_SMULWW(opus_int32 a32, opus_int32 b32) argument
615 silk_SMLAWW(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
[all...]
H A DSigProc_FIX.h361 /* Rotate a32 right by 'rot' bits. Negative rot values result in rotating
365 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot ) argument
367 opus_uint32 x = (opus_uint32) a32;
371 return a32;
393 /* (a32 * b32) output have to be 32bit int */
394 #define silk_MUL(a32, b32) ((a32) * (b32))
396 /* (a32 * b32) output have to be 32bit uint */
397 #define silk_MUL_uint(a32, b32) silk_MUL(a32, b3
[all...]
H A DInlines.h97 static OPUS_INLINE opus_int32 silk_DIV32_varQ( /* O returns a good approximation of "(a32 << Qres) / b32" */ argument
98 const opus_int32 a32, /* I numerator (Q0) */
110 a_headrm = silk_CLZ32( silk_abs(a32) ) - 1;
111 a32_nrm = silk_LSHIFT(a32, a_headrm); /* Q: a_headrm */
H A DLPC_inv_pred_gain.c37 #define MUL32_FRAC_Q(a32, b32, Q) ((opus_int32)(silk_RSHIFT_ROUND64(silk_SMULL(a32, b32), Q)))
/external/libopus/silk/
H A Dmacros.h40 /* (a32 * (opus_int32)((opus_int16)(b32))) >> 16 output have to be 32bit int */
41 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a32) & 0x0000FFFF) * (opus_int32)((opus_int16)(b32))) >> 16))
43 /* a32 + (b32 * (opus_int32)((opus_int16)(c32))) >> 16 output have to be 32bit int */
44 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_int16)(c32))) >> 16)))
46 /* (a32 * (b32 >> 16)) >> 16 */
47 #define silk_SMULWT(a32, b32) (((a32) >> 1
[all...]
H A DMacroDebug.h150 static OPUS_INLINE opus_int32 silk_ADD_SAT32_(opus_int32 a32, opus_int32 b32, char *file, int line){ argument
152 res = ((((opus_uint32)(a32) + (opus_uint32)(b32)) & 0x80000000) == 0 ? \
153 ((((a32) & (b32)) & 0x80000000) != 0 ? silk_int32_MIN : (a32)+(b32)) : \
154 ((((a32) | (b32)) & 0x80000000) == 0 ? silk_int32_MAX : (a32)+(b32)) );
155 if ( res != silk_SAT32( (opus_int64)a32 + (opus_int64)b32 ) )
157 fprintf (stderr, "silk_ADD_SAT32(%d, %d) in %s: line %d\n", a32, b32, file, line);
211 static OPUS_INLINE opus_int32 silk_SUB_SAT32_( opus_int32 a32, opus_int32 b32, char *file, int line ) { argument
213 res = ((((opus_uint32)(a32)
257 silk_MUL_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
274 silk_MUL_uint_(opus_uint32 a32, opus_uint32 b32, char *file, int line) argument
289 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
304 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, char *file, int line) argument
319 silk_SMULWB_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
334 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
349 silk_SMULWT_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
364 silk_SMLAWT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
401 silk_SMLABB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
417 silk_SMLABT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
433 silk_SMLATT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
448 silk_SMULWW_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
479 silk_SMLAWW_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
508 silk_DIV32_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
521 silk_DIV32_16_(opus_int32 a32, opus_int32 b32, char *file, int line) argument
[all...]
H A DMacroCount.h54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ argument
57 ret = a32 * b32;
62 static OPUS_INLINE opus_uint32 silk_MUL_uint(opus_uint32 a32, opus_uint32 b32){ argument
65 ret = a32 * b32;
69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ argument
72 ret = a32 + b32 * c32;
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ argument
80 ret = a32 + b32 * c32;
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ argument
88 ret = (a32 >> 1
92 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
100 silk_SMULWT(opus_int32 a32, opus_int32 b32) argument
107 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
115 silk_SMULBB(opus_int32 a32, opus_int32 b32) argument
122 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
130 silk_SMULBT(opus_int32 a32, opus_int32 b32 ) argument
138 silk_SMLABT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
146 silk_SMULTT(opus_int32 a32, opus_int32 b32) argument
154 silk_SMLATT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
182 silk_SMULL(opus_int32 a32, opus_int32 b32) argument
255 silk_DIV32(opus_int32 a32, opus_int32 b32) argument
261 silk_DIV32_16(opus_int32 a32, opus_int32 b32) argument
557 silk_ADD_SAT32(opus_int32 a32, opus_int32 b32) argument
586 silk_SUB_SAT32( opus_int32 a32, opus_int32 b32 ) argument
607 silk_SMULWW(opus_int32 a32, opus_int32 b32) argument
615 silk_SMLAWW(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
[all...]
H A DSigProc_FIX.h361 /* Rotate a32 right by 'rot' bits. Negative rot values result in rotating
365 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot ) argument
367 opus_uint32 x = (opus_uint32) a32;
371 return a32;
393 /* (a32 * b32) output have to be 32bit int */
394 #define silk_MUL(a32, b32) ((a32) * (b32))
396 /* (a32 * b32) output have to be 32bit uint */
397 #define silk_MUL_uint(a32, b32) silk_MUL(a32, b3
[all...]
H A DInlines.h97 static OPUS_INLINE opus_int32 silk_DIV32_varQ( /* O returns a good approximation of "(a32 << Qres) / b32" */ argument
98 const opus_int32 a32, /* I numerator (Q0) */
110 a_headrm = silk_CLZ32( silk_abs(a32) ) - 1;
111 a32_nrm = silk_LSHIFT(a32, a_headrm); /* Q: a_headrm */
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
H A Dnasm-prefix.asm4 a32 label
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dcb_construct.c41 int32_t a32; local
59 a32 = WEBRTC_SPL_MUL_16_16(*gainPtr++, cbvec0[j]);
60 a32 += WEBRTC_SPL_MUL_16_16(*gainPtr++, cbvec1[j]);
61 a32 += WEBRTC_SPL_MUL_16_16(*gainPtr, cbvec2[j]);
63 decvector[j] = (int16_t) WEBRTC_SPL_RSHIFT_W32(a32 + 8192, 14);
/external/libpng/contrib/tools/
H A Dchecksum-icc.c22 uLong a32 = adler32(0, NULL, 0); local
39 a32 = adler32(a32, &b, 1);
51 (unsigned long)a32, (unsigned long)c32,
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_atomic.cc45 typedef unsigned int a32; typedef
251 static atomic_uint32_t *to_atomic(const volatile a32 *a) {
519 a32 __tsan_atomic32_load(const volatile a32 *a, morder mo) {
546 void __tsan_atomic32_store(volatile a32 *a, a32 v, morder mo) {
573 a32 __tsan_atomic32_exchange(volatile a32 *a, a32 v, morder mo) {
600 a32 __tsan_atomic32_fetch_ad
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat4.js194 a30 = a[12], a31 = a[13], a32 = a[14], a33 = a[15],
203 b07 = a20 * a32 - a22 * a30,
205 b09 = a21 * a32 - a22 * a31,
207 b11 = a22 * a33 - a23 * a32,
219 out[2] = (a31 * b05 - a32 * b04 + a33 * b03) * det;
223 out[6] = (a32 * b02 - a30 * b05 - a33 * b01) * det;
231 out[14] = (a31 * b01 - a30 * b03 - a32 * b00) * det;
248 a30 = a[12], a31 = a[13], a32 = a[14], a33 = a[15];
250 out[0] = (a11 * (a22 * a33 - a23 * a32) - a21 * (a12 * a33 - a13 * a32)
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dsignal_processing_unittest.cc100 int32_t a32 = 111121; local
104 EXPECT_EQ(17, WebRtcSpl_GetSizeInBits(a32));
109 EXPECT_EQ(14, WebRtcSpl_NormW32(a32));
118 EXPECT_EQ(15, WebRtcSpl_NormU32(static_cast<uint32_t>(a32)));
123 EXPECT_EQ(109410, WebRtcSpl_AddSatW32(a32, b32));
124 EXPECT_EQ(112832, WebRtcSpl_SubSatW32(a32, b32));
126 a32 = 0x80000000;
129 EXPECT_EQ(static_cast<int>(0x80000000), WebRtcSpl_AddSatW32(a32, b32));
130 a32 = 0x7fffffff;
132 EXPECT_EQ(0x7fffffff, WebRtcSpl_AddSatW32(a32, b3
[all...]
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dosr-regress-max-locals.js36 a31, a32, a33, a34, a35, a36, a37, a38, a39, a40,
/external/elfutils/0.153/libebl/
H A Deblobjnote.c87 Elf32_Addr a32[3]; member in union:__anon21214
133 pc = addrs.a32[0];
134 base = addrs.a32[1];
135 sem = addrs.a32[2];
/external/elfutils/0.153/libdwfl/
H A Dlinux-proc-maps.c91 Elf32_auxv_t a32[sizeof (long int) * 2 * 32 / sizeof (Elf32_auxv_t)]; member in union:__anon21211
99 for (size_t i = 0; (char *) &d.a32[i] < &d.buffer[nread]; ++i)
100 if (d.a32[i].a_type == AT_SYSINFO_EHDR)
102 *sysinfo_ehdr = d.a32[i].a_un.a_val;
109 else if (d.a32[i].a_type == AT_PAGESZ
111 dwfl->segment_align = d.a32[i].a_un.a_val;

Completed in 685 milliseconds

12