• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/

Lines Matching defs:raw

128 		.font_start_addr= STI_PTR(sti->font->raw),
528 cooked_font->raw = nf;
604 cooked_font->raw = raw_font;
615 cooked_font->raw = raw_font;
630 if ((font->raw->width == width) &&
631 (font->raw->height == height))
644 int size = f->raw->bytes_per_char*256+sizeof(struct sti_rom_font);
650 q = (unsigned char *)f->raw;
676 struct sti_rom *raw;
683 raw = kmalloc(size, GFP_KERNEL);
684 if (raw) {
685 sti_bmode_rom_copy(address, size, raw);
686 memmove (&raw->res004, &raw->type[0], 0x3c);
687 raw->type[3] = raw->res004;
689 BMODE_RELOCATE (raw->region_list);
690 BMODE_RELOCATE (raw->font_start);
692 BMODE_RELOCATE (raw->init_graph);
693 BMODE_RELOCATE (raw->state_mgmt);
694 BMODE_RELOCATE (raw->font_unpmv);
695 BMODE_RELOCATE (raw->block_move);
696 BMODE_RELOCATE (raw->inq_conf);
698 raw_font = ((void *)raw) + raw->font_start;
706 return raw;
711 struct sti_rom *raw;
717 raw = kmalloc(size, GFP_KERNEL);
718 if (raw)
719 sti_rom_copy(address, size, raw);
721 return raw;
728 struct sti_rom *raw = NULL;
736 raw = sti_get_wmode_rom (address);
738 raw = sti_get_bmode_rom (address);
740 if (!raw)
743 if (!sti_cook_fonts(cooked, raw)) {
748 if (raw->region_list)
749 memcpy(sti->regions, ((void *)raw)+raw->region_list, sizeof(sti->regions));
751 address = (unsigned long) STI_PTR(raw);
753 sti->font_unpmv = address + (raw->font_unpmv & 0x03ffffff);
754 sti->block_move = address + (raw->block_move & 0x03ffffff);
755 sti->init_graph = address + (raw->init_graph & 0x03ffffff);
756 sti->inq_conf = address + (raw->inq_conf & 0x03ffffff);
759 sti->rom->raw = raw;
762 sti->font_width = sti->font->raw->width;
763 sti->font_height = sti->font->raw->height;
765 sti->font->raw = sti_bmode_font_raw(sti->font);
767 sti->sti_mem_request = raw->sti_mem_req;
768 sti->graphics_id[0] = raw->graphics_id[0];
769 sti->graphics_id[1] = raw->graphics_id[1];
771 sti_dump_rom(raw);
777 revno = (raw->revno[0] << 8) | raw->revno[1];
802 kfree(raw);