Lines Matching full:height

49 static unsigned int width = 8, wbytes, height = 16;
180 "[-nv] [-f format] [-h height] [-w width]\n"
264 hash = fnv_32_buf(bytes, wbytes * height, FNV1_32_INIT) % FONTCVT_NHASH;
266 if (memcmp(gl->g_data, bytes, wbytes * height) == 0) {
274 gl->g_data = xmalloc(wbytes * height);
275 memcpy(gl->g_data, bytes, wbytes * height);
384 errx(1, "invalid height %d", h);
385 height = h;
465 bytes = xmalloc(wbytes * height);
466 bytes_r = xmalloc(wbytes * height);
491 memset(bytes, 0, wbytes * height);
492 memset(bytes_r, 0, wbytes * height);
557 if (strncmp(ln, "# Height: ", 10) == 0) {
559 errx(1, "malformed input: Height tag after font data");
567 bytes = xmalloc(wbytes * height);
568 bytes_r = xmalloc(wbytes * height);
573 chars_per_row = strlen(p) / height;
585 for (i = 0; i < height; i++) {
690 if (cb(gl->g_data, wbytes * height, 1, fp) != 1)
773 fh.fh_height = height;
804 size_t uncompressed_size = wbytes * height * glyph_unique;
819 width, height) < 0)
830 width, height) < 0)
851 "FONTMAP_NORMAL_%ux%u[] = {\n", width, height) < 0)
860 "FONTMAP_NORMAL_RH_%ux%u[] = {\n", width, height) < 0)
869 "FONTMAP_BOLD_%ux%u[] = {\n", width, height) < 0)
878 "FONTMAP_BOLD_RH_%ux%u[] = {\n", width, height) < 0)
888 width, height) < 0)
897 width, height) < 0)
905 width, height) < 0)
913 width, height) < 0)
921 width, height) < 0)
931 width, height) < 0) {
937 if (fprintf(fp, "\t.vf_height\t= %u,\n", height) < 0)
949 width, height) < 0)
953 if (fprintf(fp, "\t.vfbd_height\t= %u,\n", height) < 0)
965 width, height) < 0) {
978 if (fprintf(fp, "\t.vfbd_font = &font_%ux%u\n", width, height) < 0)
997 "- height: %6u\n"
1016 width, height,
1053 height = atoi(optarg);
1084 set_height(height);