Home
last modified time | relevance | path

Searched refs:x_resolution (Results 1 – 22 of 22) sorted by relevance

/external/ImageMagick/coders/
Djbig.c521 x_resolution, in WriteJBIGImage() local
524 x_resolution=640; in WriteJBIGImage()
535 x_resolution=geometry_info.rho; in WriteJBIGImage()
538 y_resolution=x_resolution; in WriteJBIGImage()
542 x_resolution=(size_t) (100.0*2.54*x_resolution+0.5)/100.0; in WriteJBIGImage()
545 (void) jbg_enc_lrlmax(&jbig_info,(unsigned long) x_resolution, in WriteJBIGImage()
Demf.c491 x_resolution; in ReadEMFImage() local
494 x_resolution=DefaultResolution; in ReadEMFImage()
503 x_resolution=image->resolution.x; in ReadEMFImage()
505 x_resolution*=CENTIMETERS_INCH; in ReadEMFImage()
509 x_resolution+0.5); in ReadEMFImage()
Dpict.c1676 x_resolution, in WritePICTImage() local
1766 x_resolution=image->resolution.x != 0.0 ? image->resolution.x : in WritePICTImage()
1825 (void) WriteBlobMSBShort(image,(unsigned short) x_resolution); in WritePICTImage()
1931 (void) WriteBlobMSBShort(image,(unsigned short) x_resolution); in WritePICTImage()
1972 (void) WriteBlobMSBShort(image,(unsigned short) (x_resolution+0.5)); in WritePICTImage()
Dpsd.c3070 x_resolution, in WriteResolutionResourceBlock() local
3078 x_resolution=2.54*65536.0*image->resolution.x+0.5; in WriteResolutionResourceBlock()
3084 x_resolution=65536.0*image->resolution.x+0.5; in WriteResolutionResourceBlock()
3092 (void) WriteBlobMSBLong(image,(unsigned int) (x_resolution+0.5)); in WriteResolutionResourceBlock()
Dmsl.c5322 x_resolution, in MSLStartElement() local
5333 x_resolution=DefaultResolution; in MSLStartElement()
5355 x_resolution=geometry_info.rho; in MSLStartElement()
5367 x_resolution=StringToDouble(value,(char **) NULL); in MSLStartElement()
5404 width=(size_t) (x_resolution*msl_info->image[n]->columns/ in MSLStartElement()
Dtiff.c1245 x_resolution, in ReadTIFFImage() local
1508 if ((TIFFGetFieldDefaulted(tiff,TIFFTAG_XRESOLUTION,&x_resolution) == 1) && in ReadTIFFImage()
1511 image->resolution.x=x_resolution; in ReadTIFFImage()
Dpng.c2213 x_resolution, in ReadOnePNGImage() local
2948 x_resolution=0; in ReadOnePNGImage()
2956 (void) png_get_pHYs(ping,ping_info,&x_resolution,&y_resolution, in ReadOnePNGImage()
2958 image->resolution.x=(double) x_resolution; in ReadOnePNGImage()
2964 image->resolution.x=(double) x_resolution/100.0; in ReadOnePNGImage()
2971 (double) x_resolution,(double) y_resolution,unit_type); in ReadOnePNGImage()
4183 (double) x_resolution,(double) y_resolution, unit_type); in ReadOnePNGImage()
/external/u-boot/arch/x86/lib/
Dcoreboot_table.c148 if (vesa->x_resolution && vesa->y_resolution) { in write_coreboot_table()
153 fb->x_resolution = vesa->x_resolution; in write_coreboot_table()
Dbios.c232 le16_to_cpu(mode_info->vesa.x_resolution), in vbe_set_graphics()
/external/u-boot/drivers/pci/
Dpci_rom.c209 if (!vesa->x_resolution || !vesa->y_resolution) in setup_video()
214 screen_info->lfb_width = vesa->x_resolution; in setup_video()
330 if (!vesa->x_resolution) in vbe_setup_video_priv()
332 uc_priv->xsize = vesa->x_resolution; in vbe_setup_video_priv()
/external/u-boot/drivers/video/
Dcoreboot.c22 vesa->x_resolution = fb->x_resolution; in save_vesa_mode()
Defi.c66 vesa->x_resolution = mode->info->width; in save_vesa_mode()
/external/u-boot/drivers/bios_emulator/
Datibios.c160 le16_to_cpu(vm->x_resolution), in atibios_debug_mode()
210 vm->x_resolution = le16_to_cpu(vm->x_resolution); in atibios_set_vesa_mode()
/external/u-boot/cmd/
Delf.c324 if (vesa->x_resolution && vesa->y_resolution) { in do_bootvx()
328 gop->info.width = vesa->x_resolution; in do_bootvx()
/external/u-boot/arch/x86/lib/fsp/
Dfsp_graphics.c49 vesa->x_resolution = ginfo->width; in save_vesa_mode()
/external/u-boot/include/
Dvbe.h57 u16 x_resolution; /* 12 */ member
/external/u-boot/arch/x86/include/asm/
Dcoreboot_tables.h129 u32 x_resolution; member
/external/ImageMagick/MagickWand/
Dmagick-property.c2780 const double x_resolution,const double y_resolution) in MagickSetResolution() argument
2790 (void) FormatLocaleString(density,MagickPathExtent,"%gx%g",x_resolution, in MagickSetResolution()
Dmagick-image.c8481 const double x_resolution,const double y_resolution,const FilterType filter) in MagickResampleImage() argument
8492 resample_image=ResampleImage(wand->images,x_resolution,y_resolution,filter, in MagickResampleImage()
10472 const double x_resolution,const double y_resolution) in MagickSetImageResolution() argument
10480 wand->images->resolution.x=x_resolution; in MagickSetImageResolution()
Ddrawing-wand.c4890 const double x_resolution,const double y_resolution) in DrawSetFontResolution() argument
4899 (void) FormatLocaleString(density,MagickPathExtent,"%.20gx%.20g",x_resolution, in DrawSetFontResolution()
/external/ImageMagick/MagickCore/
Dresize.c2305 MagickExport Image *ResampleImage(const Image *image,const double x_resolution, in ResampleImage() argument
2326 width=(size_t) (x_resolution*image->columns/(image->resolution.x == 0.0 ? in ResampleImage()
2333 resample_image->resolution.x=x_resolution; in ResampleImage()
/external/ImageMagick/Magick++/lib/
DImage.cpp676 x_resolution=72, in density() local
680 x_resolution=constImage()->resolution.x; in density()
685 return(Point(x_resolution,y_resolution)); in density()