Lines Matching full:outsize
152 outsize: Output parameter. Pointer to the size in bytes of the out buffer.
161 unsigned lodepng_encode_memory(unsigned char** out, size_t* outsize,
166 unsigned lodepng_encode32(unsigned char** out, size_t* outsize,
170 unsigned lodepng_encode24(unsigned char** out, size_t* outsize,
675 /*This function allocates the out buffer with standard malloc and stores the size in *outsize.*/
676 unsigned lodepng_encode(unsigned char** out, size_t* outsize,
756 unsigned lodepng_inflate(unsigned char** out, size_t* outsize,
763 Either, *out must be NULL and *outsize must be 0, or, *out must be a valid
764 buffer and *outsize its size in bytes. out must be freed by user after usage.
766 unsigned lodepng_zlib_decompress(unsigned char** out, size_t* outsize,
776 Either, *out must be NULL and *outsize must be 0, or, *out must be a valid
777 buffer and *outsize its size in bytes. out must be freed by user after usage.
779 unsigned lodepng_zlib_compress(unsigned char** out, size_t* outsize,
791 unsigned lodepng_deflate(unsigned char** out, size_t* outsize,
803 outsize: output parameter, size of the allocated out buffer
807 unsigned lodepng_load_file(unsigned char** out, size_t* outsize, const char* filename);