Lines Matching full:code

39 The following #defines are used to create code sections. They can be disabled
40 to disable code sections, which can give faster compile time and smaller binary.
101 The default built-in CRC code comes with 8KB of lookup tables, so for memory constrained environmen…
154 Return value: LodePNG error code (0 means no error).
211 Return value: LodePNG error code (0 means no error).
313 /*Returns an English description of the numerical error code.*/
314 const char * lodepng_error_text(unsigned code);
435 /*return value is error code (0 means no error)*/
700 /*return value is error code (0 means no error)*/
720 return value = LodePNG error code (0 if all went ok, an error if the conversion isn't supported)
725 Return value is LodePNG error code
819 Returns error code (e.g. alloc fail) or 0 if ok.*/
904 of the PNG file and outputs what it read in the state. Returns error code on failure.
1002 Returns error code (0 if it went ok)
1010 Return error code (0 if it went ok)
1058 Find length-limited Huffman code for given frequencies. This function is in the
1079 return value: error code (0 means ok)
1092 return value: error code (0 means ok)
1137 return value: error code (0 means ok)
1193 [ ] errors in state instead of as return code?
1268 examples from the LodePNG website to see how to use it in code, or check the
1341 the additional C++ code is in "#ifdef __cplusplus" blocks that make C-compilers
1342 ignore it, and the C code is made to compile both with strict ISO C90 and C++.
1644 All functions in LodePNG that return an error code, return 0 if everything went
1645 OK, or a non-zero code if there was an error.
1648 lodepng_error_text: given the numerical error code, it returns a description
1651 Check the implementation of lodepng_error_text to see the meaning of each code.
1945 *) 30 dec 2018: code style changes only: removed newlines before opening braces.
1971 use custom ones in your project without needing to change lodepng's code.
1986 several bugs and shrunk the implementation code. Made new samples.
1997 *) 16 aug 2011: made the code less wide (max 120 characters per line).
1998 *) 17 apr 2011: code cleanup. Bugfixes. Convert low to 16-bit per sample colors.
2004 *) 7 nov 2010: added LodePNG_error_text function to get error code description.
2017 *) 23 jan 2008: small cleanups, and #defines to divide code in sections
2021 Also various fixes, such as in the deflate and the padding bits code.
2023 filtering code of encoder.
2026 Having LodePNG be pure ISO C90 makes it more portable. The C and C++ code
2031 *) 21 jul 2007: deflate code placed in new namespace separate from zlib code
2036 *) 27 may 2007: zlib and png code separated (but still in the same file),
2038 *) 19 may 2007: minor fixes, some code cleaning, new error added (error 69),
2046 Fixed a bug where the end code of a block had length 0 in the Huffman tree.
2059 cleaned out code as well as making certain parts faster.
2062 Removed some code duplication in the decoder. Fixed little bug in an example.
2073 *) 28 jul 2006: Cleaned the code and added new error checks.
2087 *) 22 apr 2006: Optimized and improved some code