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

Function stbi__get32le

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

Source from the content-addressed store, hash-verified

1755
1756#ifndef STBI_NO_BMP
1757static stbi__uint32 stbi__get32le(stbi__context* s) {
1758 stbi__uint32 z = stbi__get16le(s);
1759 z += (stbi__uint32)stbi__get16le(s) << 16;
1760 return z;
1761}
1762#endif
1763
1764#define STBI__BYTECAST(x) ((stbi_uc)((x)&255)) // truncate int to byte without warnings

Callers 3

stbi__bmp_test_rawFunction · 0.85
stbi__bmp_parse_headerFunction · 0.85
stbi__bmp_loadFunction · 0.85

Calls 1

stbi__get16leFunction · 0.85

Tested by

no test coverage detected