Lines Matching refs:nf
498 struct sti_rom_font *nf; in sti_select_fbfont() local
515 nf = kzalloc(size, STI_LOWMEM); in sti_select_fbfont()
516 if (!nf) in sti_select_fbfont()
519 nf->first_char = 0; in sti_select_fbfont()
520 nf->last_char = 255; in sti_select_fbfont()
521 nf->width = fbfont->width; in sti_select_fbfont()
522 nf->height = fbfont->height; in sti_select_fbfont()
523 nf->font_type = STI_FONT_HPROMAN8; in sti_select_fbfont()
524 nf->bytes_per_char = bpc; in sti_select_fbfont()
525 nf->next_font = 0; in sti_select_fbfont()
526 nf->underline_height = 1; in sti_select_fbfont()
527 nf->underline_pos = fbfont->height - nf->underline_height; in sti_select_fbfont()
529 dest = nf; in sti_select_fbfont()
535 kfree(nf); in sti_select_fbfont()
539 cooked_font->raw = nf; in sti_select_fbfont()