Searched refs:bmp_idx (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/font/
H A Dfont.c71 grub_uint16_t *bmp_idx; member in struct:grub_font
223 font->bmp_idx = 0;
315 font->bmp_idx = grub_malloc (0x10000 * sizeof (grub_uint16_t));
316 if (!font->bmp_idx)
318 grub_memset (font->bmp_idx, 0xff, 0x10000 * sizeof (grub_uint16_t));
347 font->bmp_idx[entry->code] = i;
679 if (code < 0x10000 && font->bmp_idx)
681 if (font->bmp_idx[code] == 0xffff)
683 return &table[font->bmp_idx[code]];
802 grub_free (font->bmp_idx);
[all...]

Completed in 29 milliseconds