Searched refs:stbi__get8 (Results 1 – 2 of 2) sorted by relevance
1469 stbi_inline static stbi_uc stbi__get8(stbi__context *s) in stbi__get8() function1535 int z = stbi__get8(s); in stbi__get16be()1536 return (z << 8) + stbi__get8(s); in stbi__get16be()1550 int z = stbi__get8(s); in stbi__get16le()1551 return z + (stbi__get8(s) << 8); in stbi__get16le()1893 unsigned int b = j->nomore ? 0 : stbi__get8(j->s); in stbi__grow_buffer_unsafe()1895 int c = stbi__get8(j->s); in stbi__grow_buffer_unsafe()1896 while (c == 0xff) c = stbi__get8(j->s); // consume fill bytes in stbi__grow_buffer_unsafe()2727 x = stbi__get8(j->s); in stbi__get_marker()2730 x = stbi__get8(j->s); // consume repeated 0xff fill bytes in stbi__get_marker()[all …]