Home
last modified time | relevance | path

Searched refs:a32 (Results 1 – 25 of 63) sorted by relevance

123

/external/libopus/silk/
Dmacros.h41 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a… argument
44 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))… argument
47 #define silk_SMULWT(a32, b32) (((a32) >> 16) * ((b32) >> 16) + ((((a32) & 0x0000FFFF) * … argument
50 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument
53 #define silk_SMULBB(a32, b32) ((opus_int32)((opus_int16)(a32)) * (opus_int32)((opus_int1… argument
56 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument
59 #define silk_SMULBT(a32, b32) ((opus_int32)((opus_int16)(a32)) * ((b32) >> 16)) argument
62 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16)) argument
68 #define silk_SMULWW(a32, b32) silk_MLA(silk_SMULWB((a32), (b32)), (a32), silk_RSHIFT_ROU… argument
71 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32)), (b32), silk_RSH… argument
DMacroDebug.h150 static OPUS_INLINE opus_int32 silk_ADD_SAT32_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_ADD_SAT32_() argument
152 res = ((((opus_uint32)(a32) + (opus_uint32)(b32)) & 0x80000000) == 0 ? \ in silk_ADD_SAT32_()
153 ((((a32) & (b32)) & 0x80000000) != 0 ? silk_int32_MIN : (a32)+(b32)) : \ in silk_ADD_SAT32_()
154 ((((a32) | (b32)) & 0x80000000) == 0 ? silk_int32_MAX : (a32)+(b32)) ); in silk_ADD_SAT32_()
155 if ( res != silk_SAT32( (opus_int64)a32 + (opus_int64)b32 ) ) in silk_ADD_SAT32_()
157 fprintf (stderr, "silk_ADD_SAT32(%d, %d) in %s: line %d\n", a32, b32, file, line); in silk_ADD_SAT32_()
211 static OPUS_INLINE opus_int32 silk_SUB_SAT32_( opus_int32 a32, opus_int32 b32, char *file, int line… in silk_SUB_SAT32_() argument
213 res = ((((opus_uint32)(a32)-(opus_uint32)(b32)) & 0x80000000) == 0 ? \ in silk_SUB_SAT32_()
214 (( (a32) & ((b32)^0x80000000) & 0x80000000) ? silk_int32_MIN : (a32)-(b32)) : \ in silk_SUB_SAT32_()
215 ((((a32)^0x80000000) & (b32) & 0x80000000) ? silk_int32_MAX : (a32)-(b32)) ); in silk_SUB_SAT32_()
[all …]
DMacroCount.h54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ in silk_MUL() argument
57 ret = a32 * b32; in silk_MUL()
62 static OPUS_INLINE opus_uint32 silk_MUL_uint(opus_uint32 a32, opus_uint32 b32){ in silk_MUL_uint() argument
65 ret = a32 * b32; in silk_MUL_uint()
69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA() argument
72 ret = a32 + b32 * c32; in silk_MLA()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint() argument
80 ret = a32 + b32 * c32; in silk_MLA_uint()
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ in silk_SMULWB() argument
88 …ret = (a32 >> 16) * (opus_int32)((opus_int16)b32) + (((a32 & 0x0000FFFF) * (opus_int32)((opus_int1… in silk_SMULWB()
[all …]
DSigProc_FIX.h365 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot ) in silk_ROR32() argument
367 opus_uint32 x = (opus_uint32) a32; in silk_ROR32()
371 return a32; in silk_ROR32()
394 #define silk_MUL(a32, b32) ((a32) * (b32)) argument
397 #define silk_MUL_uint(a32, b32) silk_MUL(a32, b32) argument
400 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32))) argument
403 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32) argument
406 #define silk_SMULTT(a32, b32) (((a32) >> 16) * ((b32) >> 16)) argument
409 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16)) argument
414 #define silk_SMULL(a32, b32) ((opus_int64)(a32) * /*(opus_int64)*/(b32)) argument
[all …]
DInlines.h98 const opus_int32 a32, /* I numerator (Q0) */ in silk_DIV32_varQ() argument
110 a_headrm = silk_CLZ32( silk_abs(a32) ) - 1; in silk_DIV32_varQ()
111 …a32_nrm = silk_LSHIFT(a32, a_headrm); /* Q: a_headrm … in silk_DIV32_varQ()
/external/chromium_org/third_party/opus/src/silk/
Dmacros.h41 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a… argument
44 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))… argument
47 #define silk_SMULWT(a32, b32) (((a32) >> 16) * ((b32) >> 16) + ((((a32) & 0x0000FFFF) * … argument
50 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument
53 #define silk_SMULBB(a32, b32) ((opus_int32)((opus_int16)(a32)) * (opus_int32)((opus_int1… argument
56 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument
59 #define silk_SMULBT(a32, b32) ((opus_int32)((opus_int16)(a32)) * ((b32) >> 16)) argument
62 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16)) argument
68 #define silk_SMULWW(a32, b32) silk_MLA(silk_SMULWB((a32), (b32)), (a32), silk_RSHIFT_ROU… argument
71 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32)), (b32), silk_RSH… argument
DMacroDebug.h150 static OPUS_INLINE opus_int32 silk_ADD_SAT32_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_ADD_SAT32_() argument
152 res = ((((opus_uint32)(a32) + (opus_uint32)(b32)) & 0x80000000) == 0 ? \ in silk_ADD_SAT32_()
153 ((((a32) & (b32)) & 0x80000000) != 0 ? silk_int32_MIN : (a32)+(b32)) : \ in silk_ADD_SAT32_()
154 ((((a32) | (b32)) & 0x80000000) == 0 ? silk_int32_MAX : (a32)+(b32)) ); in silk_ADD_SAT32_()
155 if ( res != silk_SAT32( (opus_int64)a32 + (opus_int64)b32 ) ) in silk_ADD_SAT32_()
157 fprintf (stderr, "silk_ADD_SAT32(%d, %d) in %s: line %d\n", a32, b32, file, line); in silk_ADD_SAT32_()
211 static OPUS_INLINE opus_int32 silk_SUB_SAT32_( opus_int32 a32, opus_int32 b32, char *file, int line… in silk_SUB_SAT32_() argument
213 res = ((((opus_uint32)(a32)-(opus_uint32)(b32)) & 0x80000000) == 0 ? \ in silk_SUB_SAT32_()
214 (( (a32) & ((b32)^0x80000000) & 0x80000000) ? silk_int32_MIN : (a32)-(b32)) : \ in silk_SUB_SAT32_()
215 ((((a32)^0x80000000) & (b32) & 0x80000000) ? silk_int32_MAX : (a32)-(b32)) ); in silk_SUB_SAT32_()
[all …]
DMacroCount.h54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ in silk_MUL() argument
57 ret = a32 * b32; in silk_MUL()
62 static OPUS_INLINE opus_uint32 silk_MUL_uint(opus_uint32 a32, opus_uint32 b32){ in silk_MUL_uint() argument
65 ret = a32 * b32; in silk_MUL_uint()
69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA() argument
72 ret = a32 + b32 * c32; in silk_MLA()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint() argument
80 ret = a32 + b32 * c32; in silk_MLA_uint()
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ in silk_SMULWB() argument
88 …ret = (a32 >> 16) * (opus_int32)((opus_int16)b32) + (((a32 & 0x0000FFFF) * (opus_int32)((opus_int1… in silk_SMULWB()
[all …]
DSigProc_FIX.h365 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot ) in silk_ROR32() argument
367 opus_uint32 x = (opus_uint32) a32; in silk_ROR32()
371 return a32; in silk_ROR32()
394 #define silk_MUL(a32, b32) ((a32) * (b32)) argument
397 #define silk_MUL_uint(a32, b32) silk_MUL(a32, b32) argument
400 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32))) argument
403 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32) argument
406 #define silk_SMULTT(a32, b32) (((a32) >> 16) * ((b32) >> 16)) argument
409 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16)) argument
414 #define silk_SMULL(a32, b32) ((opus_int64)(a32) * /*(opus_int64)*/(b32)) argument
[all …]
DInlines.h98 const opus_int32 a32, /* I numerator (Q0) */ in silk_DIV32_varQ() argument
110 a_headrm = silk_CLZ32( silk_abs(a32) ) - 1; in silk_DIV32_varQ()
111 …a32_nrm = silk_LSHIFT(a32, a_headrm); /* Q: a_headrm … in silk_DIV32_varQ()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
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]
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
62 ;a32 mov rbx, [qword val] ; illegal (can't have 64-bit disp)
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
Denter.asm8 a32 o32 enter 4,0 label
9 a32 o16 enter 4,0 label
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
Dcb_construct.c41 int32_t a32; in WebRtcIlbcfix_CbConstruct() local
59 a32 = WEBRTC_SPL_MUL_16_16(*gainPtr++, cbvec0[j]); in WebRtcIlbcfix_CbConstruct()
60 a32 += WEBRTC_SPL_MUL_16_16(*gainPtr++, cbvec1[j]); in WebRtcIlbcfix_CbConstruct()
61 a32 += WEBRTC_SPL_MUL_16_16(*gainPtr, cbvec2[j]); in WebRtcIlbcfix_CbConstruct()
63 decvector[j] = (int16_t) WEBRTC_SPL_RSHIFT_W32(a32 + 8192, 14); in WebRtcIlbcfix_CbConstruct()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interface_atomic.cc45 typedef unsigned int a32; typedef
251 static atomic_uint32_t *to_atomic(const volatile a32 *a) { in to_atomic()
519 a32 __tsan_atomic32_load(const volatile a32 *a, morder mo) { in __tsan_atomic32_load()
546 void __tsan_atomic32_store(volatile a32 *a, a32 v, morder mo) { in __tsan_atomic32_store()
573 a32 __tsan_atomic32_exchange(volatile a32 *a, a32 v, morder mo) { in __tsan_atomic32_exchange()
600 a32 __tsan_atomic32_fetch_add(volatile a32 *a, a32 v, morder mo) { in __tsan_atomic32_fetch_add()
627 a32 __tsan_atomic32_fetch_sub(volatile a32 *a, a32 v, morder mo) { in __tsan_atomic32_fetch_sub()
654 a32 __tsan_atomic32_fetch_and(volatile a32 *a, a32 v, morder mo) { in __tsan_atomic32_fetch_and()
681 a32 __tsan_atomic32_fetch_or(volatile a32 *a, a32 v, morder mo) { in __tsan_atomic32_fetch_or()
708 a32 __tsan_atomic32_fetch_xor(volatile a32 *a, a32 v, morder mo) { in __tsan_atomic32_fetch_xor()
[all …]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
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) + a31 * (a12 * a23 - a13…
251 …out[1] = -(a01 * (a22 * a33 - a23 * a32) - a21 * (a02 * a33 - a03 * a32) + a31 * (a02 * a23 - a03…
[all …]
/external/libpng/contrib/tools/
Dchecksum-icc.c22 uLong a32 = adler32(0, NULL, 0); in read_one_file() local
39 a32 = adler32(a32, &b, 1); in read_one_file()
51 (unsigned long)a32, (unsigned long)c32, in read_one_file()
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
Dsignal_processing_unittest.cc122 int32_t a32 = 111121; in TEST_F() local
126 EXPECT_EQ(17, WebRtcSpl_GetSizeInBits(a32)); in TEST_F()
131 EXPECT_EQ(14, WebRtcSpl_NormW32(a32)); in TEST_F()
141 EXPECT_EQ(15, WebRtcSpl_NormU32(a32)); in TEST_F()
146 EXPECT_EQ(109410, WebRtcSpl_AddSatW32(a32, b32)); in TEST_F()
147 EXPECT_EQ(112832, WebRtcSpl_SubSatW32(a32, b32)); in TEST_F()
149 a32 = 0x80000000; in TEST_F()
152 EXPECT_EQ(static_cast<int>(0x80000000), WebRtcSpl_AddSatW32(a32, b32)); in TEST_F()
153 a32 = 0x7fffffff; in TEST_F()
155 EXPECT_EQ(0x7fffffff, WebRtcSpl_AddSatW32(a32, b32)); in TEST_F()
[all …]
/external/elfutils/0.153/libdwfl/
Dlinux-proc-maps.c91 Elf32_auxv_t a32[sizeof (long int) * 2 * 32 / sizeof (Elf32_auxv_t)]; in grovel_auxv() member
99 for (size_t i = 0; (char *) &d.a32[i] < &d.buffer[nread]; ++i) in grovel_auxv()
100 if (d.a32[i].a_type == AT_SYSINFO_EHDR) in grovel_auxv()
102 *sysinfo_ehdr = d.a32[i].a_un.a_val; in grovel_auxv()
109 else if (d.a32[i].a_type == AT_PAGESZ in grovel_auxv()
111 dwfl->segment_align = d.a32[i].a_un.a_val; in grovel_auxv()
Dlink_map.c84 Elf32_auxv_t a32[size / sizeof (Elf32_auxv_t)]; in auxv_format_probe() member
109 if (u->a32[i].a_type == BE32 (PROBE_TYPE) in auxv_format_probe()
110 && u->a32[i].a_un.a_val == BE32 (PROBE_VAL32)) in auxv_format_probe()
116 if (u->a32[i].a_type == LE32 (PROBE_TYPE) in auxv_format_probe()
117 && u->a32[i].a_un.a_val == LE32 (PROBE_VAL32)) in auxv_format_probe()
299 Elf32_Addr a32[n]; in report_r_debug() member
307 addrs[i] = BE32 (in->a32[i]); in report_r_debug()
310 addrs[i] = LE32 (in->a32[i]); in report_r_debug()
571 Elf32_Addr a32; in consider_executable() member
578 ? BE32 (u->a32) : LE32 (u->a32)); in consider_executable()
/external/llvm/test/CodeGen/X86/
Dpr13859.ll10 %a32 = load i32* %aMyAlloca, align 4
11 %aconv = trunc i32 %a32 to i16
19 %a47 = trunc i32 %a32 to i1
/external/elfutils/0.153/libebl/
Deblobjnote.c87 Elf32_Addr a32[3]; member
133 pc = addrs.a32[0];
134 base = addrs.a32[1];
135 sem = addrs.a32[2];
/external/chromium_org/third_party/skia/src/utils/
DSkMatrix44.cpp429 double a32 = fMat[3][2]; in determinant() local
439 double b07 = a20 * a32 - a22 * a30; in determinant()
441 double b09 = a21 * a32 - a22 * a31; in determinant()
443 double b11 = a22 * a33 - a23 * a32; in determinant()
516 double a32 = fMat[3][2]; in invert() local
534 double b07 = a20 * a32 - a22 * a30; in invert()
536 double b09 = a21 * a32 - a22 * a31; in invert()
578 inverse->fMat[3][2] = SkDoubleToMScalar(a31 * b01 - a30 * b03 - a32 * b00); in invert()
592 double b07 = a20 * a32 - a22 * a30; in invert()
594 double b09 = a21 * a32 - a22 * a31; in invert()
[all …]
/external/skia/src/utils/
DSkMatrix44.cpp429 double a32 = fMat[3][2]; in determinant() local
439 double b07 = a20 * a32 - a22 * a30; in determinant()
441 double b09 = a21 * a32 - a22 * a31; in determinant()
443 double b11 = a22 * a33 - a23 * a32; in determinant()
516 double a32 = fMat[3][2]; in invert() local
534 double b07 = a20 * a32 - a22 * a30; in invert()
536 double b09 = a21 * a32 - a22 * a31; in invert()
578 inverse->fMat[3][2] = SkDoubleToMScalar(a31 * b01 - a30 * b03 - a32 * b00); in invert()
592 double b07 = a20 * a32 - a22 * a30; in invert()
594 double b09 = a21 * a32 - a22 * a31; in invert()
[all …]
/external/e2fsprogs/lib/ext2fs/
Ddblist.c376 struct ext2_db_entry a32, b32; in dir_block_cmp() local
378 a32.ino = db_a->ino; a32.blk = db_a->blk; in dir_block_cmp()
379 a32.blockcnt = db_a->blockcnt; in dir_block_cmp()
384 return sortfunc32(&a32, &b32); in dir_block_cmp()

123