Lines Matching refs:height
52 int width, int height, int bits, int x_off, in decode_rle8_bitmap() argument
63 y = height - 1; in decode_rle8_bitmap()
103 if (y >= height || x >= width) { in decode_rle8_bitmap()
120 if (y < height) { in decode_rle8_bitmap()
146 int stride, padded_width, bpp, i, width, height; in bmpdecoder() local
160 height = get_unaligned_le32(&bmp->header.height); in bmpdecoder()
164 if (height < 0) in bmpdecoder()
165 height = 0 - height; in bmpdecoder()
193 decode_rle8_bitmap(src, dst, cmap, width, height, in bmpdecoder()
200 dst += stride * (height - 1); in bmpdecoder()
202 for (i = 0; i < height; ++i) { in bmpdecoder()
221 src += stride * (height - 1); in bmpdecoder()
223 for (i = 0; i < height; i++) { in bmpdecoder()