Home
last modified time | relevance | path

Searched refs:idata_limit (Results 1 - 1 of 1) sorted by relevance

/third_party/astc-encoder/Source/
H A Dstb_image.h5084 stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0; in stbi__parse_png_file() local
5183 if (ioff + c.length > idata_limit) { in stbi__parse_png_file()
5184 stbi__uint32 idata_limit_old = idata_limit; in stbi__parse_png_file()
5186 if (idata_limit == 0) idata_limit = c.length > 4096 ? c.length : 4096; in stbi__parse_png_file()
5187 while (ioff + c.length > idata_limit) in stbi__parse_png_file()
5188 idata_limit *= 2; in stbi__parse_png_file()
5190 p = (stbi_uc *) STBI_REALLOC_SIZED(z->idata, idata_limit_old, idata_limit); if (p == NULL) return stbi__err("outofmem", "Out of memory"); in stbi__parse_png_file()

Completed in 16 milliseconds