Home
last modified time | relevance | path

Searched refs:glyphsize (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/vt/
H A Dvt_font.c160 size_t glyphsize, mapsize; in vtfont_load() local
181 glyphsize = howmany(f->width, 8) * f->height * f->glyph_count; in vtfont_load()
182 if (glyphsize > VTFONT_MAXGLYPHSIZE) in vtfont_load()
187 vf->vf_bytes = malloc(glyphsize, M_VTFONT, M_WAITOK); in vtfont_load()
209 error = copyin(f->glyphs, vf->vf_bytes, glyphsize); in vtfont_load()
/freebsd/usr.sbin/vidcontrol/
H A Dvidcontrol.c419 size_t glyphsize; in load_vt4font() local
438 glyphsize = howmany(vfnt.width, 8) * vfnt.height * vfnt.glyph_count; in load_vt4font()
439 if ((vfnt.glyphs = malloc(glyphsize)) == NULL) { in load_vt4font()
444 if (fread(vfnt.glyphs, glyphsize, 1, f) != 1) { in load_vt4font()