Searched refs:in16 (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/opus/src/silk/arm/
H A Dmacros_armv5e.h186 static OPUS_INLINE opus_int32 silk_CLZ16_armv5(opus_int16 in16) argument
193 : "r"(in16<<16|0x8000)
197 #define silk_CLZ16(in16) (silk_CLZ16_armv5(in16))
/external/libopus/silk/arm/
H A Dmacros_armv5e.h186 static OPUS_INLINE opus_int32 silk_CLZ16_armv5(opus_int16 in16) argument
193 : "r"(in16<<16|0x8000)
197 #define silk_CLZ16(in16) (silk_CLZ16_armv5(in16))
/external/chromium_org/third_party/opus/src/silk/
H A Dmacros.h84 static OPUS_INLINE opus_int32 silk_CLZ16(opus_int16 in16) argument
86 return 32 - EC_ILOG(in16<<16|0x8000);
H A DMacroCount.h205 static OPUS_INLINE opus_int32 SigProcFIX_CLZ16(opus_int16 in16) argument
209 if( in16 == 0 ) {
213 if( in16 & 0xFF00 ) {
214 if( in16 & 0xF000 ) {
215 in16 >>= 12;
218 in16 >>= 8;
221 if( in16 & 0xFFF0 ) {
223 in16 >>= 4;
229 if( in16 & 0xC ) {
230 if( in16
[all...]
/external/libopus/silk/
H A Dmacros.h84 static OPUS_INLINE opus_int32 silk_CLZ16(opus_int16 in16) argument
86 return 32 - EC_ILOG(in16<<16|0x8000);
H A DMacroCount.h205 static OPUS_INLINE opus_int32 SigProcFIX_CLZ16(opus_int16 in16) argument
209 if( in16 == 0 ) {
213 if( in16 & 0xFF00 ) {
214 if( in16 & 0xF000 ) {
215 in16 >>= 12;
218 in16 >>= 8;
221 if( in16 & 0xFFF0 ) {
223 in16 >>= 4;
229 if( in16 & 0xC ) {
230 if( in16
[all...]
/external/openssl/crypto/md5/asm/
H A Dmd5-ia64.S132 #define M15 in16
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_dct32x32_avx2.c296 __m256i in16 = _mm256_loadu_si256((const __m256i *)(in + 16 * 32)); local
303 step1[15] = _mm256_add_epi16(in15, in16);
304 step1[16] = _mm256_sub_epi16(in15, in16);
H A Dvp9_dct32x32_sse2.c290 __m128i in16 = _mm_loadu_si128((const __m128i *)(in + 16 * 32)); local
297 step1[15] = _mm_add_epi16(in15, in16);
298 step1[16] = _mm_sub_epi16(in15, in16);
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_dct32x32_avx2.c296 __m256i in16 = _mm256_loadu_si256((const __m256i *)(in + 16 * 32)); local
303 step1[15] = _mm256_add_epi16(in15, in16);
304 step1[16] = _mm256_sub_epi16(in15, in16);
H A Dvp9_dct32x32_sse2.c287 __m128i in16 = _mm_loadu_si128((const __m128i *)(in + 16 * 32)); local
294 step1[15] = _mm_add_epi16(in15, in16);
295 step1[16] = _mm_sub_epi16(in15, in16);

Completed in 228 milliseconds