Lines Matching refs:uint
55 static void decode_2byte(gfx_surface *surface, uint x, uint y, const void *input) { in decode_2byte()
59 uint r,g,b; in decode_2byte()
68 static void decode_3byte(gfx_surface *surface, uint x, uint y, const void *input) { in decode_3byte()
76 static void decode_4byte(gfx_surface *surface, uint x, uint y, const void *input) { in decode_4byte()
128 void (*decodefunc)(gfx_surface *, uint x, uint y, const void *) = NULL; in tga_decode()
130 uint step = 1; in tga_decode()
144 uint pos = 0; in tga_decode()
145 uint x, y; in tga_decode()
146 uint surfacey; in tga_decode()
162 uint pos = 0; in tga_decode()
163 uint count = 0; in tga_decode()
164 uint x, y; in tga_decode()
172 while (count < (uint)header->height * (uint)header->width) { in tga_decode()
173 uint runpos; in tga_decode()
177 uint runlen = (run & 0x7f) + 1; in tga_decode()