/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jidctred.c | 38 #if DCTSIZE != 8 133 int workspace[DCTSIZE * 4]; /* buffers data between passes */ 141 for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) { 143 if (ctr == DCTSIZE - 4) 145 if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 2] == 0 && 146 inptr[DCTSIZE * 3] == 0 && inptr[DCTSIZE * 5] == 0 && 147 inptr[DCTSIZE * 6] == 0 && inptr[DCTSIZE * 7] == 0) { 149 int dcval = LEFT_SHIFT(DEQUANTIZE(inptr[DCTSIZE * 0], 150 quantptr[DCTSIZE * 0]), PASS1_BITS); 152 wsptr[DCTSIZE * 0] = dcval; [all …]
|
D | jidctflt.c | 55 #if DCTSIZE != 8 93 for (ctr = DCTSIZE; ctr > 0; ctr--) { 103 if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 2] == 0 && 104 inptr[DCTSIZE * 3] == 0 && inptr[DCTSIZE * 4] == 0 && 105 inptr[DCTSIZE * 5] == 0 && inptr[DCTSIZE * 6] == 0 && 106 inptr[DCTSIZE * 7] == 0) { 108 FAST_FLOAT dcval = DEQUANTIZE(inptr[DCTSIZE * 0], 109 quantptr[DCTSIZE * 0] * _0_125); 111 wsptr[DCTSIZE * 0] = dcval; 112 wsptr[DCTSIZE * 1] = dcval; [all …]
|
D | jidctfst.c | 50 #if DCTSIZE != 8 193 for (ctr = DCTSIZE; ctr > 0; ctr--) { 203 if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 2] == 0 && 204 inptr[DCTSIZE * 3] == 0 && inptr[DCTSIZE * 4] == 0 && 205 inptr[DCTSIZE * 5] == 0 && inptr[DCTSIZE * 6] == 0 && 206 inptr[DCTSIZE * 7] == 0) { 208 int dcval = (int)DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0]); 210 wsptr[DCTSIZE * 0] = dcval; 211 wsptr[DCTSIZE * 1] = dcval; 212 wsptr[DCTSIZE * 2] = dcval; [all …]
|
D | jfdctflt.c | 50 #if DCTSIZE != 8 71 for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) { 115 dataptr += DCTSIZE; /* advance pointer to next row */ 121 for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) { 122 tmp0 = dataptr[DCTSIZE * 0] + dataptr[DCTSIZE * 7]; 123 tmp7 = dataptr[DCTSIZE * 0] - dataptr[DCTSIZE * 7]; 124 tmp1 = dataptr[DCTSIZE * 1] + dataptr[DCTSIZE * 6]; 125 tmp6 = dataptr[DCTSIZE * 1] - dataptr[DCTSIZE * 6]; 126 tmp2 = dataptr[DCTSIZE * 2] + dataptr[DCTSIZE * 5]; 127 tmp5 = dataptr[DCTSIZE * 2] - dataptr[DCTSIZE * 5]; [all …]
|
D | jfdctfst.c | 48 #if DCTSIZE != 8 129 for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) { 173 dataptr += DCTSIZE; /* advance pointer to next row */ 179 for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) { 180 tmp0 = dataptr[DCTSIZE * 0] + dataptr[DCTSIZE * 7]; 181 tmp7 = dataptr[DCTSIZE * 0] - dataptr[DCTSIZE * 7]; 182 tmp1 = dataptr[DCTSIZE * 1] + dataptr[DCTSIZE * 6]; 183 tmp6 = dataptr[DCTSIZE * 1] - dataptr[DCTSIZE * 6]; 184 tmp2 = dataptr[DCTSIZE * 2] + dataptr[DCTSIZE * 5]; 185 tmp5 = dataptr[DCTSIZE * 2] - dataptr[DCTSIZE * 5]; [all …]
|
D | jfdctint.c | 41 #if DCTSIZE != 8 157 for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) { 213 dataptr += DCTSIZE; /* advance pointer to next row */ 222 for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) { 223 tmp0 = dataptr[DCTSIZE * 0] + dataptr[DCTSIZE * 7]; 224 tmp7 = dataptr[DCTSIZE * 0] - dataptr[DCTSIZE * 7]; 225 tmp1 = dataptr[DCTSIZE * 1] + dataptr[DCTSIZE * 6]; 226 tmp6 = dataptr[DCTSIZE * 1] - dataptr[DCTSIZE * 6]; 227 tmp2 = dataptr[DCTSIZE * 2] + dataptr[DCTSIZE * 5]; 228 tmp5 = dataptr[DCTSIZE * 2] - dataptr[DCTSIZE * 5]; [all …]
|
D | jdmaster.c | 101 if (cinfo->scale_num * DCTSIZE <= cinfo->scale_denom) { in jpeg_core_output_dimensions() 104 jdiv_round_up((long)cinfo->image_width, (long)DCTSIZE); in jpeg_core_output_dimensions() 106 jdiv_round_up((long)cinfo->image_height, (long)DCTSIZE); in jpeg_core_output_dimensions() 109 } else if (cinfo->scale_num * DCTSIZE <= cinfo->scale_denom * 2) { in jpeg_core_output_dimensions() 112 jdiv_round_up((long)cinfo->image_width * 2L, (long)DCTSIZE); in jpeg_core_output_dimensions() 114 jdiv_round_up((long)cinfo->image_height * 2L, (long)DCTSIZE); in jpeg_core_output_dimensions() 117 } else if (cinfo->scale_num * DCTSIZE <= cinfo->scale_denom * 3) { in jpeg_core_output_dimensions() 120 jdiv_round_up((long)cinfo->image_width * 3L, (long)DCTSIZE); in jpeg_core_output_dimensions() 122 jdiv_round_up((long)cinfo->image_height * 3L, (long)DCTSIZE); in jpeg_core_output_dimensions() 125 } else if (cinfo->scale_num * DCTSIZE <= cinfo->scale_denom * 4) { in jpeg_core_output_dimensions() [all …]
|
D | jidctint.c | 65 #if DCTSIZE != 8 196 for (ctr = DCTSIZE; ctr > 0; ctr--) { 206 if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 2] == 0 && 207 inptr[DCTSIZE * 3] == 0 && inptr[DCTSIZE * 4] == 0 && 208 inptr[DCTSIZE * 5] == 0 && inptr[DCTSIZE * 6] == 0 && 209 inptr[DCTSIZE * 7] == 0) { 211 int dcval = LEFT_SHIFT(DEQUANTIZE(inptr[DCTSIZE * 0], 212 quantptr[DCTSIZE * 0]), PASS1_BITS); 214 wsptr[DCTSIZE * 0] = dcval; 215 wsptr[DCTSIZE * 1] = dcval; [all …]
|
D | transupp.c | 34 #define dstinfo_min_DCT_h_scaled_size DCTSIZE 35 #define dstinfo_min_DCT_v_scaled_size DCTSIZE 907 for (i = 0; i < DCTSIZE; i += 2) { in do_flip_v() 909 for (j = 0; j < DCTSIZE; j++) in do_flip_v() 912 for (j = 0; j < DCTSIZE; j++) in do_flip_v() 965 for (i = 0; i < DCTSIZE; i++) in do_transpose() 966 for (j = 0; j < DCTSIZE; j++) in do_transpose() 967 dst_ptr[j * DCTSIZE + i] = src_ptr[i * DCTSIZE + j]; in do_transpose() 1034 for (i = 0; i < DCTSIZE; i++) { in do_rot_90() 1035 for (j = 0; j < DCTSIZE; j++) in do_rot_90() [all …]
|
D | jdinput.c | 81 cinfo->block_size = DCTSIZE; in initial_setup() 91 cinfo->min_DCT_h_scaled_size = cinfo->min_DCT_v_scaled_size = DCTSIZE; in initial_setup() 93 cinfo->min_DCT_scaled_size = DCTSIZE; in initial_setup() 100 compptr->DCT_h_scaled_size = compptr->DCT_v_scaled_size = DCTSIZE; in initial_setup() 102 compptr->DCT_scaled_size = DCTSIZE; in initial_setup() 107 (long)(cinfo->max_h_samp_factor * DCTSIZE)); in initial_setup() 110 (long)(cinfo->max_v_samp_factor * DCTSIZE)); in initial_setup() 136 (long)(cinfo->max_v_samp_factor * DCTSIZE)); in initial_setup() 190 (long)(cinfo->max_h_samp_factor * DCTSIZE)); in per_scan_setup() 193 (long)(cinfo->max_v_samp_factor * DCTSIZE)); in per_scan_setup()
|
/third_party/ffmpeg/libavcodec/ |
D | jfdctfst.c | 73 #define DCTSIZE 8 macro 81 #if DCTSIZE != 8 154 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) { 198 dataptr += DCTSIZE; /* advance pointer to next row */ 220 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) { in ff_fdct_ifast() 221 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7]; in ff_fdct_ifast() 222 tmp7 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*7]; in ff_fdct_ifast() 223 tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6]; in ff_fdct_ifast() 224 tmp6 = dataptr[DCTSIZE*1] - dataptr[DCTSIZE*6]; in ff_fdct_ifast() 225 tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5]; in ff_fdct_ifast() [all …]
|
D | jfdctint_template.c | 67 #define DCTSIZE 8 macro 79 #if DCTSIZE != 8 195 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) { in FUNC() 251 dataptr += DCTSIZE; /* advance pointer to next row */ in FUNC() 276 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) { in FUNC() 277 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7]; in FUNC() 278 tmp7 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*7]; in FUNC() 279 tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6]; in FUNC() 280 tmp6 = dataptr[DCTSIZE*1] - dataptr[DCTSIZE*6]; in FUNC() 281 tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5]; in FUNC() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/aarch64/ |
D | jchuff-neon.c | 72 vld1q_u8_x4(jsimd_huff_encode_one_block_consts + 0 * DCTSIZE); in jsimd_huff_encode_one_block_neon() 74 vld1q_u8_x4(jsimd_huff_encode_one_block_consts + 8 * DCTSIZE); in jsimd_huff_encode_one_block_neon() 78 vld1q_u8(jsimd_huff_encode_one_block_consts + 0 * DCTSIZE), in jsimd_huff_encode_one_block_neon() 79 vld1q_u8(jsimd_huff_encode_one_block_consts + 2 * DCTSIZE), in jsimd_huff_encode_one_block_neon() 80 vld1q_u8(jsimd_huff_encode_one_block_consts + 4 * DCTSIZE), in jsimd_huff_encode_one_block_neon() 81 vld1q_u8(jsimd_huff_encode_one_block_consts + 6 * DCTSIZE) in jsimd_huff_encode_one_block_neon() 84 vld1q_u8(jsimd_huff_encode_one_block_consts + 8 * DCTSIZE), in jsimd_huff_encode_one_block_neon() 85 vld1q_u8(jsimd_huff_encode_one_block_consts + 10 * DCTSIZE), in jsimd_huff_encode_one_block_neon() 86 vld1q_u8(jsimd_huff_encode_one_block_consts + 12 * DCTSIZE), in jsimd_huff_encode_one_block_neon() 87 vld1q_u8(jsimd_huff_encode_one_block_consts + 14 * DCTSIZE) in jsimd_huff_encode_one_block_neon() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/ |
D | jquanti-neon.c | 74 vst1q_s16(workspace + 0 * DCTSIZE, row0); in jsimd_convsamp_neon() 75 vst1q_s16(workspace + 1 * DCTSIZE, row1); in jsimd_convsamp_neon() 76 vst1q_s16(workspace + 2 * DCTSIZE, row2); in jsimd_convsamp_neon() 77 vst1q_s16(workspace + 3 * DCTSIZE, row3); in jsimd_convsamp_neon() 78 vst1q_s16(workspace + 4 * DCTSIZE, row4); in jsimd_convsamp_neon() 79 vst1q_s16(workspace + 5 * DCTSIZE, row5); in jsimd_convsamp_neon() 80 vst1q_s16(workspace + 6 * DCTSIZE, row6); in jsimd_convsamp_neon() 81 vst1q_s16(workspace + 7 * DCTSIZE, row7); in jsimd_convsamp_neon() 103 for (i = 0; i < DCTSIZE; i += DCTSIZE / 2) { in jsimd_quantize_neon() 105 int16x8_t row0 = vld1q_s16(workspace + (i + 0) * DCTSIZE); in jsimd_quantize_neon() [all …]
|
D | jidctint-neon.c | 195 int16_t workspace_l[8 * DCTSIZE / 2]; in jsimd_idct_islow_neon() 196 int16_t workspace_r[8 * DCTSIZE / 2]; in jsimd_idct_islow_neon() 201 int16x4_t row0 = vld1_s16(coef_block + 0 * DCTSIZE); in jsimd_idct_islow_neon() 202 int16x4_t row1 = vld1_s16(coef_block + 1 * DCTSIZE); in jsimd_idct_islow_neon() 203 int16x4_t row2 = vld1_s16(coef_block + 2 * DCTSIZE); in jsimd_idct_islow_neon() 204 int16x4_t row3 = vld1_s16(coef_block + 3 * DCTSIZE); in jsimd_idct_islow_neon() 205 int16x4_t row4 = vld1_s16(coef_block + 4 * DCTSIZE); in jsimd_idct_islow_neon() 206 int16x4_t row5 = vld1_s16(coef_block + 5 * DCTSIZE); in jsimd_idct_islow_neon() 207 int16x4_t row6 = vld1_s16(coef_block + 6 * DCTSIZE); in jsimd_idct_islow_neon() 208 int16x4_t row7 = vld1_s16(coef_block + 7 * DCTSIZE); in jsimd_idct_islow_neon() [all …]
|
D | jcphuff-neon.c | 84 vst1q_s16(values_ptr + DCTSIZE, coefs2); in jsimd_encode_mcu_AC_first_prepare_neon() 86 vst1q_s16(diff_values_ptr + DCTSIZE, diff2); in jsimd_encode_mcu_AC_first_prepare_neon() 139 vst1q_s16(values_ptr + DCTSIZE, coefs2); in jsimd_encode_mcu_AC_first_prepare_neon() 141 vst1q_s16(diff_values_ptr + DCTSIZE, diff2); in jsimd_encode_mcu_AC_first_prepare_neon() 198 int16x8_t row0 = vld1q_s16(values + 0 * DCTSIZE); in jsimd_encode_mcu_AC_first_prepare_neon() 199 int16x8_t row1 = vld1q_s16(values + 1 * DCTSIZE); in jsimd_encode_mcu_AC_first_prepare_neon() 200 int16x8_t row2 = vld1q_s16(values + 2 * DCTSIZE); in jsimd_encode_mcu_AC_first_prepare_neon() 201 int16x8_t row3 = vld1q_s16(values + 3 * DCTSIZE); in jsimd_encode_mcu_AC_first_prepare_neon() 202 int16x8_t row4 = vld1q_s16(values + 4 * DCTSIZE); in jsimd_encode_mcu_AC_first_prepare_neon() 203 int16x8_t row5 = vld1q_s16(values + 5 * DCTSIZE); in jsimd_encode_mcu_AC_first_prepare_neon() [all …]
|
D | jidctred-neon.c | 82 int16x8_t row0 = vld1q_s16(coef_block + 0 * DCTSIZE); in jsimd_idct_2x2_neon() 83 int16x8_t row1 = vld1q_s16(coef_block + 1 * DCTSIZE); in jsimd_idct_2x2_neon() 84 int16x8_t row3 = vld1q_s16(coef_block + 3 * DCTSIZE); in jsimd_idct_2x2_neon() 85 int16x8_t row5 = vld1q_s16(coef_block + 5 * DCTSIZE); in jsimd_idct_2x2_neon() 86 int16x8_t row7 = vld1q_s16(coef_block + 7 * DCTSIZE); in jsimd_idct_2x2_neon() 89 int16x8_t quant_row0 = vld1q_s16(quantptr + 0 * DCTSIZE); in jsimd_idct_2x2_neon() 90 int16x8_t quant_row1 = vld1q_s16(quantptr + 1 * DCTSIZE); in jsimd_idct_2x2_neon() 91 int16x8_t quant_row3 = vld1q_s16(quantptr + 3 * DCTSIZE); in jsimd_idct_2x2_neon() 92 int16x8_t quant_row5 = vld1q_s16(quantptr + 5 * DCTSIZE); in jsimd_idct_2x2_neon() 93 int16x8_t quant_row7 = vld1q_s16(quantptr + 7 * DCTSIZE); in jsimd_idct_2x2_neon() [all …]
|
D | jcsample-neon.c | 83 const int mask_offset = 16 * ((width_in_blocks * 2 * DCTSIZE) - image_width); in jsimd_h2v1_downsample_neon() 97 uint8x16_t pixels = vld1q_u8(inptr + i * 2 * DCTSIZE); in jsimd_h2v1_downsample_neon() 103 vst1_u8(outptr + i * DCTSIZE, samples_u8); in jsimd_h2v1_downsample_neon() 107 uint8x16_t pixels = vld1q_u8(inptr + (width_in_blocks - 1) * 2 * DCTSIZE); in jsimd_h2v1_downsample_neon() 120 vst1_u8(outptr + (width_in_blocks - 1) * DCTSIZE, samples_u8); in jsimd_h2v1_downsample_neon() 137 const int mask_offset = 16 * ((width_in_blocks * 2 * DCTSIZE) - image_width); in jsimd_h2v2_downsample_neon() 152 uint8x16_t pixels_r0 = vld1q_u8(inptr0 + i * 2 * DCTSIZE); in jsimd_h2v2_downsample_neon() 153 uint8x16_t pixels_r1 = vld1q_u8(inptr1 + i * 2 * DCTSIZE); in jsimd_h2v2_downsample_neon() 162 vst1_u8(outptr + i * DCTSIZE, samples_u8); in jsimd_h2v2_downsample_neon() 167 vld1q_u8(inptr0 + (width_in_blocks - 1) * 2 * DCTSIZE); in jsimd_h2v2_downsample_neon() [all …]
|
D | jidctfst-neon.c | 69 int16x8_t row0 = vld1q_s16(coef_block + 0 * DCTSIZE); in jsimd_idct_ifast_neon() 70 int16x8_t row1 = vld1q_s16(coef_block + 1 * DCTSIZE); in jsimd_idct_ifast_neon() 71 int16x8_t row2 = vld1q_s16(coef_block + 2 * DCTSIZE); in jsimd_idct_ifast_neon() 72 int16x8_t row3 = vld1q_s16(coef_block + 3 * DCTSIZE); in jsimd_idct_ifast_neon() 73 int16x8_t row4 = vld1q_s16(coef_block + 4 * DCTSIZE); in jsimd_idct_ifast_neon() 74 int16x8_t row5 = vld1q_s16(coef_block + 5 * DCTSIZE); in jsimd_idct_ifast_neon() 75 int16x8_t row6 = vld1q_s16(coef_block + 6 * DCTSIZE); in jsimd_idct_ifast_neon() 76 int16x8_t row7 = vld1q_s16(coef_block + 7 * DCTSIZE); in jsimd_idct_ifast_neon() 79 int16x8_t quant_row0 = vld1q_s16(quantptr + 0 * DCTSIZE); in jsimd_idct_ifast_neon() 118 int16x4_t quant_row1 = vld1_s16(quantptr + 1 * DCTSIZE + 4); in jsimd_idct_ifast_neon() [all …]
|
D | jfdctfst-neon.c | 68 int16x8x4_t data2 = vld4q_s16(data + 4 * DCTSIZE); in jsimd_fdct_ifast_neon() 206 vst1q_s16(data + 0 * DCTSIZE, row0); in jsimd_fdct_ifast_neon() 207 vst1q_s16(data + 1 * DCTSIZE, row1); in jsimd_fdct_ifast_neon() 208 vst1q_s16(data + 2 * DCTSIZE, row2); in jsimd_fdct_ifast_neon() 209 vst1q_s16(data + 3 * DCTSIZE, row3); in jsimd_fdct_ifast_neon() 210 vst1q_s16(data + 4 * DCTSIZE, row4); in jsimd_fdct_ifast_neon() 211 vst1q_s16(data + 5 * DCTSIZE, row5); in jsimd_fdct_ifast_neon() 212 vst1q_s16(data + 6 * DCTSIZE, row6); in jsimd_fdct_ifast_neon() 213 vst1q_s16(data + 7 * DCTSIZE, row7); in jsimd_fdct_ifast_neon()
|
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_fspp.asm | 47 %define DCTSIZE 8 239 movq m1, [srcq+DCTSIZE*0*2] 240 movq m7, [srcq+DCTSIZE*3*2] 242 paddw m1, [srcq+DCTSIZE*7*2] 244 paddw m7, [srcq+DCTSIZE*4*2] 246 movq m6, [srcq+DCTSIZE*1*2] 248 movq m2, [srcq+DCTSIZE*2*2] 250 paddw m6, [srcq+DCTSIZE*6*2] 252 paddw m2, [srcq+DCTSIZE*5*2] 287 psubw m3, [srcq+DCTSIZE*4*2] [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_fspp.c | 265 for (ctr = DCTSIZE; ctr > 0; ctr--) { in column_fidct_c() 267 tmp0 = dataptr[DCTSIZE * 0] + dataptr[DCTSIZE * 7]; in column_fidct_c() 268 tmp7 = dataptr[DCTSIZE * 0] - dataptr[DCTSIZE * 7]; in column_fidct_c() 270 tmp1 = dataptr[DCTSIZE * 1] + dataptr[DCTSIZE * 6]; in column_fidct_c() 271 tmp6 = dataptr[DCTSIZE * 1] - dataptr[DCTSIZE * 6]; in column_fidct_c() 273 tmp2 = dataptr[DCTSIZE * 2] + dataptr[DCTSIZE * 5]; in column_fidct_c() 274 tmp5 = dataptr[DCTSIZE * 2] - dataptr[DCTSIZE * 5]; in column_fidct_c() 276 tmp3 = dataptr[DCTSIZE * 3] + dataptr[DCTSIZE * 4]; in column_fidct_c() 277 tmp4 = dataptr[DCTSIZE * 3] - dataptr[DCTSIZE * 4]; in column_fidct_c() 353 wsptr[DCTSIZE * 0] += (tmp0 + tmp7); in column_fidct_c() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/aarch32/ |
D | jchuff-neon.c | 108 vst1_u8(block_nbits + 0 * DCTSIZE, row0_nbits); in jsimd_huff_encode_one_block_neon() 109 vst1_u8(block_nbits + 1 * DCTSIZE, row1_nbits); in jsimd_huff_encode_one_block_neon() 110 vst1_u8(block_nbits + 2 * DCTSIZE, row2_nbits); in jsimd_huff_encode_one_block_neon() 111 vst1_u8(block_nbits + 3 * DCTSIZE, row3_nbits); in jsimd_huff_encode_one_block_neon() 132 vst1q_u16(block_diff + 0 * DCTSIZE, row0_diff); in jsimd_huff_encode_one_block_neon() 133 vst1q_u16(block_diff + 1 * DCTSIZE, row1_diff); in jsimd_huff_encode_one_block_neon() 134 vst1q_u16(block_diff + 2 * DCTSIZE, row2_diff); in jsimd_huff_encode_one_block_neon() 135 vst1q_u16(block_diff + 3 * DCTSIZE, row3_diff); in jsimd_huff_encode_one_block_neon() 194 vst1_u8(block_nbits + 4 * DCTSIZE, row4_nbits); in jsimd_huff_encode_one_block_neon() 195 vst1_u8(block_nbits + 5 * DCTSIZE, row5_nbits); in jsimd_huff_encode_one_block_neon() [all …]
|
D | jsimd.c | 351 if (DCTSIZE != 8) in jsimd_can_h2v2_downsample() 370 if (DCTSIZE != 8) in jsimd_can_h2v1_downsample() 640 if (DCTSIZE != 8) in jsimd_can_convsamp() 680 if (DCTSIZE != 8) in jsimd_can_fdct_islow() 697 if (DCTSIZE != 8) in jsimd_can_fdct_ifast() 737 if (DCTSIZE != 8) in jsimd_can_quantize() 774 if (DCTSIZE != 8) in jsimd_can_idct_2x2() 797 if (DCTSIZE != 8) in jsimd_can_idct_4x4() 836 if (DCTSIZE != 8) in jsimd_can_idct_islow() 859 if (DCTSIZE != 8) in jsimd_can_idct_ifast() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/ |
D | jsimd.c | 647 if (DCTSIZE != 8) in jsimd_can_convsamp() 670 if (DCTSIZE != 8) in jsimd_can_convsamp_float() 708 if (DCTSIZE != 8) in jsimd_can_fdct_islow() 727 if (DCTSIZE != 8) in jsimd_can_fdct_ifast() 744 if (DCTSIZE != 8) in jsimd_can_fdct_float() 782 if (DCTSIZE != 8) in jsimd_can_quantize() 803 if (DCTSIZE != 8) in jsimd_can_quantize_float() 838 if (DCTSIZE != 8) in jsimd_can_idct_2x2() 861 if (DCTSIZE != 8) in jsimd_can_idct_4x4() 900 if (DCTSIZE != 8) in jsimd_can_idct_islow() [all …]
|