Home
last modified time | relevance | path

Searched defs:a32 (Results 1 – 25 of 49) sorted by relevance

12

/external/libopus/silk/
Dmacros.h44 #define silk_SMULWB(a32, b32) ((opus_int32)(((a32) * (opus_int64)((opus_int16)(b32))) >>… argument
46 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a… argument
51 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)(… argument
53 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))… argument
58 #define silk_SMULWT(a32, b32) ((opus_int32)(((a32) * (opus_int64)((b32) >> 16)) >> 16)) argument
60 #define silk_SMULWT(a32, b32) (((a32) >> 16) * ((b32) >> 16) + ((((a32) & 0x0000FFFF) * … argument
65 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16))… argument
67 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument
71 #define silk_SMULBB(a32, b32) ((opus_int32)((opus_int16)(a32)) * (opus_int32)((opus_int1… argument
74 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument
[all …]
DMacroCount.h54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ in silk_MUL()
62 static OPUS_INLINE opus_uint32 silk_MUL_uint(opus_uint32 a32, opus_uint32 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()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint()
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ in silk_SMULWB()
92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWB()
100 static OPUS_INLINE opus_int32 silk_SMULWT(opus_int32 a32, opus_int32 b32){ in silk_SMULWT()
107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWT()
115 static OPUS_INLINE opus_int32 silk_SMULBB(opus_int32 a32, opus_int32 b32){ in silk_SMULBB()
122 static OPUS_INLINE opus_int32 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABB()
[all …]
DSigProc_FIX.h398 static OPUS_INLINE opus_int32 silk_ROR32( opus_int32 a32, opus_int rot ) in silk_ROR32()
427 #define silk_MUL(a32, b32) ((a32) * (b32)) argument
430 #define silk_MUL_uint(a32, b32) silk_MUL(a32, b32) argument
433 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32))) argument
436 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32) argument
439 #define silk_SMULTT(a32, b32) (((a32) >> 16) * ((b32) >> 16)) argument
442 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16)) argument
447 #define silk_SMULL(a32, b32) ((opus_int64)(a32) * /*(opus_int64)*/(b32)) argument
474 #define silk_SMLABB_ovflw(a32, b32, c32) (silk_ADD32_ovflw((a32) , ((opus_int32)((opus_int16)(b3… argument
476 #define silk_DIV32_16(a32, b16) ((opus_int32)((a32) / (b16))) argument
[all …]
DMacroDebug.h150 static OPUS_INLINE opus_int32 silk_ADD_SAT32_(opus_int32 a32, opus_int32 b32, char *file, int 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_()
257 static OPUS_INLINE opus_int32 silk_MUL_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_MUL_()
274 static OPUS_INLINE opus_uint32 silk_MUL_uint_(opus_uint32 a32, opus_uint32 b32, char *file, int lin… in silk_MUL_uint_()
289 static OPUS_INLINE opus_int32 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file,… in silk_MLA_()
304 static OPUS_INLINE opus_int32 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, cha… in silk_MLA_uint_()
319 static OPUS_INLINE opus_int32 silk_SMULWB_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_SMULWB_()
334 static OPUS_INLINE opus_int32 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWB_()
349 static OPUS_INLINE opus_int32 silk_SMULWT_(opus_int32 a32, opus_int32 b32, char *file, int line){ in silk_SMULWT_()
364 static OPUS_INLINE opus_int32 silk_SMLAWT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWT_()
[all …]
DLPC_inv_pred_gain.c38 #define MUL32_FRAC_Q(a32, b32, Q) ((opus_int32)(silk_RSHIFT_ROUND64(silk_SMULL(a32, b32), Q))) argument
DInlines.h98 const opus_int32 a32, /* I numerator (Q0) */ in silk_DIV32_varQ()
/external/skqp/src/opts/
DSk4px_NEON.h43 auto a32 = (uint32x4_t)a8; // in Load4Alphas() local
51 auto a32 = (uint32x4_t)a8; // in Load2Alphas() local
/external/skia/src/opts/
DSk4px_NEON.h43 auto a32 = (uint32x4_t)a8; // in Load4Alphas() local
51 auto a32 = (uint32x4_t)a8; // in Load2Alphas() local
/external/elfutils/libebl/
Deblobjnote.c69 Elf32_Addr a32[3]; in ebl_object_note() member
154 Elf32_Addr a32[2]; in ebl_object_note() member
373 Elf32_Addr a32; in ebl_object_note() member
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interface.h146 typedef unsigned int a32; typedef
/external/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_interface.h196 typedef unsigned int a32; typedef
/external/webrtc/modules/audio_coding/codecs/ilbc/
Dcb_construct.c51 int32_t a32; in WebRtcIlbcfix_CbConstruct() local
/external/libpng/contrib/tools/
Dchecksum-icc.c22 uLong a32 = adler32(0, NULL, 0); in read_one_file() local
/external/elfutils/libdwfl/
Dlinux-proc-maps.c116 Elf32_auxv_t a32[128]; in grovel_auxv() member
130 const Elf32_auxv_t *a32 = d.a32 + a32i; in grovel_auxv() local
Dlink_map.c73 do_check32 (const char *a32, uint_fast8_t *elfdata) in do_check32()
272 Elf32_Addr (*a32)[n] = vaddr - (*read_vaddr) + (*buffer); in read_addrs() local
663 Elf32_Addr a32; in consider_executable() member
/external/libopus/silk/mips/
Dmacros_mipsr1.h47 #define silk_SMLAWB(a32, b32, c32) ((a32) + silk_SMULWB(b32, c32)) argument
/external/webrtc/common_audio/signal_processing/include/
Dspl_inl.h142 const int32_t a32 = a; in WebRtcSpl_NormW16() local
/external/llvm-project/flang/test/Semantics/
Dkinds02.f9033 real(kind=32) :: a32 variable
/external/eigen/Eigen/src/Eigenvalues/
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), in step() local
455 a32 = m_S.coeff(f+2,f+1), in step() local
/external/protobuf/src/google/protobuf/stubs/
Dint128.h340 uint64 a32 = lo_ >> 32; variable
/external/libaom/libaom/aom_dsp/x86/
Dintrapred_avx2.c1057 __m256i a0, a1, a32, a16; in highbd_dr_prediction_z1_4xN_internal_avx2() local
1127 __m256i a0, a1, a32, a16; in highbd_dr_prediction_32bit_z1_4xN_internal_avx2() local
1215 __m256i a0, a1, a0_1, a1_1, a32, a16; in highbd_dr_prediction_32bit_z1_8xN_internal_avx2() local
1298 __m256i a0, a1, a32, a16, c3f; in highbd_dr_prediction_z1_8xN_internal_avx2() local
1399 __m256i a0, a0_1, a1, a1_1, a32, a16; in highbd_dr_prediction_32bit_z1_16xN_internal_avx2() local
1478 __m256i a0, a1, a32, a16, c3f; in highbd_dr_prediction_z1_16xN_internal_avx2() local
1552 __m256i a0, a0_1, a1, a1_1, a32, a16, c3f; in highbd_dr_prediction_32bit_z1_32xN_internal_avx2() local
1649 __m256i a0, a1, a32, a16, c3f; in highbd_dr_prediction_z1_32xN_internal_avx2() local
1743 __m256i a0, a0_1, a1, a1_1, a32, a16; in highbd_dr_prediction_32bit_z1_64xN_avx2() local
1841 __m256i a0, a1, a32, a16, c3f; in highbd_dr_prediction_z1_64xN_avx2() local
[all …]
/external/libopus/silk/arm/
DLPC_inv_pred_gain_neon_intr.c39 #define MUL32_FRAC_Q(a32, b32, Q) ((opus_int32)(silk_RSHIFT_ROUND64(silk_SMULL(a32, b32), Q))) argument
/external/mesa3d/src/util/tests/fast_idiv_by_const/
Dfast_idiv_by_const_test.cpp97 uint32_t a32[2] = { (uint32_t)a, (uint32_t)(a >> 32) }; in umul_add_high() local
121 uint32_t a32[4] = { in smul_high() local
/external/llvm-project/compiler-rt/test/builtins/Unit/
Datomic_test.c141 uint32_t a32, b32; variable
/external/e2fsprogs/lib/ext2fs/
Ddblist.c364 struct ext2_db_entry a32, b32; in dir_block_cmp() local

12