/external/syslinux/com32/lib/libpng/ |
D | pngwtran.c | 36 &(png_ptr->row_info), /* row_info: */ in png_do_write_transformations() 47 png_do_strip_filler(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_write_transformations() 52 png_do_packswap(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_write_transformations() 56 png_do_pack(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_write_transformations() 61 png_do_swap(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_write_transformations() 65 png_do_shift(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_write_transformations() 70 png_do_write_swap_alpha(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_write_transformations() 74 png_do_write_invert_alpha(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_write_transformations() 78 png_do_bgr(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_write_transformations() 82 png_do_invert(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_write_transformations() [all …]
|
D | pngtrans.c | 205 png_do_invert(png_row_infop row_info, png_bytep row) in png_do_invert() argument 213 if (row == NULL || row_info == NULL) in png_do_invert() 216 if (row_info->color_type == PNG_COLOR_TYPE_GRAY) in png_do_invert() 220 png_uint_32 istop = row_info->rowbytes; in png_do_invert() 228 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 229 row_info->bit_depth == 8) in png_do_invert() 233 png_uint_32 istop = row_info->rowbytes; in png_do_invert() 241 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 242 row_info->bit_depth == 16) in png_do_invert() 246 png_uint_32 istop = row_info->rowbytes; in png_do_invert() [all …]
|
D | pngrtran.c | 1364 if (png_ptr->row_info.color_type == PNG_COLOR_TYPE_PALETTE) in png_do_read_transformations() 1366 png_do_expand_palette(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_read_transformations() 1373 png_do_expand(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_read_transformations() 1376 png_do_expand(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_read_transformations() 1384 png_do_strip_filler(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_read_transformations() 1392 png_do_rgb_to_gray(png_ptr, &(png_ptr->row_info), in png_do_read_transformations() 1444 png_do_gray_to_rgb(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_read_transformations() 1451 png_do_background(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_read_transformations() 1471 png_do_gamma(&(png_ptr->row_info), png_ptr->row_buf + 1, in png_do_read_transformations() 1478 png_do_chop(&(png_ptr->row_info), png_ptr->row_buf + 1); in png_do_read_transformations() [all …]
|
/external/skia/third_party/libpng/ |
D | pngwtran.c | 25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) in png_do_pack() argument 29 if (row_info->bit_depth == 8 && in png_do_pack() 30 row_info->channels == 1) in png_do_pack() 39 png_uint_32 row_width = row_info->width; in png_do_pack() 77 png_uint_32 row_width = row_info->width; in png_do_pack() 117 png_uint_32 row_width = row_info->width; in png_do_pack() 155 row_info->bit_depth = (png_byte)bit_depth; in png_do_pack() 156 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels); in png_do_pack() 157 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, in png_do_pack() 158 row_info->width); in png_do_pack() [all …]
|
D | pngtrans.c | 261 png_do_invert(png_row_infop row_info, png_bytep row) in png_do_invert() argument 268 if (row_info->color_type == PNG_COLOR_TYPE_GRAY) in png_do_invert() 272 png_size_t istop = row_info->rowbytes; in png_do_invert() 281 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 282 row_info->bit_depth == 8) in png_do_invert() 286 png_size_t istop = row_info->rowbytes; in png_do_invert() 296 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 297 row_info->bit_depth == 16) in png_do_invert() 301 png_size_t istop = row_info->rowbytes; in png_do_invert() 318 png_do_swap(png_row_infop row_info, png_bytep row) in png_do_swap() argument [all …]
|
D | pngrtran.c | 2138 png_do_unpack(png_row_infop row_info, png_bytep row) in png_do_unpack() argument 2142 if (row_info->bit_depth < 8) in png_do_unpack() 2145 png_uint_32 row_width=row_info->width; in png_do_unpack() 2147 switch (row_info->bit_depth) in png_do_unpack() 2222 row_info->bit_depth = 8; in png_do_unpack() 2223 row_info->pixel_depth = (png_byte)(8 * row_info->channels); in png_do_unpack() 2224 row_info->rowbytes = row_width * row_info->channels; in png_do_unpack() 2236 png_do_unshift(png_row_infop row_info, png_bytep row, in png_do_unshift() argument 2244 color_type = row_info->color_type; in png_do_unshift() 2250 int bit_depth = row_info->bit_depth; in png_do_unshift() [all …]
|
D | pngwrite.c | 623 png_do_write_intrapixel(png_row_infop row_info, png_bytep row) in png_do_write_intrapixel() argument 627 if ((row_info->color_type & PNG_COLOR_MASK_COLOR) != 0) in png_do_write_intrapixel() 630 png_uint_32 row_width = row_info->width; in png_do_write_intrapixel() 631 if (row_info->bit_depth == 8) in png_do_write_intrapixel() 636 if (row_info->color_type == PNG_COLOR_TYPE_RGB) in png_do_write_intrapixel() 639 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) in png_do_write_intrapixel() 653 else if (row_info->bit_depth == 16) in png_do_write_intrapixel() 658 if (row_info->color_type == PNG_COLOR_TYPE_RGB) in png_do_write_intrapixel() 661 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) in png_do_write_intrapixel() 690 png_row_info row_info; in png_write_row() local [all …]
|
/external/pdfium/third_party/libpng16/ |
D | pngwtran.c | 25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) in png_do_pack() argument 29 if (row_info->bit_depth == 8 && in png_do_pack() 30 row_info->channels == 1) in png_do_pack() 39 png_uint_32 row_width = row_info->width; in png_do_pack() 77 png_uint_32 row_width = row_info->width; in png_do_pack() 117 png_uint_32 row_width = row_info->width; in png_do_pack() 155 row_info->bit_depth = (png_byte)bit_depth; in png_do_pack() 156 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels); in png_do_pack() 157 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, in png_do_pack() 158 row_info->width); in png_do_pack() [all …]
|
D | pngtrans.c | 261 png_do_invert(png_row_infop row_info, png_bytep row) in png_do_invert() argument 268 if (row_info->color_type == PNG_COLOR_TYPE_GRAY) in png_do_invert() 272 png_size_t istop = row_info->rowbytes; in png_do_invert() 281 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 282 row_info->bit_depth == 8) in png_do_invert() 286 png_size_t istop = row_info->rowbytes; in png_do_invert() 296 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 297 row_info->bit_depth == 16) in png_do_invert() 301 png_size_t istop = row_info->rowbytes; in png_do_invert() 318 png_do_swap(png_row_infop row_info, png_bytep row) in png_do_swap() argument [all …]
|
D | pngrtran.c | 2138 png_do_unpack(png_row_infop row_info, png_bytep row) in png_do_unpack() argument 2142 if (row_info->bit_depth < 8) in png_do_unpack() 2145 png_uint_32 row_width=row_info->width; in png_do_unpack() 2147 switch (row_info->bit_depth) in png_do_unpack() 2222 row_info->bit_depth = 8; in png_do_unpack() 2223 row_info->pixel_depth = (png_byte)(8 * row_info->channels); in png_do_unpack() 2224 row_info->rowbytes = row_width * row_info->channels; in png_do_unpack() 2236 png_do_unshift(png_row_infop row_info, png_bytep row, in png_do_unshift() argument 2244 color_type = row_info->color_type; in png_do_unshift() 2250 int bit_depth = row_info->bit_depth; in png_do_unshift() [all …]
|
D | pngwrite.c | 623 png_do_write_intrapixel(png_row_infop row_info, png_bytep row) in png_do_write_intrapixel() argument 627 if ((row_info->color_type & PNG_COLOR_MASK_COLOR) != 0) in png_do_write_intrapixel() 630 png_uint_32 row_width = row_info->width; in png_do_write_intrapixel() 631 if (row_info->bit_depth == 8) in png_do_write_intrapixel() 636 if (row_info->color_type == PNG_COLOR_TYPE_RGB) in png_do_write_intrapixel() 639 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) in png_do_write_intrapixel() 653 else if (row_info->bit_depth == 16) in png_do_write_intrapixel() 658 if (row_info->color_type == PNG_COLOR_TYPE_RGB) in png_do_write_intrapixel() 661 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) in png_do_write_intrapixel() 690 png_row_info row_info; in png_write_row() local [all …]
|
/external/libpng/ |
D | pngwtran.c | 25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) in png_do_pack() argument 29 if (row_info->bit_depth == 8 && in png_do_pack() 30 row_info->channels == 1) in png_do_pack() 39 png_uint_32 row_width = row_info->width; in png_do_pack() 77 png_uint_32 row_width = row_info->width; in png_do_pack() 117 png_uint_32 row_width = row_info->width; in png_do_pack() 155 row_info->bit_depth = (png_byte)bit_depth; in png_do_pack() 156 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels); in png_do_pack() 157 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, in png_do_pack() 158 row_info->width); in png_do_pack() [all …]
|
D | pngtrans.c | 262 png_do_invert(png_row_infop row_info, png_bytep row) in png_do_invert() argument 269 if (row_info->color_type == PNG_COLOR_TYPE_GRAY) in png_do_invert() 273 png_size_t istop = row_info->rowbytes; in png_do_invert() 282 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 283 row_info->bit_depth == 8) in png_do_invert() 287 png_size_t istop = row_info->rowbytes; in png_do_invert() 297 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA && in png_do_invert() 298 row_info->bit_depth == 16) in png_do_invert() 302 png_size_t istop = row_info->rowbytes; in png_do_invert() 319 png_do_swap(png_row_infop row_info, png_bytep row) in png_do_swap() argument [all …]
|
D | pngrtran.c | 2138 png_do_unpack(png_row_infop row_info, png_bytep row) in png_do_unpack() argument 2142 if (row_info->bit_depth < 8) in png_do_unpack() 2145 png_uint_32 row_width=row_info->width; in png_do_unpack() 2147 switch (row_info->bit_depth) in png_do_unpack() 2222 row_info->bit_depth = 8; in png_do_unpack() 2223 row_info->pixel_depth = (png_byte)(8 * row_info->channels); in png_do_unpack() 2224 row_info->rowbytes = row_width * row_info->channels; in png_do_unpack() 2236 png_do_unshift(png_row_infop row_info, png_bytep row, in png_do_unshift() argument 2244 color_type = row_info->color_type; in png_do_unshift() 2250 int bit_depth = row_info->bit_depth; in png_do_unshift() [all …]
|
D | pngpriv.h | 1224 PNG_INTERNAL_FUNCTION(void,png_do_read_interlace,(png_row_infop row_info, 1232 PNG_INTERNAL_FUNCTION(void,png_do_write_interlace,(png_row_infop row_info, 1240 row_info, png_bytep row, png_const_bytep prev_row, int filter),PNG_EMPTY); 1243 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_neon,(png_row_infop row_info, 1246 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 1248 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 1250 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 1252 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 1254 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 1256 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); [all …]
|
D | pngwrite.c | 623 png_do_write_intrapixel(png_row_infop row_info, png_bytep row) in png_do_write_intrapixel() argument 627 if ((row_info->color_type & PNG_COLOR_MASK_COLOR) != 0) in png_do_write_intrapixel() 630 png_uint_32 row_width = row_info->width; in png_do_write_intrapixel() 631 if (row_info->bit_depth == 8) in png_do_write_intrapixel() 636 if (row_info->color_type == PNG_COLOR_TYPE_RGB) in png_do_write_intrapixel() 639 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) in png_do_write_intrapixel() 653 else if (row_info->bit_depth == 16) in png_do_write_intrapixel() 658 if (row_info->color_type == PNG_COLOR_TYPE_RGB) in png_do_write_intrapixel() 661 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) in png_do_write_intrapixel() 690 png_row_info row_info; in png_write_row() local [all …]
|
/external/libpng/contrib/intel/ |
D | filter_sse2_intrinsics.c | 65 void png_read_filter_row_sub3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub3_sse2() argument 75 int rb = row_info->rowbytes; in png_read_filter_row_sub3_sse2() 94 void png_read_filter_row_sub4_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub4_sse2() argument 104 int rb = row_info->rowbytes; in png_read_filter_row_sub4_sse2() 115 void png_read_filter_row_avg3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg3_sse2() argument 128 int rb = row_info->rowbytes; in png_read_filter_row_avg3_sse2() 164 void png_read_filter_row_avg4_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg4_sse2() argument 177 int rb = row_info->rowbytes; in png_read_filter_row_avg4_sse2() 225 void png_read_filter_row_paeth3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_paeth3_sse2() argument 246 int rb = row_info->rowbytes; in png_read_filter_row_paeth3_sse2() [all …]
|
D | intel_sse.patch | 139 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 141 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 143 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 148 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 150 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 152 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 154 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 156 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 158 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 163 png_row_infop row_info),PNG_EMPTY);
|
/external/skia/third_party/libpng/contrib/intel/ |
D | filter_sse2_intrinsics.c | 65 void png_read_filter_row_sub3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub3_sse2() argument 75 int rb = row_info->rowbytes; in png_read_filter_row_sub3_sse2() 94 void png_read_filter_row_sub4_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub4_sse2() argument 104 int rb = row_info->rowbytes; in png_read_filter_row_sub4_sse2() 115 void png_read_filter_row_avg3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg3_sse2() argument 128 int rb = row_info->rowbytes; in png_read_filter_row_avg3_sse2() 164 void png_read_filter_row_avg4_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg4_sse2() argument 177 int rb = row_info->rowbytes; in png_read_filter_row_avg4_sse2() 225 void png_read_filter_row_paeth3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_paeth3_sse2() argument 246 int rb = row_info->rowbytes; in png_read_filter_row_paeth3_sse2() [all …]
|
D | intel_sse.patch | 164 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 166 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 168 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 170 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 173 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 175 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 177 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 179 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 181 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 183 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); [all …]
|
/external/pdfium/third_party/libpng16/contrib/intel/ |
D | filter_sse2_intrinsics.c | 65 void png_read_filter_row_sub3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub3_sse2() argument 75 int rb = row_info->rowbytes; in png_read_filter_row_sub3_sse2() 94 void png_read_filter_row_sub4_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub4_sse2() argument 104 int rb = row_info->rowbytes; in png_read_filter_row_sub4_sse2() 115 void png_read_filter_row_avg3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg3_sse2() argument 128 int rb = row_info->rowbytes; in png_read_filter_row_avg3_sse2() 164 void png_read_filter_row_avg4_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg4_sse2() argument 177 int rb = row_info->rowbytes; in png_read_filter_row_avg4_sse2() 225 void png_read_filter_row_paeth3_sse2(png_row_infop row_info, png_bytep row, in png_read_filter_row_paeth3_sse2() argument 246 int rb = row_info->rowbytes; in png_read_filter_row_paeth3_sse2() [all …]
|
D | intel_sse.patch | 136 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 138 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 140 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 142 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 145 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 147 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 149 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 151 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 153 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); 155 + row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); [all …]
|
/external/libpng/arm/ |
D | filter_neon_intrinsics.c | 43 png_read_filter_row_up_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_up_neon() argument 47 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_up_neon() 64 png_read_filter_row_sub3_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub3_neon() argument 68 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_sub3_neon() 111 png_read_filter_row_sub4_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub4_neon() argument 115 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_sub4_neon() 140 png_read_filter_row_avg3_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg3_neon() argument 145 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_avg3_neon() 208 png_read_filter_row_avg4_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg4_neon() argument 212 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_avg4_neon() [all …]
|
/external/skia/third_party/libpng/arm/ |
D | filter_neon_intrinsics.c | 43 png_read_filter_row_up_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_up_neon() argument 47 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_up_neon() 64 png_read_filter_row_sub3_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub3_neon() argument 68 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_sub3_neon() 111 png_read_filter_row_sub4_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub4_neon() argument 115 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_sub4_neon() 140 png_read_filter_row_avg3_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg3_neon() argument 145 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_avg3_neon() 208 png_read_filter_row_avg4_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg4_neon() argument 212 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_avg4_neon() [all …]
|
/external/pdfium/third_party/libpng16/arm/ |
D | filter_neon_intrinsics.c | 43 png_read_filter_row_up_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_up_neon() argument 47 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_up_neon() 64 png_read_filter_row_sub3_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub3_neon() argument 68 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_sub3_neon() 111 png_read_filter_row_sub4_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_sub4_neon() argument 115 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_sub4_neon() 140 png_read_filter_row_avg3_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg3_neon() argument 145 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_avg3_neon() 208 png_read_filter_row_avg4_neon(png_row_infop row_info, png_bytep row, in png_read_filter_row_avg4_neon() argument 212 png_bytep rp_stop = row + row_info->rowbytes; in png_read_filter_row_avg4_neon() [all …]
|