/external/libvpx/libvpx/vpx_dsp/mips/ |
D | fwd_dct32x32_msa.c | 133 v8i16 in16, in17, in18, in19, in20, in21, in22, in23; in fdct8x32_1d_column_odd_store() local 167 in16 = LD_SH(input); in fdct8x32_1d_column_odd_store() 174 vec4 = in16 - in23; in fdct8x32_1d_column_odd_store() 181 ADD4(in16, in23, in17, in22, in30, in25, in31, in24, in16, in17, in30, in31); in fdct8x32_1d_column_odd_store() 184 ADD4(in16, in19, in17, in18, in30, in29, in31, in28, in27, in22, in21, in25); in fdct8x32_1d_column_odd_store() 198 SUB4(in17, in18, in16, in19, in31, in28, in30, in29, in23, in26, in24, in20); in fdct8x32_1d_column_odd_store() 214 in16 = in20; in fdct8x32_1d_column_odd_store() 216 DOTP_CONST_PAIR(-in16, in27, cospi_24_64, cospi_8_64, in20, in27); in fdct8x32_1d_column_odd_store() 220 ADD2(in28, in29, in31, in30, in16, in19); in fdct8x32_1d_column_odd_store() 221 DOTP_CONST_PAIR(in19, in16, cospi_27_64, cospi_5_64, vec5, vec4); in fdct8x32_1d_column_odd_store() [all …]
|
/external/libopus/silk/arm/ |
D | macros_armv5e.h | 186 static OPUS_INLINE opus_int32 silk_CLZ16_armv5(opus_int16 in16) in silk_CLZ16_armv5() argument 193 : "r"(in16<<16|0x8000) in silk_CLZ16_armv5() 197 #define silk_CLZ16(in16) (silk_CLZ16_armv5(in16)) argument
|
/external/libopus/silk/ |
D | MacroCount.h | 205 static OPUS_INLINE opus_int32 SigProcFIX_CLZ16(opus_int16 in16) in SigProcFIX_CLZ16() argument 209 if( in16 == 0 ) { in SigProcFIX_CLZ16() 213 if( in16 & 0xFF00 ) { in SigProcFIX_CLZ16() 214 if( in16 & 0xF000 ) { in SigProcFIX_CLZ16() 215 in16 >>= 12; in SigProcFIX_CLZ16() 218 in16 >>= 8; in SigProcFIX_CLZ16() 221 if( in16 & 0xFFF0 ) { in SigProcFIX_CLZ16() 223 in16 >>= 4; in SigProcFIX_CLZ16() 229 if( in16 & 0xC ) { in SigProcFIX_CLZ16() 230 if( in16 & 0x8 ) in SigProcFIX_CLZ16() [all …]
|
D | macros.h | 121 static OPUS_INLINE opus_int32 silk_CLZ16(opus_int16 in16) in silk_CLZ16() argument 123 return 32 - EC_ILOG(in16<<16|0x8000); in silk_CLZ16()
|
/external/libopus/silk/mips/ |
D | macros_mipsr1.h | 75 static inline opus_int32 silk_CLZ16(opus_int16 in16) in silk_CLZ16() argument 78 opus_int32 in32 = (opus_int32 )in16; in silk_CLZ16()
|
/external/llvm/test/Transforms/InstMerge/ |
D | st_sink_barrier_call.ll | 13 %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2 14 %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8
|
D | st_sink_no_barrier_call.ll | 13 %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2 14 %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8
|
D | st_sink_with_barrier.ll | 10 %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2 11 %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8
|
D | st_sink_no_barrier_load.ll | 11 %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2 12 %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8
|
D | st_sink_no_barrier_store.ll | 11 %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2 12 %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8
|
D | st_sink_two_stores.ll | 11 %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2 12 %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8
|
D | ld_hoist_st_sink.ll | 11 %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2 12 %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | fwd_dct32x32_impl_avx2.h | 323 __m256i in16 = _mm256_loadu_si256((const __m256i *)(in + 16 * 32)); in FDCT32x32_2D_AVX2() local 330 step1[15] = _mm256_add_epi16(in15, in16); in FDCT32x32_2D_AVX2() 331 step1[16] = _mm256_sub_epi16(in15, in16); in FDCT32x32_2D_AVX2()
|
D | fwd_dct32x32_impl_sse2.h | 339 __m128i in16 = _mm_loadu_si128((const __m128i *)(in + 16 * 32)); in FDCT32x32_2D() local 346 step1[15] = ADD_EPI16(in15, in16); in FDCT32x32_2D() 347 step1[16] = SUB_EPI16(in15, in16); in FDCT32x32_2D()
|