Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/extra/libs/png/
Dlodepng.c1359 unsigned LEN, NLEN, error = 0; in inflateNoCompression() local
1366 LEN = (unsigned)reader->data[bytepos] + ((unsigned)reader->data[bytepos + 1] << 8u); bytepos += 2; in inflateNoCompression()
1370 if(!settings->ignore_nlen && LEN + NLEN != 65535) { in inflateNoCompression()
1374 if(!ucvector_resize(out, out->size + LEN)) return 83; /*alloc fail*/ in inflateNoCompression()
1377 if(bytepos + LEN > size) return 23; /*error: reading outside of in buffer*/ in inflateNoCompression()
1379 lodepng_memcpy(out->data + out->size - LEN, reader->data + bytepos, LEN); in inflateNoCompression()
1380 bytepos += LEN; in inflateNoCompression()
1750 unsigned BFINAL, BTYPE, LEN, NLEN; in deflateNoCompression() local
1757 LEN = 65535; in deflateNoCompression()
1758 if(datasize - datapos < 65535u) LEN = (unsigned)datasize - datapos; in deflateNoCompression()
[all …]