michael@0: ; michael@0: ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. michael@0: ; michael@0: ; Use of this source code is governed by a BSD-style license michael@0: ; that can be found in the LICENSE file in the root of the source michael@0: ; tree. An additional intellectual property rights grant can be found michael@0: ; in the file PATENTS. All contributing project authors may michael@0: ; be found in the AUTHORS file in the root of the source tree. michael@0: ; michael@0: michael@0: michael@0: EXPORT |vp8_dequantize_b_loop_neon| michael@0: ARM michael@0: REQUIRE8 michael@0: PRESERVE8 michael@0: michael@0: AREA ||.text||, CODE, READONLY, ALIGN=2 michael@0: ; r0 short *Q, michael@0: ; r1 short *DQC michael@0: ; r2 short *DQ michael@0: |vp8_dequantize_b_loop_neon| PROC michael@0: vld1.16 {q0, q1}, [r0] michael@0: vld1.16 {q2, q3}, [r1] michael@0: michael@0: vmul.i16 q4, q0, q2 michael@0: vmul.i16 q5, q1, q3 michael@0: michael@0: vst1.16 {q4, q5}, [r2] michael@0: michael@0: bx lr michael@0: michael@0: ENDP michael@0: michael@0: END