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

Function stbi__do_zlib

include/stb/stb_image.h:4510–4518  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4508}
4509
4510static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header)
4511{
4512 a->zout_start = obuf;
4513 a->zout = obuf;
4514 a->zout_end = obuf + olen;
4515 a->z_expandable = exp;
4516
4517 return stbi__parse_zlib(a, parse_header);
4518}
4519
4520STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen)
4521{

Calls 1

stbi__parse_zlibFunction · 0.85

Tested by

no test coverage detected