Home
last modified time | relevance | path

Searched refs:numpixels (Results 1 – 2 of 2) sorted by relevance

/lvgl-latest/src/libs/lodepng/
Dlodepng.c3290 size_t numpixels, total; in lodepng_pixel_overflow() local
3293 if(lodepng_mulofl((size_t)w, (size_t)h, &numpixels)) return 1; in lodepng_pixel_overflow()
3294 …if(lodepng_mulofl(numpixels, 8, &total)) return 1; /* bit pointer with 8-bit color, or 8 bytes per… in lodepng_pixel_overflow()
3846 static void getPixelColorsRGBA8(unsigned char * LODEPNG_RESTRICT buffer, size_t numpixels, in getPixelColorsRGBA8() argument
3854 for(i = 0; i != numpixels; ++i, buffer += num_channels) { in getPixelColorsRGBA8()
3859 buffer -= numpixels * num_channels; in getPixelColorsRGBA8()
3860 for(i = 0; i != numpixels; ++i, buffer += num_channels) { in getPixelColorsRGBA8()
3866 for(i = 0; i != numpixels; ++i, buffer += num_channels) { in getPixelColorsRGBA8()
3874 for(i = 0; i != numpixels; ++i, buffer += num_channels) { in getPixelColorsRGBA8()
3883 for(i = 0; i != numpixels; ++i, buffer += num_channels) { in getPixelColorsRGBA8()
[all …]
Dlodepng.h809 size_t numpixels; member