Lines Matching refs:u
6592 stbi_uc *u = 0; in stbi__load_gif_main() local
6603 u = stbi__gif_load_next(s, &g, comp, req_comp, two_back); in stbi__load_gif_main()
6604 if (u == (stbi_uc *) s) u = 0; // end of animated gif marker in stbi__load_gif_main()
6606 if (u) { in stbi__load_gif_main()
6623 memcpy( out + ((layers - 1) * stride), u, stride ); in stbi__load_gif_main()
6632 } while (u != 0); in stbi__load_gif_main()
6652 stbi_uc *u = 0; in stbi__gif_load() local
6657 u = stbi__gif_load_next(s, &g, comp, req_comp, 0); in stbi__gif_load()
6658 if (u == (stbi_uc *) s) u = 0; // end of animated gif marker in stbi__gif_load()
6659 if (u) { in stbi__gif_load()
6666 u = stbi__convert_format(u, 4, req_comp, g.w, g.h); in stbi__gif_load()
6676 return u; in stbi__gif_load()