MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / stbi__get16le

Function stbi__get16le

include/stb/stb_image.h:1714–1718  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1712// nothing
1713#else
1714static int stbi__get16le(stbi__context *s)
1715{
1716 int z = stbi__get8(s);
1717 return z + (stbi__get8(s) << 8);
1718}
1719#endif
1720
1721#ifndef STBI_NO_BMP

Callers 10

stbi__get32leFunction · 0.85
stbi__bmp_test_rawFunction · 0.85
stbi__bmp_parse_headerFunction · 0.85
stbi__bmp_loadFunction · 0.85
stbi__tga_infoFunction · 0.85
stbi__tga_testFunction · 0.85
stbi__tga_read_rgb16Function · 0.85
stbi__tga_loadFunction · 0.85
stbi__gif_headerFunction · 0.85
stbi__gif_load_nextFunction · 0.85

Calls 1

stbi__get8Function · 0.85

Tested by

no test coverage detected