Home
last modified time | relevance | path

Searched refs:tmpr (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dtransform_neon.c40 int16x8_t tmpr = vld1q_s16(kCosTab); in ComplexMulAndFindMaxNeon() local
50 int32x4_t tmp0 = vmull_s16(vget_low_s16(tmpr), vget_low_s16(inre1)); in ComplexMulAndFindMaxNeon()
51 int32x4_t tmp1 = vmull_s16(vget_low_s16(tmpr), vget_low_s16(inre2)); in ComplexMulAndFindMaxNeon()
55 int32x4_t tmp2 = vmull_high_s16(tmpr, inre1); in ComplexMulAndFindMaxNeon()
56 int32x4_t tmp3 = vmull_high_s16(tmpr, inre2); in ComplexMulAndFindMaxNeon()
60 int32x4_t tmp2 = vmull_s16(vget_high_s16(tmpr), vget_high_s16(inre1)); in ComplexMulAndFindMaxNeon()
61 int32x4_t tmp3 = vmull_s16(vget_high_s16(tmpr), vget_high_s16(inre2)); in ComplexMulAndFindMaxNeon()
164 int16x4_t tmpr = vld1_s16(kSinTab2); in PostShiftAndSeparateNeon() local
174 tmpr = vneg_s16(tmpr); in PostShiftAndSeparateNeon()
177 tmpr = vrev64_s16(tmpr); in PostShiftAndSeparateNeon()
[all …]
/external/llvm/test/CodeGen/ARM/
D2009-09-28-LdStOptiBug.ll13 %tmpr = fadd double %x.0, %x76 ; <double> [#uses=1]
15 store double %tmpr, double* %agg.result.0, align 8
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
D2009-09-28-LdStOptiBug.ll13 %tmpr = fadd double %x.0, %x76 ; <double> [#uses=1]
15 store double %tmpr, double* %agg.result.0, align 8
/external/llvm/test/CodeGen/X86/
D2010-05-25-DotDebugLoc.ll181 %tmpr = fadd float %x.1, %81, !dbg !42 ; <float> [#uses=1]
182 %tmp89 = bitcast float %tmpr to i32 ; <i32> [#uses=1]
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2010-05-25-DotDebugLoc.ll183 %tmpr = fadd float %x.1, %81, !dbg !42 ; <float> [#uses=1]
184 %tmp89 = bitcast float %tmpr to i32 ; <i32> [#uses=1]
/external/swiftshader/third_party/subzero/src/DartARM32/
Dassembler_arm.cc3231 DRegister tmpl, DRegister tmpr) { in IntegerDivide() argument
3232 ASSERT(tmpl != tmpr); in IntegerDivide()
3238 SRegister stmpr = static_cast<SRegister>(2 * tmpr); in IntegerDivide()
3242 vcvtdi(tmpr, stmpr); // right is in tmpr. in IntegerDivide()
3243 vdivd(tmpr, tmpl, tmpr); in IntegerDivide()
3244 vcvtid(stmpr, tmpr); in IntegerDivide()
Dassembler_arm.h864 DRegister tmpl, DRegister tmpr);