MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / stbi__get16be

Function stbi__get16be

Source/Utils/stb_image.h:1693–1697  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1691// nothing
1692#else
1693static int stbi__get16be(stbi__context *s)
1694{
1695 int z = stbi__get8(s);
1696 return (z << 8) + stbi__get8(s);
1697}
1698#endif
1699
1700#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC)

Callers 12

stbi__get32beFunction · 0.85
stbi__process_markerFunction · 0.85
stbi__decode_jpeg_imageFunction · 0.85
stbi__parse_png_fileFunction · 0.85
stbi__psd_loadFunction · 0.85
stbi__pic_load_coreFunction · 0.85
stbi__pic_loadFunction · 0.85
stbi__psd_infoFunction · 0.85
stbi__psd_is16Function · 0.85
stbi__pic_infoFunction · 0.85

Calls 1

stbi__get8Function · 0.85

Tested by

no test coverage detected