Lines Matching defs:height
58 static void write_nix_header(uint32_t magicU32le, uint32_t width, uint32_t height) {
63 set_u32le(data + 12, height);
82 static void write_nie_pixels(uint32_t width, uint32_t height, const SkBitmap& bm) {
86 for (uint32_t y = 0; y < height; y++) {
104 static void write_nia_padding(uint32_t width, uint32_t height) {
105 // 4 bytes of padding when the width and height are both odd.
106 if (width & height & 1) {
186 bm.width(), bm.height());
212 int height = bm.height();
214 width, height);
215 write_nie_pixels(width, height, bm);
223 write_nia_padding(width, height);