Lines Matching refs:uint32

137     uint32	iSize;          /* Size in bytes of the bitmap file. Should
143 uint32 iOffBits; /* Offset of the image from file start in bytes */
151 uint32 iSize; /* Size of BMPInfoHeader structure in bytes.
162 uint32 iCompression; /* Compression method */
163 uint32 iSizeImage; /* Size of uncomressed image in bytes. May
169 uint32 iClrUsed; /* Size of colour table. If 0, iBitCount should
188 uint32 iCSType; /* Colour space of the DIB. */
227 static void rearrangePixels(char *, uint32, uint32);
232 uint32 width, length; in main()
235 uint32 rowsperstrip = (uint32) -1; in main()
245 uint32 clr_tbl_size, n_clr_elems = 3; in main()
248 uint32 row, clr; in main()
374 TIFFSwabLong((uint32*) &info_hdr.iWidth); in main()
375 TIFFSwabLong((uint32*) &info_hdr.iHeight); in main()
378 TIFFSwabLong((uint32*) &info_hdr.iCompression); in main()
379 TIFFSwabLong((uint32*) &info_hdr.iSizeImage); in main()
380 TIFFSwabLong((uint32*) &info_hdr.iXPelsPerMeter); in main()
381 TIFFSwabLong((uint32*) &info_hdr.iYPelsPerMeter); in main()
382 TIFFSwabLong((uint32*) &info_hdr.iClrUsed); in main()
383 TIFFSwabLong((uint32*) &info_hdr.iClrImportant); in main()
470 ((uint32)(1<<depth)<info_hdr.iClrUsed) in main()
471 ? (uint32) (1 << depth) in main()
584 uint32 offset, size; in main()
649 uint32 i, j, k, runlength; in main()
650 uint32 compr_size, uncompr_size; in main()
664 (compr_size > ((uint32) ~0) >> 1) || in main()
666 (uncompr_size > ((uint32) ~0) >> 1) ) { in main()
823 rearrangePixels(char *buf, uint32 width, uint32 bit_count) in rearrangePixels()
826 uint32 i; in rearrangePixels()