Lines Matching defs:stbi__uint32

642 typedef unsigned int   stbi__uint32;
648 typedef uint32_t stbi__uint32;
653 typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1];
805 stbi__uint32 img_x, img_y;
1702 static stbi__uint32 stbi__get32be(stbi__context *s)
1704 stbi__uint32 z = stbi__get16be(s);
1720 static stbi__uint32 stbi__get32le(stbi__context *s)
1722 stbi__uint32 z = stbi__get16le(s);
1723 z += (stbi__uint32)stbi__get16le(s) << 16;
1977 stbi__uint32 code_buffer; // jpeg entropy-coded buffer
2092 static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535};
3433 stbi__uint32 NL = stbi__get16be(j->s);
4179 stbi__uint32 code_buffer;
4587 stbi__uint32 length;
4588 stbi__uint32 type;
4650 static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stbi__uint32 y, int depth, int color)
4654 stbi__uint32 i,j,stride = x*out_n*bytes;
4655 stbi__uint32 img_len, img_width_bytes;
4862 static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, int out_n, int depth, int color, int interlaced)
4884 stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y;
4910 stbi__uint32 i, pixel_count = s->img_x * s->img_y;
4935 stbi__uint32 i, pixel_count = s->img_x * s->img_y;
4959 stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y;
5037 stbi__uint32 i, pixel_count = s->img_x * s->img_y;
5084 stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0;
5159 if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG");
5184 stbi__uint32 idata_limit_old = idata_limit;
5199 stbi__uint32 raw_len, bpl;
5692 stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s));
6694 stbi__uint32 first;