Lines Matching refs:height
431 int height, int width) in mdacon_clear() argument
436 if (width <= 0 || height <= 0) in mdacon_clear()
440 scr_memsetw(dest, eattr, height*width*2); in mdacon_clear()
442 for (; height > 0; height--, dest+=mda_num_columns) in mdacon_clear()
448 int dy, int dx, int height, int width) in mdacon_bmove() argument
452 if (width <= 0 || height <= 0) in mdacon_bmove()
456 scr_memmovew(MDA_ADDR(0,dy), MDA_ADDR(0,sy), height*width*2); in mdacon_bmove()
462 for (; height > 0; height--) { in mdacon_bmove()
468 src = MDA_ADDR(sx, sy+height-1); in mdacon_bmove()
469 dest = MDA_ADDR(dx, dy+height-1); in mdacon_bmove()
471 for (; height > 0; height--) { in mdacon_bmove()