Lines Matching defs:width
58 static void write_nix_header(uint32_t magicU32le, uint32_t width, uint32_t height) {
62 set_u32le(data + 8, width);
82 static void write_nie_pixels(uint32_t width, uint32_t height, const SkBitmap& bm) {
87 for (uint32_t x = 0; x < width; x++) {
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());
211 int width = bm.width();
214 width, height);
215 write_nie_pixels(width, height, bm);
223 write_nia_padding(width, height);