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

Function stbi__get32le

include/stb/stb_image.h:1722–1727  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1720
1721#ifndef STBI_NO_BMP
1722static stbi__uint32 stbi__get32le(stbi__context *s)
1723{
1724 stbi__uint32 z = stbi__get16le(s);
1725 z += (stbi__uint32)stbi__get16le(s) << 16;
1726 return z;
1727}
1728#endif
1729
1730#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