HomeSort by relevance Sort by last modified time
    Searched refs:vesa (Results 1 - 14 of 14) sorted by null

  /external/syslinux/com32/hdt/
hdt-dump-vesa.c 39 snprintf(buffer,sizeof(buffer),"%d.%d", hardware->vesa.major_version, hardware->vesa.minor_version);
40 add_s("vesa.version",buffer);
41 add_hs(vesa.vendor);
42 add_hs(vesa.product);
43 add_hs(vesa.product_revision);
44 add_hi(vesa.software_rev);
46 snprintf(buffer,sizeof(buffer),"%d KB",hardware->vesa.total_memory*64);
47 add_s("vesa.memory",buffer);
48 add_i("vesa.modes",hardware->vesa.vmi_count)
    [all...]
hdt-menu-vesa.c 31 /* Submenu for the vesa card */
38 menu->menu = add_menu(" VESA Bios ", -1);
42 snprintf(buffer, sizeof buffer, "VESA Version: %d.%d",
43 hardware->vesa.major_version, hardware->vesa.minor_version);
45 hardware->vesa.major_version, hardware->vesa.minor_version);
49 snprintf(buffer, sizeof buffer, "Vendor : %s", hardware->vesa.vendor);
51 hardware->vesa.vendor);
55 snprintf(buffer, sizeof buffer, "Product : %s", hardware->vesa.product)
    [all...]
hdt-cli-vesa.c 41 more_printf("No VESA BIOS detected\n");
44 more_printf("VESA\n");
45 more_printf(" Vesa version : %d.%d\n", hardware->vesa.major_version,
46 hardware->vesa.minor_version);
47 more_printf(" Vendor : %s\n", hardware->vesa.vendor);
48 more_printf(" Product : %s\n", hardware->vesa.product);
49 more_printf(" Product rev. : %s\n", hardware->vesa.product_revision);
50 more_printf(" Software rev.: %d\n", hardware->vesa.software_rev);
51 more_printf(" Memory (KB) : %d\n", hardware->vesa.total_memory * 64)
    [all...]
hdt-common.h 51 #include <lib/sys/vesa/vesa.h>
75 /* Graphic to load in background when using the vesa mode */
90 /* Defines if we must use the vesa mode */
190 struct s_vesa vesa; member in struct:s_hardware
208 bool vesa_detection; /* Does the vesa sutff have been already detected? */
hdt-common.c 34 #include "../lib/sys/vesa/vesa.h"
69 /* Vesa mode isn't set until we explictly call it */
101 } else if (!strncmp(argv[i], "vesa", 4)) {
105 if (!strncmp(argv[i], "vesa=", 5)) {
224 memset(&hardware->vesa, 0, sizeof(struct s_vesa));
312 /* Detection vesa stuff*/
349 strlcpy(hardware->vesa.vendor, oem_ptr, sizeof(hardware->vesa.vendor));
351 strlcpy(hardware->vesa.product, oem_ptr, sizeof(hardware->vesa.product))
    [all...]
  /external/syslinux/com32/modules/
vesainfo.c 4 * Dump information about what VESA graphics modes are supported.
12 #include "../lib/sys/vesa/vesa.h"
29 struct vesa_info *vesa; local
31 vesa = lmalloc(sizeof(*vesa));
32 if (!vesa) {
36 gi = &vesa->gi;
37 mi = &vesa->mi;
47 printf("No VESA BIOS detected\n")
    [all...]
  /external/syslinux/com32/lib/
Makefile 28 I915VESA_OBJ = sys/vesa/i915resolution.o
33 sys/vesa/initvesa.o sys/vesa/drawtxt.o sys/vesa/background.o \
34 sys/vesa/alphatbl.o sys/vesa/screencpy.o sys/vesa/fmtpixel.o \
107 rm -f sys/vesa/alphatbl.c errlist.c
125 sys/vesa/drawtxt.o: sys/vesa/drawtxt.
    [all...]
  /external/syslinux/com32/sysdump/
vesa.c 3 #include <lib/sys/vesa/vesa.h>
15 printf("Scanning VESA BIOS... ");
37 cpio_mkdir(be, "vesa");
39 cpio_writefile(be, "vesa/global.bin", &gi, sizeof gi);
57 sprintf(modefile, "vesa/mode%04x.bin", mode);
  /external/syslinux/com32/lib/sys/vesa/
initvesa.c 31 * Query the VESA BIOS and select a 640x480x32 mode with local mapping
41 #include "vesa.h"
91 rv = firmware->vesa->set_mode(&__vesa_info, x, y, &bestpxf);
102 __vesacon_font_height = firmware->vesa->font_query(&rom_font);
118 output in VESA modes actually do that... */
162 * On input, VESA initialization is passed a desirable resolution. On
screencpy.c 34 #include "vesa.h"
76 firmware->vesa->screencpy(dst, s, bytes, &wi);
  /external/syslinux/com32/include/syslinux/
firmware.h 63 struct vesa_ops *vesa; member in struct:firmware
  /external/syslinux/com32/lua/src/
Makefile 34 MODULES += vesa.c32
  /external/syslinux/core/
bios.c 11 #include <sys/vesa/vesa.h>
12 #include <sys/vesa/video.h>
13 #include <sys/vesa/debug.h>
253 err = 3; /* VESA 1.2+ required */
305 * Note: The Bochs VESA BIOS (vbe.c 1.58 2006/08/19) violates the
323 (depending on VESA version ); must be a supported pixel format */
712 .vesa = &bios_vesa_ops,
  /external/syslinux/efi/
main.c 1203 .vesa = &efi_vesa_ops,
    [all...]

Completed in 342 milliseconds