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

12

/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 */
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/skia/src/opts/
H A DSk4px_NEON.h66 auto a32 = (uint32x4_t)a8; // local
67 a32 = vorrq_u32(a32, vshlq_n_u32(a32, 8)); // __33 __22 __11 __00
68 a32 = vorrq_u32(a32, vshlq_n_u32(a32, 16)); // 3333 2222 1111 0000
69 return Sk16b((uint8x16_t)a32);
76 auto a32 = (uint32x4_t)a8; // local
77 a32
[all...]
/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.cc33 typedef unsigned int a32; typedef
212 static atomic_uint32_t *to_atomic(const volatile a32 *a) {
213 return reinterpret_cast<atomic_uint32_t *>(const_cast<a32 *>(a));
532 a32 __tsan_atomic32_load(const volatile a32 *a, morder mo) {
559 void __tsan_atomic32_store(volatile a32 *a, a32 v, morder mo) {
586 a32 __tsan_atomic32_exchange(volatile a32 *a, a32
[all...]
/external/elfutils/src/libebl/
H A Deblobjnote.c66 Elf32_Addr a32[3]; member in union:__anon4626
112 pc = addrs.a32[0];
113 base = addrs.a32[1];
114 sem = addrs.a32[2];
/external/v8/test/mjsunit/compiler/
H A Dosr-regress-max-locals.js36 a31, a32, a33, a34, a35, a36, a37, a38, a39, a40,
/external/elfutils/src/libdwfl/
H A Dlinux-proc-maps.c112 Elf32_auxv_t a32[128]; member in union:__anon4623
116 eu_static_assert (sizeof d.a64 == sizeof d.a32);
124 for (size_t a32i = 0; a32i < nread / sizeof d.a32[0]; a32i++)
126 const Elf32_auxv_t *a32 = d.a32 + a32i; local
127 switch (a32->a_type)
130 sysinfo_ehdr32 = a32->a_un.a_val;
133 segment_align32 = a32->a_un.a_val;
H A Dlink_map.c54 Elf32_auxv_t a32[size / sizeof (Elf32_auxv_t)]; member in union:__anon4615
86 if (u->a32[i].a_type == BE32 (PROBE_TYPE)
87 && u->a32[i].a_un.a_val == BE32 (PROBE_VAL32))
93 if (u->a32[i].a_type == LE32 (PROBE_TYPE)
94 && u->a32[i].a_un.a_val == LE32 (PROBE_VAL32))
282 Elf32_Addr a32[n];
290 addrs[i] = BE32 (in->a32[i]);
293 addrs[i] = LE32 (in->a32[i]);
638 Elf32_Addr a32;
645 ? BE32 (u->a32)
280 Elf32_Addr a32[n]; member in union:__anon4616
635 Elf32_Addr a32; member in union:__anon4617
[all...]
/external/chromium-trace/trace-viewer/tracing/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...]
H A Dmat3.js504 a30 = a[12], a31 = a[13], a32 = a[14], a33 = a[15],
513 b07 = a20 * a32 - a22 * a30,
515 b09 = a21 * a32 - a22 * a31,
517 b11 = a22 * a33 - a23 * a32,
535 out[6] = (a31 * b05 - a32 * b04 + a33 * b03) * det;
536 out[7] = (a32 * b02 - a30 * b05 - a33 * b01) * det;
/external/e2fsprogs/lib/ext2fs/
H A Ddblist.c376 struct ext2_db_entry a32, b32; local
378 a32.ino = db_a->ino; a32.blk = db_a->blk;
379 a32.blockcnt = db_a->blockcnt;
384 return sortfunc32(&a32, &b32);
/external/skia/src/utils/
H A DSkMatrix44.cpp429 double a32 = fMat[3][2]; local
439 double b07 = a20 * a32 - a22 * a30;
441 double b09 = a21 * a32 - a22 * a31;
443 double b11 = a22 * a33 - a23 * a32;
516 double a32 = fMat[3][2]; local
534 double b07 = a20 * a32 - a22 * a30;
536 double b09 = a21 * a32 - a22 * a31;
578 inverse->fMat[3][2] = SkDoubleToMScalar(a31 * b01 - a30 * b03 - a32 * b00);
592 double b07 = a20 * a32 - a22 * a30;
594 double b09 = a21 * a32
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDexFile.java654 Adler32 a32 = new Adler32();
656 a32.update(bytes, 12, bytes.length - 12);
658 int sum = (int) a32.getValue();
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/dist/
H A Dgl-matrix.js1318 a30 = a[12], a31 = a[13], a32 = a[14], a33 = a[15],
1327 b07 = a20 * a32 - a22 * a30,
1329 b09 = a21 * a32 - a22 * a31,
1331 b11 = a22 * a33 - a23 * a32,
1349 out[6] = (a31 * b05 - a32 * b04 + a33 * b03) * det;
1350 out[7] = (a32 * b02 - a30 * b05 - a33 * b01) * det;
1579 a30 = a[12], a31 = a[13], a32 = a[14], a33 = a[15],
1588 b07 = a20 * a32 - a22 * a30,
1590 b09 = a21 * a32 - a22 * a31,
1592 b11 = a22 * a33 - a23 * a32,
[all...]
/external/webp/src/dsp/
H A Denc_sse2.c137 // a02 a12 a22 a32 x x x x
150 // a02 a12 a22 a32 b02 b12 b22 b32
184 // a30 a31 a32 a33 b30 b31 b32 b33
190 // a20 a30 a21 a31 a22 a32 a23 a33
199 // a02 a12 a22 a32 a03 a13 a23 a33
207 // a02 a12 a22 a32 b02 b12 b22 b32
246 // a30 a31 a32 a33 b30 b31 b32 b33
252 // a20 a30 a21 a31 a22 a32 a23 a33
261 // a02 a12 a22 a32 a03 a13 a23 a33
269 // a02 a12 a22 a32 b0
390 const __m128i a32 = _mm_sub_epi16(s01, s32); local
419 const __m128i a32 = _mm_sub_epi16(v01, v32); local
[all...]
/external/v8/test/mjsunit/harmony/
H A Dtypedarrays.js407 var a32 = a31.subarray(2, 6)
408 a31.set(a32, 4)
410 assertArrayPrefix([6, 8, 6, 8], a32)
/external/webrtc/src/common_audio/signal_processing/include/
H A Dsignal_processing_library.h94 #define WEBRTC_SPL_MUL_32_32_RSFT32BI(a32, b32) \
96 (WebRtc_Word16)(a32 >> 16)), b32) + \
98 (WebRtc_Word16)((a32 & 0x0000FFFF) >> 1)), b32) >> 15)))
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h186 static __inline void Address32To64(LPADDRESS a32,LPADDRESS64 a64) { argument
187 a64->Offset = (ULONG64)(LONG64)(LONG)a32->Offset;
188 a64->Segment = a32->Segment;
189 a64->Mode = a32->Mode;
192 static __inline void Address64To32(LPADDRESS64 a64,LPADDRESS a32) { argument
193 a32->Offset = (ULONG)a64->Offset;
194 a32->Segment = a64->Segment;
195 a32->Mode = a64->Mode;
/external/eigen/Eigen/src/Eigenvalues/
H A DRealQZ.h412 a21=m_S.coeff(f+1,f+0), a22=m_S.coeff(f+1,f+1), a32=m_S.coeff(f+2,f+1), local
427 z = a21*a32*b11i*b22i;
455 a32 = m_S.coeff(f+2,f+1), local
469 z = a32/b22;
/external/webrtc/src/common_audio/signal_processing/
H A Dsignal_processing_unittest.cc63 int a32 = WEBRTC_SPL_WORD32_MAX; local
67 EXPECT_EQ(5, WEBRTC_SPL_MUL_32_32_RSFT32BI(a32, A));

Completed in 504 milliseconds

12