Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: source/libvpx/vpx_dsp/x86/highbd_sad4d_sse2.asm

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 ; 1 ;
2 ; Copyright (c) 2014 The WebM project authors. All Rights Reserved. 2 ; Copyright (c) 2014 The WebM project authors. All Rights Reserved.
3 ; 3 ;
4 ; Use of this source code is governed by a BSD-style license 4 ; Use of this source code is governed by a BSD-style license
5 ; that can be found in the LICENSE file in the root of the source 5 ; that can be found in the LICENSE file in the root of the source
6 ; tree. An additional intellectual property rights grant can be found 6 ; tree. An additional intellectual property rights grant can be found
7 ; in the file PATENTS. All contributing project authors may 7 ; in the file PATENTS. All contributing project authors may
8 ; be found in the AUTHORS file in the root of the source tree. 8 ; be found in the AUTHORS file in the root of the source tree.
9 ; 9 ;
10 10
11 %define program_name vpx
12
13 %include "third_party/x86inc/x86inc.asm" 11 %include "third_party/x86inc/x86inc.asm"
14 12
15 SECTION .text 13 SECTION .text
16 14
17 ; HIGH_PROCESS_4x2x4 first, off_{first,second}_{src,ref}, advance_at_end 15 ; HIGH_PROCESS_4x2x4 first, off_{first,second}_{src,ref}, advance_at_end
18 %macro HIGH_PROCESS_4x2x4 5-6 0 16 %macro HIGH_PROCESS_4x2x4 5-6 0
19 movh m0, [srcq +%2*2] 17 movh m0, [srcq +%2*2]
20 %if %1 == 1 18 %if %1 == 1
21 movu m4, [ref1q+%3*2] 19 movu m4, [ref1q+%3*2]
22 movu m5, [ref2q+%3*2] 20 movu m5, [ref2q+%3*2]
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 HIGH_SADNXN4D 32, 32 278 HIGH_SADNXN4D 32, 32
281 HIGH_SADNXN4D 32, 16 279 HIGH_SADNXN4D 32, 16
282 HIGH_SADNXN4D 16, 32 280 HIGH_SADNXN4D 16, 32
283 HIGH_SADNXN4D 16, 16 281 HIGH_SADNXN4D 16, 16
284 HIGH_SADNXN4D 16, 8 282 HIGH_SADNXN4D 16, 8
285 HIGH_SADNXN4D 8, 16 283 HIGH_SADNXN4D 8, 16
286 HIGH_SADNXN4D 8, 8 284 HIGH_SADNXN4D 8, 8
287 HIGH_SADNXN4D 8, 4 285 HIGH_SADNXN4D 8, 4
288 HIGH_SADNXN4D 4, 8 286 HIGH_SADNXN4D 4, 8
289 HIGH_SADNXN4D 4, 4 287 HIGH_SADNXN4D 4, 4
OLDNEW
« no previous file with comments | « source/libvpx/vpx_dsp/x86/highbd_quantize_intrin_sse2.c ('k') | source/libvpx/vpx_dsp/x86/highbd_sad_sse2.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698