/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/ |
H A D | side-effect-analysis-test.mlir | 8 // 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 …]
|
/aosp_15_r20/external/libvpx/vpx_dsp/ |
H A D | intrapred.c | 22 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 …]
|
/aosp_15_r20/external/libaom/aom_dsp/x86/ |
H A D | intrapred_sse2.c | 110 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() 126 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_4x16_sse2() argument 128 __m128i sum_above = dc_sum_4(above); in aom_dc_predictor_4x16_sse2() 142 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x4_sse2() argument 144 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x4_sse2() 156 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x16_sse2() argument 158 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x16_sse2() 170 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x32_sse2() argument 172 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x32_sse2() [all …]
|
H A D | highbd_intrapred_sse2.c | 20 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 …]
|
H A D | intrapred_avx2.c | 323 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_32x32_avx2() argument 324 const __m256i sum_above = dc_sum_32(above); in aom_dc_predictor_32x32_avx2() 336 const uint8_t *above, in aom_dc_top_predictor_32x32_avx2() argument 338 __m256i sum = dc_sum_32(above); in aom_dc_top_predictor_32x32_avx2() 350 const uint8_t *above, in aom_dc_left_predictor_32x32_avx2() argument 353 (void)above; in aom_dc_left_predictor_32x32_avx2() 364 const uint8_t *above, in aom_dc_128_predictor_32x32_avx2() argument 366 (void)above; in aom_dc_128_predictor_32x32_avx2() 373 const uint8_t *above, const uint8_t *left) { in aom_v_predictor_32x32_avx2() argument 374 const __m256i row = _mm256_loadu_si256((const __m256i *)above); in aom_v_predictor_32x32_avx2() [all …]
|
/aosp_15_r20/external/libaom/aom_dsp/ |
H A D | intrapred.c | 24 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 …]
|
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/libffi/src/arm/ |
D | trampoline.S | 14 # 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 …]
|
/aosp_15_r20/external/libffi/src/arm/ |
H A D | trampoline.S | 14 # 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 …]
|
/aosp_15_r20/external/libvpx/vpx_dsp/arm/ |
H A D | intrapred_neon.c | 35 const uint8_t *above, const uint8_t *left) { in vpx_dc_predictor_4x4_neon() argument 36 const uint8x8_t a = load_unaligned_u8_4x1(above); in vpx_dc_predictor_4x4_neon() 45 const uint8_t *above, const uint8_t *left) { in vpx_dc_left_predictor_4x4_neon() argument 48 (void)above; in vpx_dc_left_predictor_4x4_neon() 53 const uint8_t *above, const uint8_t *left) { in vpx_dc_top_predictor_4x4_neon() argument 54 const uint16_t sum = dc_sum_4(above); in vpx_dc_top_predictor_4x4_neon() 61 const uint8_t *above, const uint8_t *left) { in vpx_dc_128_predictor_4x4_neon() argument 63 (void)above; in vpx_dc_128_predictor_4x4_neon() 84 const uint8_t *above, const uint8_t *left) { in vpx_dc_predictor_8x8_neon() argument 85 const uint8x8_t above_u8 = vld1_u8(above); in vpx_dc_predictor_8x8_neon() [all …]
|
H A D | highbd_intrapred_neon.c | 35 const uint16_t *above, in vpx_highbd_dc_predictor_4x4_neon() argument 37 const uint16x4_t a = vld1_u16(above); in vpx_highbd_dc_predictor_4x4_neon() 46 const uint16_t *above, in vpx_highbd_dc_left_predictor_4x4_neon() argument 50 (void)above; in vpx_highbd_dc_left_predictor_4x4_neon() 56 const uint16_t *above, in vpx_highbd_dc_top_predictor_4x4_neon() argument 58 const uint16_t sum = dc_sum_4(above); in vpx_highbd_dc_top_predictor_4x4_neon() 66 const uint16_t *above, in vpx_highbd_dc_128_predictor_4x4_neon() argument 69 (void)above; in vpx_highbd_dc_128_predictor_4x4_neon() 91 const uint16_t *above, in vpx_highbd_dc_predictor_8x8_neon() argument 93 const uint16x8_t above_u16 = vld1q_u16(above); in vpx_highbd_dc_predictor_8x8_neon() [all …]
|
/aosp_15_r20/external/libaom/aom_dsp/arm/ |
H A D | intrapred_neon.c | 45 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_4x4_neon() argument 46 const uint16x8_t sum_top = dc_load_sum_4(above); in aom_dc_predictor_4x4_neon() 54 const uint8_t *above, const uint8_t *left) { in aom_dc_left_predictor_4x4_neon() argument 57 (void)above; in aom_dc_left_predictor_4x4_neon() 62 const uint8_t *above, const uint8_t *left) { in aom_dc_top_predictor_4x4_neon() argument 63 const uint16x8_t sum_top = dc_load_sum_4(above); in aom_dc_top_predictor_4x4_neon() 70 const uint8_t *above, const uint8_t *left) { in aom_dc_128_predictor_4x4_neon() argument 72 (void)above; in aom_dc_128_predictor_4x4_neon() 81 // This isn't used in the case where we want to load both above and left in dc_load_sum_8() 115 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x8_neon() argument [all …]
|
/aosp_15_r20/external/libaom/config/x86_64/config/ |
H A D | aom_dsp_rtcd.h | 85 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 86 void aom_dc_128_predictor_16x16_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 89 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 90 void aom_dc_128_predictor_16x32_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 93 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 94 void aom_dc_128_predictor_16x4_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… 97 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 98 void aom_dc_128_predictor_16x64_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 101 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 102 void aom_dc_128_predictor_16x8_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… [all …]
|
/aosp_15_r20/external/libaom/config/x86/config/ |
H A D | aom_dsp_rtcd.h | 85 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 86 void aom_dc_128_predictor_16x16_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 89 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 90 void aom_dc_128_predictor_16x32_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 93 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 94 void aom_dc_128_predictor_16x4_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… 97 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 98 void aom_dc_128_predictor_16x64_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 101 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 102 void aom_dc_128_predictor_16x8_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… [all …]
|
/aosp_15_r20/external/libaom/config/arm/config/ |
H A D | aom_dsp_rtcd.h | 90 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 91 void aom_dc_128_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 94 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 95 void aom_dc_128_predictor_16x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 98 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 99 void aom_dc_128_predictor_16x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… 102 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 103 void aom_dc_128_predictor_16x64_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 106 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 107 void aom_dc_128_predictor_16x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… [all …]
|
/aosp_15_r20/external/libaom/config/riscv64/config/ |
H A D | aom_dsp_rtcd.h | 78 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 81 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 84 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 87 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 90 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 93 void aom_dc_128_predictor_32x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 96 void aom_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 99 void aom_dc_128_predictor_32x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 102 void aom_dc_128_predictor_32x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 105 void aom_dc_128_predictor_4x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… [all …]
|
/aosp_15_r20/external/libaom/config/arm64/config/ |
H A D | aom_dsp_rtcd.h | 95 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 96 void aom_dc_128_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 99 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 100 void aom_dc_128_predictor_16x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 103 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 104 void aom_dc_128_predictor_16x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… 107 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin… 108 void aom_dc_128_predictor_16x64_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const … 111 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint… 112 void aom_dc_128_predictor_16x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u… [all …]
|
/aosp_15_r20/external/libvpx/config/arm-neon/ |
H A D | vpx_dsp_rtcd.h | 82 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 83 void vpx_d117_predictor_16x16_neon(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint… 86 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 87 void vpx_d117_predictor_32x32_neon(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint… 90 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 91 void vpx_d117_predictor_4x4_neon(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_… 94 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 95 void vpx_d117_predictor_8x8_neon(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_… 98 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 99 void vpx_d135_predictor_16x16_neon(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint… [all …]
|
/aosp_15_r20/external/libvpx/vpx_dsp/ppc/ |
H A D | intrapred_vsx.c | 15 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 …]
|
/aosp_15_r20/external/pcre/maint/Unicode.tables/ |
H A D | BidiMirroring.txt | 336 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 …]
|
/aosp_15_r20/external/libvpx/config/x86/ |
H A D | vpx_dsp_rtcd.h | 88 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 91 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 94 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 97 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 100 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 103 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 106 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 109 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 112 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 113 void vpx_d153_predictor_16x16_ssse3(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uin… [all …]
|
/aosp_15_r20/external/libvpx/config/x86_64/ |
H A D | vpx_dsp_rtcd.h | 88 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 91 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 94 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 97 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 100 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 103 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 106 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 109 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *… 112 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t… 113 void vpx_d153_predictor_16x16_ssse3(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uin… [all …]
|
/aosp_15_r20/external/libvpx/vpx_dsp/mips/ |
H A D | intrapred_msa.c | 555 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 …]
|
/aosp_15_r20/external/kernel-headers/original/uapi/linux/ |
H A D | ethtool_netlink.h | 62 /* add new constants above here */ 115 /* add new constants above here */ 138 /* add new constants above here */ 151 /* add new constants above here */ 160 /* add new constants above here */ 173 /* add new constants above here */ 185 /* add new constants above here */ 194 /* add new constants above here */ 205 /* add new constants above here */ 214 /* add new constants above here */ [all …]
|
/aosp_15_r20/external/ethtool/uapi/linux/ |
H A D | ethtool_netlink.h | 61 /* add new constants above here */ 113 /* add new constants above here */ 137 /* add new constants above here */ 150 /* add new constants above here */ 159 /* add new constants above here */ 172 /* add new constants above here */ 184 /* add new constants above here */ 193 /* add new constants above here */ 204 /* add new constants above here */ 213 /* add new constants above here */ [all …]
|
/aosp_15_r20/prebuilts/ndk/ |
H A D | NOTICE | 6 * Redistributions of source code must retain the above copyright 8 * Redistributions in binary form must reproduce the above copyright 37 * Redistributions of source code must retain the above copyright 39 * Redistributions in binary form must reproduce the above copyright 66 1. Redistributions of source code must retain the above copyright 68 2. Redistributions in binary form must reproduce the above copyright 92 * Redistributions of source code must retain the above copyright 94 * Redistributions in binary form must reproduce the above copyright 239 1. Redistributions of source code must retain the above copyright 241 2. Redistributions in binary form must reproduce the above copyright [all …]
|