Home
last modified time | relevance | path

Searched full:above (Results 1 – 25 of 17215) sorted by relevance

12345678910>>...689

/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dside-effect-analysis-test.mlir8 // expected-remark@above {{ID: 13}}
13 // expected-remark@above {{ID: 11}}
16 // expected-remark@above {{ID: 9}}
17 // expected-remark@above {{Successors: {10}}}
19 // expected-remark@above {{ID: 0}}
20 // expected-remark@above {{Successors: {1}}}
22 // expected-remark@above {{ID: 1}}
23 // expected-remark@above {{Predecessors: {0}}}
24 // expected-remark@above {{Successors: {6}}}
26 // expected-remark@above {{ID: 2}}
[all …]
/external/libvpx/vpx_dsp/
Dintrapred.c22 const uint8_t *above, const uint8_t *left) { in d207_predictor() argument
24 (void)above; in d207_predictor()
46 const uint8_t *above, const uint8_t *left) { in d63_predictor() argument
51 dst[c] = AVG2(above[c], above[c + 1]); in d63_predictor()
52 dst[stride + c] = AVG3(above[c], above[c + 1], above[c + 2]); in d63_predictor()
56 memset(dst + (r + 0) * stride + size, above[bs - 1], bs - size); in d63_predictor()
58 memset(dst + (r + 1) * stride + size, above[bs - 1], bs - size); in d63_predictor()
63 const uint8_t *above, const uint8_t *left) { in d45_predictor() argument
64 const uint8_t above_right = above[bs - 1]; in d45_predictor()
70 dst[x] = AVG3(above[x], above[x + 1], above[x + 2]); in d45_predictor()
[all …]
/external/libaom/aom_dsp/x86/
Dintrapred_sse2.c110 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_4x8_sse2() argument
112 __m128i sum_above = dc_sum_4(above); in aom_dc_predictor_4x8_sse2()
125 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_4x16_sse2() argument
127 __m128i sum_above = dc_sum_4(above); in aom_dc_predictor_4x16_sse2()
140 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x4_sse2() argument
142 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x4_sse2()
154 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x16_sse2() argument
156 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x16_sse2()
167 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x32_sse2() argument
169 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x32_sse2()
[all …]
Dhighbd_intrapred_sse2.c20 const uint16_t *above, in aom_highbd_h_predictor_4x4_sse2() argument
27 (void)above; in aom_highbd_h_predictor_4x4_sse2()
39 const uint16_t *above, in aom_highbd_h_predictor_4x8_sse2() argument
41 aom_highbd_h_predictor_4x4_sse2(dst, stride, above, left, bd); in aom_highbd_h_predictor_4x8_sse2()
44 aom_highbd_h_predictor_4x4_sse2(dst, stride, above, left, bd); in aom_highbd_h_predictor_4x8_sse2()
48 const uint16_t *above, in aom_highbd_h_predictor_8x4_sse2() argument
55 (void)above; in aom_highbd_h_predictor_8x4_sse2()
67 const uint16_t *above, in aom_highbd_h_predictor_8x8_sse2() argument
78 (void)above; in aom_highbd_h_predictor_8x8_sse2()
98 const uint16_t *above, in aom_highbd_h_predictor_8x16_sse2() argument
[all …]
Dintrapred_avx2.c319 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_32x32_avx2() argument
320 const __m256i sum_above = dc_sum_32(above); in aom_dc_predictor_32x32_avx2()
332 const uint8_t *above, in aom_dc_top_predictor_32x32_avx2() argument
334 __m256i sum = dc_sum_32(above); in aom_dc_top_predictor_32x32_avx2()
346 const uint8_t *above, in aom_dc_left_predictor_32x32_avx2() argument
349 (void)above; in aom_dc_left_predictor_32x32_avx2()
360 const uint8_t *above, in aom_dc_128_predictor_32x32_avx2() argument
362 (void)above; in aom_dc_128_predictor_32x32_avx2()
369 const uint8_t *above, const uint8_t *left) { in aom_v_predictor_32x32_avx2() argument
370 const __m256i row = _mm256_loadu_si256((const __m256i *)above); in aom_v_predictor_32x32_avx2()
[all …]
/external/libaom/aom_dsp/
Dintrapred.c24 const uint8_t *above, const uint8_t *left) { in v_predictor() argument
29 memcpy(dst, above, bw); in v_predictor()
35 const uint8_t *above, const uint8_t *left) { in h_predictor() argument
37 (void)above; in h_predictor()
61 int bh, const uint8_t *above, in paeth_predictor() argument
64 const uint8_t ytop_left = above[-1]; in paeth_predictor()
68 dst[c] = (uint8_t)paeth_predictor_single(left[r], above[c], ytop_left); in paeth_predictor()
85 int bh, const uint8_t *above, in smooth_predictor() argument
88 const uint8_t right_pred = above[bw - 1]; // estimated by top-right pixel in smooth_predictor()
100 const uint8_t pixels[] = { above[c], below_pred, left[r], right_pred }; in smooth_predictor()
[all …]
/external/libvpx/vpx_dsp/arm/
Dhighbd_intrapred_neon.c36 const uint16_t *above, in vpx_highbd_dc_predictor_4x4_neon() argument
38 const uint16x4_t a = vld1_u16(above); in vpx_highbd_dc_predictor_4x4_neon()
51 const uint16_t *above, in vpx_highbd_dc_left_predictor_4x4_neon() argument
55 (void)above; in vpx_highbd_dc_left_predictor_4x4_neon()
61 const uint16_t *above, in vpx_highbd_dc_top_predictor_4x4_neon() argument
63 const uint16x4_t sum = dc_sum_4(above); in vpx_highbd_dc_top_predictor_4x4_neon()
71 const uint16_t *above, in vpx_highbd_dc_128_predictor_4x4_neon() argument
74 (void)above; in vpx_highbd_dc_128_predictor_4x4_neon()
99 const uint16_t *above, in vpx_highbd_dc_predictor_8x8_neon() argument
101 const uint16x8_t above_u16 = vld1q_u16(above); in vpx_highbd_dc_predictor_8x8_neon()
[all …]
Dintrapred_neon.c36 const uint8_t *above, const uint8_t *left) { in vpx_dc_predictor_4x4_neon() argument
37 const uint8x8_t a = vld1_u8(above); in vpx_dc_predictor_4x4_neon()
49 const uint8_t *above, const uint8_t *left) { in vpx_dc_left_predictor_4x4_neon() argument
52 (void)above; in vpx_dc_left_predictor_4x4_neon()
57 const uint8_t *above, const uint8_t *left) { in vpx_dc_top_predictor_4x4_neon() argument
58 const uint16x4_t sum = dc_sum_4(above); in vpx_dc_top_predictor_4x4_neon()
65 const uint8_t *above, const uint8_t *left) { in vpx_dc_128_predictor_4x4_neon() argument
67 (void)above; in vpx_dc_128_predictor_4x4_neon()
92 const uint8_t *above, const uint8_t *left) { in vpx_dc_predictor_8x8_neon() argument
93 const uint8x8_t above_u8 = vld1_u8(above); in vpx_dc_predictor_8x8_neon()
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/src/arm/
Dtrampoline.S14 # The above copyright notice and this permission notice shall be included
38 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
51 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
64 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
77 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
90 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
103 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
116 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
129 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
142 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
[all …]
/external/libffi/src/arm/
Dtrampoline.S14 # The above copyright notice and this permission notice shall be included
38 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
51 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
64 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
77 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
90 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
103 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
116 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
129 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
142 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
[all …]
/external/kernel-headers/original/uapi/linux/
Dethtool_netlink.h56 /* add new constants above here */
103 /* add new constants above here */
127 /* add new constants above here */
140 /* add new constants above here */
149 /* add new constants above here */
162 /* add new constants above here */
174 /* add new constants above here */
183 /* add new constants above here */
194 /* add new constants above here */
203 /* add new constants above here */
[all …]
/external/libvpx/vpx_dsp/ppc/
Dintrapred_vsx.c15 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_16x16_vsx() argument
16 const uint8x16_t d = vec_vsx_ld(0, above); in vpx_v_predictor_16x16_vsx()
26 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_32x32_vsx() argument
27 const uint8x16_t d0 = vec_vsx_ld(0, above); in vpx_v_predictor_32x32_vsx()
28 const uint8x16_t d1 = vec_vsx_ld(16, above); in vpx_v_predictor_32x32_vsx()
43 const uint8_t *above, const uint8_t *left) {
50 (void)above;
62 const uint8_t *above, const uint8_t *left) {
74 (void)above;
95 const uint8_t *above, const uint8_t *left) { in vpx_h_predictor_16x16_vsx() argument
[all …]
/external/pcre/maint/Unicode.tables/
DBidiMirroring.txt336 2A7B; 2A7C # [BEST FIT] LESS-THAN WITH QUESTION MARK ABOVE
337 2A7C; 2A7B # [BEST FIT] GREATER-THAN WITH QUESTION MARK ABOVE
342 2A81; 2A82 # LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE
343 2A82; 2A81 # GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE
344 2A83; 2A84 # LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT
345 2A84; 2A83 # GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT
352 2A8B; 2A8C # LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN
353 2A8C; 2A8B # GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN
354 2A8D; 2A8E # [BEST FIT] LESS-THAN ABOVE SIMILAR OR EQUAL
355 2A8E; 2A8D # [BEST FIT] GREATER-THAN ABOVE SIMILAR OR EQUAL
[all …]
/external/libvpx/vpx_dsp/mips/
Dintrapred_msa.c555 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_4x4_msa() argument
558 intra_predict_vert_4x4_msa(above, dst, y_stride); in vpx_v_predictor_4x4_msa()
562 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_8x8_msa() argument
565 intra_predict_vert_8x8_msa(above, dst, y_stride); in vpx_v_predictor_8x8_msa()
569 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_16x16_msa() argument
572 intra_predict_vert_16x16_msa(above, dst, y_stride); in vpx_v_predictor_16x16_msa()
576 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_32x32_msa() argument
579 intra_predict_vert_32x32_msa(above, dst, y_stride); in vpx_v_predictor_32x32_msa()
583 const uint8_t *above, const uint8_t *left) { in vpx_h_predictor_4x4_msa() argument
584 (void)above; in vpx_h_predictor_4x4_msa()
[all …]
/external/libaom/config/arm64/config/
Daom_dsp_rtcd.h67 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
68 void aom_dc_128_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
71 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
74 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
77 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
80 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
83 void aom_dc_128_predictor_32x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
86 void aom_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
87 void aom_dc_128_predictor_32x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
90 void aom_dc_128_predictor_32x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
[all …]
/external/libaom/config/arm/config/
Daom_dsp_rtcd.h67 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
68 void aom_dc_128_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
71 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
74 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
77 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
80 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
83 void aom_dc_128_predictor_32x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
86 void aom_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
87 void aom_dc_128_predictor_32x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
90 void aom_dc_128_predictor_32x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
[all …]
/external/iptables/extensions/
Dlibxt_connlimit.t6 -m connlimit --connlimit-above 0;=;OK
7 -m connlimit --connlimit-above 4294967295;=;OK
8 -m connlimit --connlimit-above 4294967296;;FAIL
9 -m connlimit --connlimit-above -1;;FAIL
10 -m connlimit --connlimit-upto 1 --conlimit-above 1;;FAIL
11 -m connlimit --connlimit-above 10 --connlimit-saddr;-m connlimit --connlimit-above 10 --connlimit-m…
12 -m connlimit --connlimit-above 10 --connlimit-daddr;-m connlimit --connlimit-above 10 --connlimit-m…
13 -m connlimit --connlimit-above 10 --connlimit-saddr --connlimit-daddr;;FAIL
14 -m connlimit --connlimit-above 10 --connlimit-mask 32 --connlimit-saddr;=;OK
15 -m connlimit --connlimit-above 10 --connlimit-mask 32 --connlimit-daddr;=;OK
/external/icu/libicu/cts_headers/unicode/
Dcaniter.h44 Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{CO…
46 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBIN…
48 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBININ…
50 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CE…
52 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT
54 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CE…
56 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT
58 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
60 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
62 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
[all …]
/external/cronet/third_party/icu/source/common/unicode/
Dcaniter.h44 Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{CO…
46 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBIN…
48 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBININ…
50 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CE…
52 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT
54 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CE…
56 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT
58 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
60 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
62 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
[all …]
/external/icu/icu4c/source/common/unicode/
Dcaniter.h44 Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{CO…
46 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBIN…
48 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBININ…
50 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CE…
52 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT
54 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CE…
56 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT
58 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
60 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
62 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
[all …]
/external/libaom/config/x86/config/
Daom_dsp_rtcd.h70 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
71 void aom_dc_128_predictor_16x16_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
74 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
75 void aom_dc_128_predictor_16x32_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
78 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
79 void aom_dc_128_predictor_16x4_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
82 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
83 void aom_dc_128_predictor_16x64_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
86 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
87 void aom_dc_128_predictor_16x8_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
[all …]
/external/libaom/config/x86_64/config/
Daom_dsp_rtcd.h70 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
71 void aom_dc_128_predictor_16x16_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
74 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
75 void aom_dc_128_predictor_16x32_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
78 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
79 void aom_dc_128_predictor_16x4_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
82 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
83 void aom_dc_128_predictor_16x64_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
86 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
87 void aom_dc_128_predictor_16x8_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
[all …]
/external/libvpx/config/x86_64/
Dvpx_dsp_rtcd.h74 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
77 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
80 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
83 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
86 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
89 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
92 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
95 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
98 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
99 void vpx_d153_predictor_16x16_ssse3(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uin…
[all …]
/external/libvpx/config/x86/
Dvpx_dsp_rtcd.h74 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
77 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
80 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
83 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
86 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
89 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
92 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
95 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *…
98 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t…
99 void vpx_d153_predictor_16x16_ssse3(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uin…
[all …]
/external/libvpx/vpx_dsp/x86/
Dhighbd_intrapred_intrin_sse2.c20 const uint16_t *above, in vpx_highbd_h_predictor_4x4_sse2() argument
27 (void)above; in vpx_highbd_h_predictor_4x4_sse2()
39 const uint16_t *above, in vpx_highbd_h_predictor_8x8_sse2() argument
50 (void)above; in vpx_highbd_h_predictor_8x8_sse2()
86 const uint16_t *above, in vpx_highbd_h_predictor_16x16_sse2() argument
89 (void)above; in vpx_highbd_h_predictor_16x16_sse2()
134 const uint16_t *above, in vpx_highbd_h_predictor_32x32_sse2() argument
137 (void)above; in vpx_highbd_h_predictor_32x32_sse2()
181 const uint16_t *above, in vpx_highbd_dc_left_predictor_4x4_sse2() argument
186 (void)above; in vpx_highbd_dc_left_predictor_4x4_sse2()
[all …]

12345678910>>...689