Home
last modified time | relevance | path

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

/external/ImageMagick/coders/
Djbig.c522 y_resolution; in WriteJBIGImage() local
525 y_resolution=480; in WriteJBIGImage()
536 y_resolution=geometry_info.sigma; in WriteJBIGImage()
538 y_resolution=x_resolution; in WriteJBIGImage()
543 y_resolution=(size_t) (100.0*2.54*y_resolution+0.5)/100.0; in WriteJBIGImage()
546 (unsigned long) y_resolution); in WriteJBIGImage()
Demf.c490 y_resolution, in ReadEMFImage() local
493 y_resolution=DefaultResolution; in ReadEMFImage()
497 y_resolution=image->resolution.y; in ReadEMFImage()
499 y_resolution*=CENTIMETERS_INCH; in ReadEMFImage()
507 image->rows=(size_t) ((height/1000.0/CENTIMETERS_INCH)*y_resolution+0.5); in ReadEMFImage()
Dpict.c1677 y_resolution; in WritePICTImage() local
1768 y_resolution=image->resolution.y != 0.0 ? image->resolution.y : in WritePICTImage()
1827 (void) WriteBlobMSBShort(image,(unsigned short) y_resolution); in WritePICTImage()
1933 (void) WriteBlobMSBShort(image,(unsigned short) y_resolution); in WritePICTImage()
1974 (void) WriteBlobMSBShort(image,(unsigned short) (y_resolution+0.5)); in WritePICTImage()
Dpsd.c3071 y_resolution; in WriteResolutionResourceBlock() local
3079 y_resolution=2.54*65536.0*image->resolution.y+0.5; in WriteResolutionResourceBlock()
3085 y_resolution=65536.0*image->resolution.y+0.5; in WriteResolutionResourceBlock()
3095 (void) WriteBlobMSBLong(image,(unsigned int) (y_resolution+0.5)); in WriteResolutionResourceBlock()
Dmsl.c5323 y_resolution; in MSLStartElement() local
5334 y_resolution=DefaultResolution; in MSLStartElement()
5356 y_resolution=geometry_info.sigma; in MSLStartElement()
5378 y_resolution=StringToDouble(value,(char **) NULL); in MSLStartElement()
5407 height=(size_t) (y_resolution*msl_info->image[n]->rows/ in MSLStartElement()
Dtiff.c1246 y_resolution; in ReadTIFFImage() local
1509 (TIFFGetFieldDefaulted(tiff,TIFFTAG_YRESOLUTION,&y_resolution) == 1)) in ReadTIFFImage()
1512 image->resolution.y=y_resolution; in ReadTIFFImage()
Dpng.c2214 y_resolution; in ReadOnePNGImage() local
2949 y_resolution=0; in ReadOnePNGImage()
2956 (void) png_get_pHYs(ping,ping_info,&x_resolution,&y_resolution, in ReadOnePNGImage()
2959 image->resolution.y=(double) y_resolution; in ReadOnePNGImage()
2965 image->resolution.y=(double) y_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()
154 fb->y_resolution = vesa->y_resolution; in write_coreboot_table()
Dbios.c233 le16_to_cpu(mode_info->vesa.y_resolution), in vbe_set_graphics()
/external/u-boot/drivers/pci/
Dpci_rom.c209 if (!vesa->x_resolution || !vesa->y_resolution) in setup_video()
215 screen_info->lfb_height = vesa->y_resolution; in setup_video()
333 uc_priv->ysize = vesa->y_resolution; in vbe_setup_video_priv()
346 plat->size = vesa->bytes_per_scanline * vesa->y_resolution; in vbe_setup_video_priv()
/external/u-boot/drivers/video/
Dcoreboot.c23 vesa->y_resolution = fb->y_resolution; in save_vesa_mode()
Defi.c67 vesa->y_resolution = mode->info->height; in save_vesa_mode()
/external/u-boot/cmd/
Delf.c324 if (vesa->x_resolution && vesa->y_resolution) { in do_bootvx()
329 gop->info.height = vesa->y_resolution; in do_bootvx()
333 gop->fb_size = vesa->bytes_per_scanline * vesa->y_resolution; in do_bootvx()
/external/u-boot/drivers/bios_emulator/
Datibios.c161 le16_to_cpu(vm->y_resolution), in atibios_debug_mode()
211 vm->y_resolution = le16_to_cpu(vm->y_resolution); in atibios_set_vesa_mode()
/external/u-boot/arch/x86/lib/fsp/
Dfsp_graphics.c50 vesa->y_resolution = ginfo->height; in save_vesa_mode()
/external/u-boot/include/
Dvbe.h58 u16 y_resolution; /* 14 */ member
/external/u-boot/arch/x86/include/asm/
Dcoreboot_tables.h130 u32 y_resolution; member
/external/ImageMagick/MagickWand/
Dmagick-property.c2780 const double x_resolution,const double y_resolution) in MagickSetResolution() argument
2791 y_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
10481 wand->images->resolution.y=y_resolution; in MagickSetImageResolution()
Ddrawing-wand.c4890 const double x_resolution,const double y_resolution) in DrawSetFontResolution() argument
4900 y_resolution); in DrawSetFontResolution()
/external/ImageMagick/MagickCore/
Dresize.c2306 const double y_resolution,const FilterType filter,ExceptionInfo *exception) in ResampleImage() argument
2328 height=(size_t) (y_resolution*image->rows/(image->resolution.y == 0.0 ? in ResampleImage()
2334 resample_image->resolution.y=y_resolution; in ResampleImage()
/external/ImageMagick/Magick++/lib/
DImage.cpp677 y_resolution=72; in density() local
683 y_resolution=constImage()->resolution.y; in density()
685 return(Point(x_resolution,y_resolution)); in density()