Lines Matching refs:swidth
517 uint32_t swidth; in bmp_decode_rgb32() local
522 swidth = sizeof(uint32_t) * bmp->width; in bmp_decode_rgb32()
526 bottom = top + (uint64_t)swidth * (bmp->height - 1); in bmp_decode_rgb32()
544 scanline = (void *)(top + (y * swidth)); in bmp_decode_rgb32()
546 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rgb32()
597 uint32_t swidth; in bmp_decode_rgb24() local
601 swidth = sizeof(uint32_t) * bmp->width; in bmp_decode_rgb24()
607 bottom = top + (uint64_t)swidth * (bmp->height - 1); in bmp_decode_rgb24()
627 scanline = (void *)(top + (y * swidth)); in bmp_decode_rgb24()
629 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rgb24()
666 uint32_t x, y, swidth; in bmp_decode_rgb16() local
672 swidth = sizeof(uint32_t) * bmp->width; in bmp_decode_rgb16()
676 bottom = top + (uint64_t)swidth * (bmp->height - 1); in bmp_decode_rgb16()
692 scanline = (void *)(top + (y * swidth)); in bmp_decode_rgb16()
694 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rgb16()
753 uint32_t x, y, swidth; in bmp_decode_rgb() local
763 swidth = sizeof(uint32_t) * bmp->width; in bmp_decode_rgb()
767 bottom = top + (uint64_t)swidth * (bmp->height - 1); in bmp_decode_rgb()
785 scanline = (void *)(top + (y * swidth)); in bmp_decode_rgb()
787 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rgb()
825 uint32_t x, y, swidth; in bmp_decode_mask() local
828 swidth = sizeof(uint32_t) * bmp->width; in bmp_decode_mask()
832 bottom = top + (uint64_t)swidth * (bmp->height - 1); in bmp_decode_mask()
840 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_mask()
875 uint32_t swidth; in bmp_decode_rle8() local
883 swidth = sizeof(uint32_t) * bmp->width; in bmp_decode_rle8()
887 bottom = top + (uint64_t)swidth * (bmp->height - 1); in bmp_decode_rle8()
929 scanline = (void *)(top + (y * swidth)); in bmp_decode_rle8()
932 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rle8()
972 scanline = (void *)(top + (y * swidth)); in bmp_decode_rle8()
975 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rle8()
1029 uint32_t swidth; in bmp_decode_rle4() local
1037 swidth = sizeof(uint32_t) * bmp->width; in bmp_decode_rle4()
1041 bottom = top + (uint64_t)swidth * (bmp->height - 1); in bmp_decode_rle4()
1083 scanline = (void *)(top + (y * swidth)); in bmp_decode_rle4()
1086 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rle4()
1135 scanline = (void *)(top + (y * swidth)); in bmp_decode_rle4()
1138 scanline = (void *)(bottom - (y * swidth)); in bmp_decode_rle4()