MCPcopy Create free account
hub / github.com/MegEngine/MegEngine / stbi__get32be

Function stbi__get32be

lite/example/cpp_example/mge/cv/stb_image.h:1741–1744  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1739// nothing
1740#else
1741static stbi__uint32 stbi__get32be(stbi__context* s) {
1742 stbi__uint32 z = stbi__get16be(s);
1743 return (z << 16) + stbi__get16be(s);
1744}
1745#endif
1746
1747#if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF)

Callers 7

stbi__get_chunk_headerFunction · 0.85
stbi__parse_png_fileFunction · 0.85
stbi__psd_testFunction · 0.85
stbi__psd_loadFunction · 0.85
stbi__pic_loadFunction · 0.85
stbi__psd_infoFunction · 0.85
stbi__psd_is16Function · 0.85

Calls 1

stbi__get16beFunction · 0.85

Tested by

no test coverage detected