Searched defs:image_width (Results 1 - 18 of 18) sorted by relevance

/external/libjpeg-turbo/simd/
H A Djcsample-altivec.c30 jsimd_h2v1_downsample_altivec (JDIMENSION image_width, int max_v_samp_factor, argument
49 expand_right_edge(input_data, max_v_samp_factor, image_width,
86 jsimd_h2v2_downsample_altivec (JDIMENSION image_width, int max_v_samp_factor, argument
106 expand_right_edge(input_data, max_v_samp_factor, image_width,
/external/pdfium/core/fpdfapi/page/
H A Dfpdf_page_colors.cpp179 int image_width,
176 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, bool bTransMask) const argument
H A Dcpdf_colorspace.cpp80 int image_width,
108 int image_width,
142 int image_width,
177 int image_width,
496 int image_width,
603 int image_width,
693 int image_width,
800 int image_width,
950 int image_width,
960 if (m_nComponents > 3 || image_width * image_heigh
493 TranslateImageLine(uint8_t* dest_buf, const uint8_t* src_buf, int pixels, int image_width, int image_height, bool bTransMask) const argument
600 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, bool bTransMask) const argument
690 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, bool bTransMask) const argument
797 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, bool bTransMask) const argument
947 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, bool bTransMask) const argument
[all...]
/external/libjpeg-turbo/
H A Drdjpgcom.c280 unsigned int image_height, image_width; local
289 image_width = read_2_bytes();
310 image_width, image_height, num_components, data_precision);
H A Djpeglib.h158 * downsampled_width = ceil(image_width * Hi/Hmax)
160 * downsampled_width = ceil(image_width * Hi/Hmax * DCT_[h_]scaled_size/DCTSIZE)
308 JDIMENSION image_width; /* input image width */ member in struct:jpeg_compress_struct
481 JDIMENSION image_width; /* nominal image width (from SOF marker) */ member in struct:jpeg_decompress_struct
/external/libpng/contrib/gregbook/
H A Drpng-win.c151 static ulg image_width, image_height, image_rowbytes; variable
342 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
497 wimage_rowbytes = ((3*image_width + 3L) >> 2) << 2;
515 bmih->biWidth = image_width;
528 for (i = image_width; i > 0; --i) {
565 CW_USEDEFAULT, CW_USEDEFAULT, image_width+extra_width,
590 image_width, image_rowbytes, wimage_rowbytes))
603 for (i = image_width; i > 0; --i) {
612 for (i = image_width; i > 0; --i) {
640 rect.right = (LONG)image_width; /* possibl
[all...]
H A Drpng-x.c135 static ulg image_width, image_height, image_rowbytes; variable
303 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
557 window = XCreateWindow(display, root, 0, 0, image_width, image_height, 0,
579 size_hints->min_width = size_hints->max_width = (int)image_width;
634 XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
651 xdata = (uch *)malloc(4*image_width*image_height);
654 xdata = (uch *)malloc(2*image_width*image_height);
657 xdata = (uch *)malloc(image_width*image_height);
667 (char *)xdata, image_width, image_height, pad, 0);
706 image_width, image_rowbyte
[all...]
/external/libyuv/files/util/
H A Dconvert.cc31 int image_width = 0, image_height = 0; // original width and height variable
94 image_width = atoi(argv[++c]); // NOLINT
135 if (image_width == 0 || image_height == 0) {
137 image_width = org_width;
140 image_width = rec_width;
152 dst_width = Abs(image_width);
224 int org_size = Abs(image_width) * Abs(image_height) * 4; // ARGB
227 const int y_size = Abs(image_width) * Abs(image_height);
229 ((Abs(image_width) + 1) / 2) * ((Abs(image_height) + 1) / 2);
262 printf("Size: %dx%d to %dx%d\n", image_width, image_heigh
[all...]
H A Dpsnr_main.cc56 int image_width = 0, image_height = 0; variable
176 image_width = atoi(argv[++c]); // NOLINT
210 if (image_width == 0 || image_height == 0) {
220 image_width = org_width;
227 image_width = org_width;
231 image_width = rec_width;
278 distorted_frame->y = CalcSSIM(ch_org, ch_rec, image_width, image_height);
280 CalcSSIM(u_org, u_rec, (image_width + 1) / 2, (image_height + 1) / 2);
282 CalcSSIM(v_org, v_rec, (image_width + 1) / 2, (image_height + 1) / 2);
355 const int y_size = image_width * image_heigh
[all...]
H A Dssim.cc297 const int image_width,
301 const int KERNEL_X = (image_width < KERNEL) ? image_width : KERNEL;
302 const int start_x = start_max(image_width - 8 + KERNEL_X, KERNEL_X);
304 const int stride = image_width;
307 for (int i = 0; i < image_width; ++i) {
308 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
317 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
322 if (start_x < image_width) {
336 (j - KERNEL + k) * stride + image_width
295 CalcSSIM(const uint8* org, const uint8* rec, const int image_width, const int image_height) argument
[all...]
/external/webp/src/dec/
H A Dwebp_dec.c287 int image_width = 0; local
329 image_width = canvas_width;
373 &image_width, &image_height)) {
382 if (!VP8LGetInfo(data, data_size, &image_width, &image_height, has_alpha)) {
388 if (canvas_width != image_width || canvas_height != image_height) {
406 if (width != NULL) *width = image_width;
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jdmarker.c244 JDIMENSION image_width, image_height; local
254 INPUT_2BYTES(cinfo, image_width, return FALSE);
257 if (image_width <= JPEG_MAX_DIMENSION)
258 cinfo->image_width = image_width;
266 (int) cinfo->image_width, (int) cinfo->image_height,
275 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
H A Djpeglib.h252 * downsampled_width = ceil(image_width * Hi/Hmax)
254 * downsampled_width = ceil(image_width * Hi/Hmax * DCT_scaled_size/DCTSIZE)
381 JDIMENSION image_width; /* input image width */ member in struct:jpeg_compress_struct
522 JDIMENSION image_width; /* nominal image width (from SOF marker) */ member in struct:jpeg_decompress_struct
/external/ImageMagick/coders/
H A Dwmf.c2552 image_width,
2741 image_width = image_width_inch * resolution_x;
2756 ddata->scale_x = image_width/bounding_width;
2797 " Image size: %gx%g",image_width,image_height);
2849 image->columns=(unsigned long) ceil(image_width);
2550 image_width, local
H A Dpng.c4982 image_width,
6229 image_width=(size_t) mng_get_long(p);
6242 (image_width < mng_info->mng_width) ||
4975 image_width, local
/external/pdfium/third_party/libtiff/
H A Dtif_ojpeg.c263 uint32 image_width; member in struct:__anon16012
1050 sp->image_width=tif->tif_dir.td_imagewidth;
1060 sp->strile_width=sp->image_width;
1618 if (((uint32)p<sp->image_width) && ((uint32)p<sp->strile_width))
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3658 milliseconds