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

Side by Side Diff: source/libvpx/vp9/encoder/x86/vp9_subpel_variance.asm

Issue 1169543007: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 6 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) 2010 The WebM project authors. All Rights Reserved. 2 ; Copyright (c) 2010 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 %include "third_party/x86inc/x86inc.asm" 11 %include "third_party/x86inc/x86inc.asm"
12 12
13 SECTION_RODATA 13 SECTION_RODATA
14 pw_8: times 8 dw 8 14 pw_8: times 8 dw 8
15 bilin_filter_m_sse2: times 8 dw 16 15 bilin_filter_m_sse2: times 8 dw 16
16 times 8 dw 0 16 times 8 dw 0
17 times 8 dw 15
18 times 8 dw 1
19 times 8 dw 14 17 times 8 dw 14
20 times 8 dw 2 18 times 8 dw 2
21 times 8 dw 13
22 times 8 dw 3
23 times 8 dw 12 19 times 8 dw 12
24 times 8 dw 4 20 times 8 dw 4
25 times 8 dw 11
26 times 8 dw 5
27 times 8 dw 10 21 times 8 dw 10
28 times 8 dw 6 22 times 8 dw 6
29 times 8 dw 9
30 times 8 dw 7
31 times 16 dw 8 23 times 16 dw 8
32 times 8 dw 7
33 times 8 dw 9
34 times 8 dw 6 24 times 8 dw 6
35 times 8 dw 10 25 times 8 dw 10
36 times 8 dw 5
37 times 8 dw 11
38 times 8 dw 4 26 times 8 dw 4
39 times 8 dw 12 27 times 8 dw 12
40 times 8 dw 3
41 times 8 dw 13
42 times 8 dw 2 28 times 8 dw 2
43 times 8 dw 14 29 times 8 dw 14
44 times 8 dw 1
45 times 8 dw 15
46 30
47 bilin_filter_m_ssse3: times 8 db 16, 0 31 bilin_filter_m_ssse3: times 8 db 16, 0
48 times 8 db 15, 1
49 times 8 db 14, 2 32 times 8 db 14, 2
50 times 8 db 13, 3
51 times 8 db 12, 4 33 times 8 db 12, 4
52 times 8 db 11, 5
53 times 8 db 10, 6 34 times 8 db 10, 6
54 times 8 db 9, 7
55 times 16 db 8 35 times 16 db 8
56 times 8 db 7, 9
57 times 8 db 6, 10 36 times 8 db 6, 10
58 times 8 db 5, 11
59 times 8 db 4, 12 37 times 8 db 4, 12
60 times 8 db 3, 13
61 times 8 db 2, 14 38 times 8 db 2, 14
62 times 8 db 1, 15
63 39
64 SECTION .text 40 SECTION .text
65 41
66 ; int vp9_sub_pixel_varianceNxh(const uint8_t *src, ptrdiff_t src_stride, 42 ; int vp9_sub_pixel_varianceNxh(const uint8_t *src, ptrdiff_t src_stride,
67 ; int x_offset, int y_offset, 43 ; int x_offset, int y_offset,
68 ; const uint8_t *dst, ptrdiff_t dst_stride, 44 ; const uint8_t *dst, ptrdiff_t dst_stride,
69 ; int height, unsigned int *sse); 45 ; int height, unsigned int *sse);
70 ; 46 ;
71 ; This function returns the SE and stores SSE in the given pointer. 47 ; This function returns the SE and stores SSE in the given pointer.
72 48
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 SUBPEL_VARIANCE 4, 1 1387 SUBPEL_VARIANCE 4, 1
1412 INIT_XMM sse2 1388 INIT_XMM sse2
1413 SUBPEL_VARIANCE 8, 1 1389 SUBPEL_VARIANCE 8, 1
1414 SUBPEL_VARIANCE 16, 1 1390 SUBPEL_VARIANCE 16, 1
1415 1391
1416 INIT_MMX ssse3 1392 INIT_MMX ssse3
1417 SUBPEL_VARIANCE 4, 1 1393 SUBPEL_VARIANCE 4, 1
1418 INIT_XMM ssse3 1394 INIT_XMM ssse3
1419 SUBPEL_VARIANCE 8, 1 1395 SUBPEL_VARIANCE 8, 1
1420 SUBPEL_VARIANCE 16, 1 1396 SUBPEL_VARIANCE 16, 1
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698