Lines Matching refs:stbi__uint32

604 typedef unsigned int   stbi__uint32;  typedef
610 typedef uint32_t stbi__uint32; typedef
615 typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1];
752 stbi__uint32 img_x, img_y;
1299 static stbi__uint32 stbi__get32be(stbi__context *s) in stbi__get32be()
1301 stbi__uint32 z = stbi__get16be(s); in stbi__get32be()
1316 static stbi__uint32 stbi__get32le(stbi__context *s) in stbi__get32le()
1318 stbi__uint32 z = stbi__get16le(s); in stbi__get32le()
1500 stbi__uint32 code_buffer; // jpeg entropy-coded buffer
1607 static stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,6…
3549 stbi__uint32 code_buffer;
3919 stbi__uint32 length;
3920 stbi__uint32 type;
3981 …ate_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stb… in stbi__create_png_image_raw()
3984 stbi__uint32 i,j,stride = x*out_n; in stbi__create_png_image_raw()
3985 stbi__uint32 img_len, img_width_bytes; in stbi__create_png_image_raw()
4159 static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, i… in stbi__create_png_image()
4178 stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y; in stbi__create_png_image()
4204 stbi__uint32 i, pixel_count = s->img_x * s->img_y; in stbi__compute_transparency()
4228 stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y; in stbi__expand_png_palette()
4279 stbi__uint32 i, pixel_count = s->img_x * s->img_y; in stbi__de_iphone()
4324 stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0; in stbi__parse_png_file()
4397 … if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG"); in stbi__parse_png_file()
4424 stbi__uint32 raw_len, bpl; in stbi__parse_png_file()
4769 stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s)); in stbi__bmp_load()
5598 stbi__uint32 first; in stbi__process_gif_raster()