Searched defs:a32 (Results 1 - 24 of 24) sorted by relevance

/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/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dcb_construct.c41 int32_t a32; local
59 a32 = (*gainPtr++) * cbvec0[j];
60 a32 += (*gainPtr++) * cbvec1[j];
61 a32 += (*gainPtr) * cbvec2[j];
63 decvector[j] = (int16_t)((a32 + 8192) >> 14);
/external/elfutils/libebl/
H A Deblobjnote.c64 Elf32_Addr a32[3]; member in union:__anon5697
110 pc = addrs.a32[0];
111 base = addrs.a32[1];
112 sem = addrs.a32[2];
/external/libopus/silk/
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 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 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 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...]
/external/skia/src/opts/
H A DSk4px_NEON.h77 auto a32 = (uint32x4_t)a8; // local
78 return Sk16b((uint8x16_t)vmulq_n_u32(a32, 0x01010101)); // 3333 2222 1111 0000
85 auto a32 = (uint32x4_t)a8; // local
86 return Sk16b((uint8x16_t)vmulq_n_u32(a32, 0x01010101)); // ____ ____ 1111 0000
/external/dng_sdk/source/
H A Ddng_matrix.cpp388 real64 a30, real64 a31, real64 a32)
409 fData [3] [2] = a32;
385 dng_matrix_4by3(real64 a00, real64 a01, real64 a02, real64 a10, real64 a11, real64 a12, real64 a20, real64 a21, real64 a22, real64 a30, real64 a31, real64 a32) argument
/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/pdfium/xfa/src/fxbarcode/common/
H A DBC_CommonPerspectiveTransform.cpp30 FX_FLOAT a32,
41 m_a32(a32),
77 FX_FLOAT a32 = m_a32; local
85 (*points)[i + 1] = (a12 * x + a22 * y + a32) / denominator;
25 CBC_CommonPerspectiveTransform(FX_FLOAT a11, FX_FLOAT a21, FX_FLOAT a31, FX_FLOAT a12, FX_FLOAT a22, FX_FLOAT a32, FX_FLOAT a13, FX_FLOAT a23, FX_FLOAT a33) argument
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dsignal_processing_unittest.cc95 int32_t a32 = 111121; local
98 EXPECT_EQ(17, WebRtcSpl_GetSizeInBits(a32));
103 EXPECT_EQ(14, WebRtcSpl_NormW32(a32));
117 EXPECT_EQ(15, WebRtcSpl_NormU32(static_cast<uint32_t>(a32)));
122 EXPECT_EQ(109410, WebRtcSpl_AddSatW32(a32, b32));
123 EXPECT_EQ(112832, WebRtcSpl_SubSatW32(a32, b32));
125 a32 = 0x80000000;
128 EXPECT_EQ(static_cast<int>(0x80000000), WebRtcSpl_AddSatW32(a32, b32));
129 a32 = 0x7fffffff;
131 EXPECT_EQ(0x7fffffff, WebRtcSpl_AddSatW32(a32, b3
[all...]
/external/elfutils/libdwfl/
H A Dlinux-proc-maps.c112 Elf32_auxv_t a32[128]; member in union:__anon5694
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.c74 do_check32 (size_t i, const Elf32_auxv_t (*a32)[], uint_fast8_t *elfdata) argument
79 uint32_t type = read_4ubyte_unaligned_noncvt (&(*a32)[i].a_type);
80 uint32_t val = read_4ubyte_unaligned_noncvt (&(*a32)[i].a_un.a_val);
99 #define check32(n) do_check32 (n, a32, elfdata)
107 const Elf32_auxv_t (*a32)[size / sizeof (Elf32_auxv_t)] = (void *) auxv;
287 Elf32_Addr (*a32)[n] = vaddr - read_vaddr + buffer;
288 Elf64_Addr (*a64)[n] = (void *) a32;
294 addrs[i] = BE32 (read_4ubyte_unaligned_noncvt (&(*a32)[i]));
297 addrs[i] = LE32 (read_4ubyte_unaligned_noncvt (&(*a32)[i]));
644 Elf32_Addr a32;
641 Elf32_Addr a32; member in union:__anon5692
[all...]
/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/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/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;
533 double a32 = fMat[3][2]; local
551 double b07 = a20 * a32 - a22 * a30;
553 double b09 = a21 * a32 - a22 * a31;
592 inverse->fMat[3][2] = SkDoubleToMScalar(a31 * b01 - a30 * b03 - a32 * b00);
612 double b07 = a20 * a32 - a22 * a30;
614 double b09 = a21 * a32
[all...]
/external/webp/src/dsp/
H A Denc_mips_dsp_r2.c611 int a10, a32, temp0, temp1, temp2, temp3, temp4, temp5; local
617 "lbu %[a32], 3(%[top]) \n\t"
621 "append %[a32], %[temp2], 16 \n\t"
634 "addu.ph %[temp1], %[temp3], %[a32] \n\t"
636 "addu.ph %[temp2], %[temp2], %[a32] \n\t"
644 "addu.ph %[temp3], %[temp5], %[a32] \n\t"
646 "addu.ph %[temp4], %[temp4], %[a32] \n\t"
659 [a10]"=&r"(a10), [a32]"=&r"(a32)
H A Denc_sse2.c90 // a02 a12 a22 a32 x x x x
103 // a02 a12 a22 a32 b02 b12 b22 b32
137 // a30 a31 a32 a33 b30 b31 b32 b33
143 // a20 a30 a21 a31 a22 a32 a23 a33
152 // a02 a12 a22 a32 a03 a13 a23 a33
160 // a02 a12 a22 a32 b02 b12 b22 b32
199 // a30 a31 a32 a33 b30 b31 b32 b33
205 // a20 a30 a21 a31 a22 a32 a23 a33
214 // a02 a12 a22 a32 a03 a13 a23 a33
222 // a02 a12 a22 a32 b0
301 const __m128i a32 = _mm_sub_epi16(s01, s32); local
339 const __m128i a32 = _mm_sub_epi16(*v01, *v32); local
[all...]
/external/clang/test/SemaCXX/
H A Duninitialized.cpp282 A a32 = moveA(std::move(a32)); // expected-warning {{variable 'a32' is uninitialized when used within its own initialization}} local
344 A a32 = moveA(std::move(a32)); // expected-warning {{variable 'a32' is uninitialized when used within its own initialization}} variable
/external/opencv3/3rdparty/libwebp/dsp/
H A Denc_sse2.c139 // a02 a12 a22 a32 x x x x
152 // a02 a12 a22 a32 b02 b12 b22 b32
186 // a30 a31 a32 a33 b30 b31 b32 b33
192 // a20 a30 a21 a31 a22 a32 a23 a33
201 // a02 a12 a22 a32 a03 a13 a23 a33
209 // a02 a12 a22 a32 b02 b12 b22 b32
248 // a30 a31 a32 a33 b30 b31 b32 b33
254 // a20 a30 a21 a31 a22 a32 a23 a33
263 // a02 a12 a22 a32 a03 a13 a23 a33
271 // a02 a12 a22 a32 b0
393 const __m128i a32 = _mm_sub_epi16(s01, s32); local
422 const __m128i a32 = _mm_sub_epi16(v01, v32); local
[all...]
/external/valgrind/VEX/priv/
H A Dhost_amd64_isel.c1323 HReg a32 = newVRegI(env); local
1339 addInstr(env, mk_iMOVsd_RR(a32s, a32));
1341 addInstr(env, AMD64Instr_Sh64(Ash_SHL, shift, a32));
1343 addInstr(env, AMD64Instr_Sh64(shr_op, shift, a32));
1345 addInstr(env, AMD64Instr_Alu64R(Aalu_MUL, AMD64RMI_Reg(a32), b32));
/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/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...

Completed in 540 milliseconds