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

Function stbi__zeof

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

Source from the content-addressed store, hash-verified

4522} stbi__zbuf;
4523
4524stbi_inline static int stbi__zeof(stbi__zbuf* z) {
4525 return (z->zbuffer >= z->zbuffer_end);
4526}
4527
4528stbi_inline static stbi_uc stbi__zget8(stbi__zbuf* z) {
4529 return stbi__zeof(z) ? 0 : *z->zbuffer++;

Callers 3

stbi__zget8Function · 0.85
stbi__zhuffman_decodeFunction · 0.85
stbi__parse_zlib_headerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected