Lines Matching +defs:font +defs:size

715  * if the adaptflag is on, we keep the size of this display, else
756 /* In case the size was changed by a init sequence */
883 c = (c & 255) | (unsigned char)D_rend.font << 8;
911 if (is_dw_font(D_rend.font))
934 if (D_xtable && D_xtable[(int)(unsigned char)D_rend.font] && D_xtable[(int)(unsigned char)D_rend.font][(int)(unsigned char)c])
935 AddStr(D_xtable[(int)(unsigned char)D_rend.font][(int)(unsigned char)c]);
937 AddChar(D_rend.font != '0' ? c : D_c0_tab[(int)(unsigned char)c]);
1186 D_rend.font = 0;
1851 D_rend.font = 0;
1881 int old = D_rend.font;
1884 D_rend.font = new;
2012 D_rend.font = 0;
2149 if (D_rend.font != mc->font)
2150 SetFont(mc->font);
2196 if (D_rend.font != ml->font[x])
2197 SetFont(ml->font[x]);
2839 D_rend.font = 0;
2901 D_rend.font = 0;
2987 D_rend.font = 0;
3385 int len, size = OUTPUT_BLOCK_SIZE;
3389 if (len < size)
3390 size = len;
3392 size = write(D_userfd, D_obuf, size);
3393 if (size >= 0)
3395 len -= size;
3398 bcopy(D_obuf + size, D_obuf, len);
3399 debug2("ASYNC: wrote %d - remaining %d\n", size, len);
3401 D_obufp -= size;
3402 D_obuffree += size;
3405 D_blocked_fuzz -= size;
3457 int size;
3474 size = IOSIZE;
3479 size = sizeof(D_fore->w_pwin->p_inbuf) - D_fore->w_pwin->p_inlen;
3482 size = sizeof(D_fore->w_inbuf) - D_fore->w_inlen;
3485 if (size > IOSIZE)
3486 size = IOSIZE;
3487 if (size <= 0)
3488 size = 1; /* Always allow one char for command keys */
3490 size = read(D_userfd, buf, size);
3491 if (size < 0)
3504 else if (size == 0)
3533 while (size > 0)
3534 LayProcess(&bufp, &size);
3548 int x, y, i = size;
3551 for (i = size; i > 0; i--, bp++)
3579 size--;
3585 size -= 5;
3594 for (i = j = 0; i < size; i++)
3604 int font = 0;
3605 j += EncodeChar(buf2 + j, c, enc, &font);
3606 j += EncodeChar(buf2 + j, -1, enc, &font);
3617 (*D_processinput)(buf, size);
3773 int size;
3776 size = read(D_blankerev.fd, buf, IOSIZE);
3777 if (size <= 0)
3784 for (b = buf; size; size--)