| OLD | NEW |
| 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 %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 SECTION .text | 31 SECTION .text |
| 48 | 32 |
| 49 ; int vp9_sub_pixel_varianceNxh(const uint8_t *src, ptrdiff_t src_stride, | 33 ; int vp9_sub_pixel_varianceNxh(const uint8_t *src, ptrdiff_t src_stride, |
| 50 ; int x_offset, int y_offset, | 34 ; int x_offset, int y_offset, |
| 51 ; const uint8_t *dst, ptrdiff_t dst_stride, | 35 ; const uint8_t *dst, ptrdiff_t dst_stride, |
| 52 ; int height, unsigned int *sse); | 36 ; int height, unsigned int *sse); |
| 53 ; | 37 ; |
| 54 ; This function returns the SE and stores SSE in the given pointer. | 38 ; This function returns the SE and stores SSE in the given pointer. |
| 55 | 39 |
| (...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1046 STORE_AND_RET | 1030 STORE_AND_RET |
| 1047 %endmacro | 1031 %endmacro |
| 1048 | 1032 |
| 1049 INIT_XMM sse2 | 1033 INIT_XMM sse2 |
| 1050 SUBPEL_VARIANCE 8 | 1034 SUBPEL_VARIANCE 8 |
| 1051 SUBPEL_VARIANCE 16 | 1035 SUBPEL_VARIANCE 16 |
| 1052 | 1036 |
| 1053 INIT_XMM sse2 | 1037 INIT_XMM sse2 |
| 1054 SUBPEL_VARIANCE 8, 1 | 1038 SUBPEL_VARIANCE 8, 1 |
| 1055 SUBPEL_VARIANCE 16, 1 | 1039 SUBPEL_VARIANCE 16, 1 |
| OLD | NEW |