Home
last modified time | relevance | path

Searched refs:CERROR_BREAK (Results 1 – 1 of 1) sorted by relevance

/external/zopfli/src/zopflipng/lodepng/
Dlodepng.cpp94 #define CERROR_BREAK(errorvar, code)\ macro
101 #define ERROR_BREAK(code) CERROR_BREAK(error, code)
4362 if(length < 1 || length > 79) CERROR_BREAK(error, 89); /*keyword too short or long*/ in readChunk_tEXt()
4365 if(!key) CERROR_BREAK(error, 83); /*alloc fail*/ in readChunk_tEXt()
4374 if(!str) CERROR_BREAK(error, 83); /*alloc fail*/ in readChunk_tEXt()
4406 if(length + 2 >= chunkLength) CERROR_BREAK(error, 75); /*no null termination, corrupt?*/ in readChunk_zTXt()
4407 if(length < 1 || length > 79) CERROR_BREAK(error, 89); /*keyword too short or long*/ in readChunk_zTXt()
4410 if(!key) CERROR_BREAK(error, 83); /*alloc fail*/ in readChunk_zTXt()
4415 … if(data[length + 1] != 0) CERROR_BREAK(error, 72); /*the 0 byte indicating compression must be 0*/ in readChunk_zTXt()
4418 if(string2_begin > chunkLength) CERROR_BREAK(error, 75); /*no null termination, corrupt?*/ in readChunk_zTXt()
[all …]