/external/chromium_org/third_party/opus/src/silk/ |
resampler_down2.c | 44 opus_int32 in32, out32, Y, X; local 52 in32 = silk_LSHIFT( (opus_int32)in[ 2 * k ], 10 ); 55 Y = silk_SUB32( in32, S[ 0 ] ); 58 S[ 0 ] = silk_ADD32( in32, X ); 61 in32 = silk_LSHIFT( (opus_int32)in[ 2 * k + 1 ], 10 ); 64 Y = silk_SUB32( in32, S[ 1 ] ); 68 S[ 1 ] = silk_ADD32( in32, X );
|
ana_filt_bank_1.c | 48 opus_int32 in32, X, Y, out_1, out_2; local 53 in32 = silk_LSHIFT( (opus_int32)in[ 2 * k ], 10 ); 56 Y = silk_SUB32( in32, S[ 0 ] ); 59 S[ 0 ] = silk_ADD32( in32, X ); 62 in32 = silk_LSHIFT( (opus_int32)in[ 2 * k + 1 ], 10 ); 65 Y = silk_SUB32( in32, S[ 1 ] ); 68 S[ 1 ] = silk_ADD32( in32, X );
|
resampler_private_up2_HQ.c | 46 opus_int32 in32, out32_1, out32_2, Y, X; local 58 in32 = silk_LSHIFT( (opus_int32)in[ k ], 10 ); 61 Y = silk_SUB32( in32, S[ 0 ] ); 64 S[ 0 ] = silk_ADD32( in32, X ); 82 Y = silk_SUB32( in32, S[ 3 ] ); 85 S[ 3 ] = silk_ADD32( in32, X );
|
macros.h | 86 static inline opus_int32 silk_CLZ32(opus_int32 in32) 88 return in32 ? 32 - EC_ILOG(in32) : 32;
|
MacroCount.h | 243 static inline opus_int32 SigProcFIX_CLZ32(opus_int32 in32) 247 if( in32 & 0xFFFF0000 ) { 248 return SigProcFIX_CLZ16((opus_int16)(in32 >> 16)); 250 return SigProcFIX_CLZ16((opus_int16)in32) + 16;
|
/external/webrtc/src/common_audio/signal_processing/ |
resample_by_2.c | 71 WebRtc_Word32 tmp1, tmp2, diff, in32, out32; local 85 in32 = (WebRtc_Word32)(*in++) << 10; 86 diff = in32 - state1; 88 state0 = in32; 97 in32 = (WebRtc_Word32)(*in++) << 10; 98 diff = in32 - state5; 100 state4 = in32; 128 WebRtc_Word32 tmp1, tmp2, diff, in32, out32; local 142 in32 = (WebRtc_Word32)(*in++) << 10; 143 diff = in32 - state1 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_image.c | 227 i32 *in32 = (i32*)tmp; local 231 tmp1 = *in32; in32 += 4; 232 tmp2 = *in32; in32 += 4; 235 tmp1 = *in32; in32 += 4; 236 tmp2 = *in32; 301 i32 *in32 = (i32*)tmp; local 305 tmp1 = *in32; in32 += 2 [all...] |
h264bsd_intra_prediction.c | 1845 u32 *in32, *out32; local [all...] |
/external/chromium_org/third_party/opus/src/silk/arm/ |
macros_armv5e.h | 200 static inline opus_int32 silk_CLZ32_armv5(opus_int32 in32) 207 : "r"(in32) 211 #define silk_CLZ32(in32) (silk_CLZ32_armv5(in32))
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
armVCM4P10_TransformResidual4x4_s.s | 57 in32 RN 9 ;// Src[14] & Src[15] label 148 LDMIA pSrc,{in00,in02,in10,in12,in20,in22,in30,in32} 202 PKHTB trRow32,in32,in22,ASR #16 ;// [15 14] = [15 11] 203 PKHBT trRow22,in22,in32,LSL #16 ;// [11 10] = [14 10]
|
omxVCM4P10_TransformDequantLumaDCFromPair_s.s | 60 in32 RN 9 ;// Src[14] & Src[15] label 161 LDMIA pData,{in00,in02,in10,in12,in20,in22,in30,in32} 212 PKHTB trRow32,in32,in22,ASR #16 ;// [15 14] = [15 11] 213 PKHBT trRow22,in22,in32,LSL #16 ;// [11 10] = [14 10]
|
/external/webrtc/src/common_audio/vad/ |
vad_filterbank.c | 86 int32_t tmp32 = 0, in32 = 0; local 93 in32 = WEBRTC_SPL_LSHIFT_W32(((int32_t) (*in_vector)), 14); 94 state32 = in32 - WEBRTC_SPL_MUL_16_16(filter_coefficients, tmp16);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
vx_core.h | 98 unsigned int (*in32)(struct vx_core *chip, int reg); member in struct:snd_vx_ops 256 snd_assert(chip->ops->in32, return 0); 257 return chip->ops->in32(chip, reg);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
vx_core.h | 98 unsigned int (*in32)(struct vx_core *chip, int reg); member in struct:snd_vx_ops 256 snd_assert(chip->ops->in32, return 0); 257 return chip->ops->in32(chip, reg);
|