Symbol: epuc
sys/dev/stbi/stb_image.c
1059
if (output == NULL) { FREE(data); return epuc("outofmem", "Out of memory"); }
sys/dev/stbi/stb_image.c
1970
if (req_comp < 0 || req_comp > 4) return epuc("bad req_comp", "Internal error");
sys/dev/stbi/stb_image.c
1999
if (!z->img_comp[k].linebuf) { cleanup_jpeg(z); return epuc("outofmem", "Out of memory"); }
sys/dev/stbi/stb_image.c
2017
if (!output) { cleanup_jpeg(z); return epuc("outofmem", "Out of memory"); }
sys/dev/stbi/stb_image.c
3111
if (req_comp < 0 || req_comp > 4) return epuc("bad req_comp", "Internal error");
sys/dev/stbi/stb_image.c
3298
if (get8(s) != 'B' || get8(s) != 'M') return epuc("not BMP", "Corrupt BMP");
sys/dev/stbi/stb_image.c
3304
if (hsz != 12 && hsz != 40 && hsz != 56 && hsz != 108) return epuc("unknown BMP", "BMP type not supported: unknown");
sys/dev/stbi/stb_image.c
3312
if (get16le(s) != 1) return epuc("bad BMP", "bad BMP");
sys/dev/stbi/stb_image.c
3314
if (bpp == 1) return epuc("monochrome", "BMP type not supported: 1-bit");
sys/dev/stbi/stb_image.c
3322
if (compress == 1 || compress == 2) return epuc("BMP RLE", "BMP type not supported: RLE");
sys/dev/stbi/stb_image.c
3355
return epuc("bad BMP", "bad BMP");
sys/dev/stbi/stb_image.c
3358
return epuc("bad BMP", "bad BMP");
sys/dev/stbi/stb_image.c
3379
if (!out) return epuc("outofmem", "Out of memory");
sys/dev/stbi/stb_image.c
3382
if (psize == 0 || psize > 256) { FREE(out); return epuc("invalid", "Corrupt BMP"); }
sys/dev/stbi/stb_image.c
3393
else { FREE(out); return epuc("bad bpp", "Corrupt BMP"); }
sys/dev/stbi/stb_image.c
3433
return epuc("bad masks", "Corrupt BMP");
sys/dev/stbi/stb_image.c
3891
return epuc("not PSD", "Corrupt PSD image");
sys/dev/stbi/stb_image.c
3895
return epuc("wrong version", "Unsupported version of PSD image");
sys/dev/stbi/stb_image.c
3903
return epuc("wrong channel count", "Unsupported number of channels in PSD image");
sys/dev/stbi/stb_image.c
3911
return epuc("unsupported bit depth", "PSD bit depth is not 8 bit");
sys/dev/stbi/stb_image.c
3924
return epuc("wrong color format", "PSD is not in RGB color format");
sys/dev/stbi/stb_image.c
3941
return epuc("bad compression", "PSD has an unknown compression format");
sys/dev/stbi/stb_image.c
3945
if (!out) return epuc("outofmem", "Out of memory");
sys/dev/stbi/stb_image.c
4109
if (at_eof(s)) return epuc("bad file","PIC file too short");
sys/dev/stbi/stb_image.c
4137
return epuc("bad format","too many packets");
sys/dev/stbi/stb_image.c
4148
if (at_eof(s)) return epuc("bad file","file too short (reading packets)");
sys/dev/stbi/stb_image.c
4149
if (packet->size != 8) return epuc("bad format","packet isn't 8bpp");
sys/dev/stbi/stb_image.c
4163
return epuc("bad format","packet has bad compression type");
sys/dev/stbi/stb_image.c
4182
if (at_eof(s)) return epuc("bad file","file too short (pure read count)");
sys/dev/stbi/stb_image.c
4200
if (at_eof(s)) return epuc("bad file","file too short (mixed read count)");
sys/dev/stbi/stb_image.c
4210
return epuc("bad file","scanline overrun");
sys/dev/stbi/stb_image.c
4219
if (count>left) return epuc("bad file","scanline overrun");
sys/dev/stbi/stb_image.c
4246
if (at_eof(s)) return epuc("bad file","file too short (pic header)");
sys/dev/stbi/stb_image.c
4247
if ((1 << 28) / x < y) return epuc("too large", "Image too large to decode");
sys/dev/stbi/stb_image.c
4509
if (first) return epuc("no clear code", "Corrupt GIF");
sys/dev/stbi/stb_image.c
4513
if (avail > 4096) return epuc("too many codes", "Corrupt GIF");
sys/dev/stbi/stb_image.c
4518
return epuc("illegal code in raster", "Corrupt GIF");
sys/dev/stbi/stb_image.c
4529
return epuc("illegal code in raster", "Corrupt GIF");
sys/dev/stbi/stb_image.c
4558
if (g->out == 0) return epuc("outofmem", "Out of memory");
sys/dev/stbi/stb_image.c
4565
if (g->out == 0) return epuc("outofmem", "Out of memory");
sys/dev/stbi/stb_image.c
4582
return epuc("bad Image Descriptor", "Corrupt GIF");
sys/dev/stbi/stb_image.c
4612
return epuc("missing color table", "Corrupt GIF");
sys/dev/stbi/stb_image.c
4645
return epuc("unknown code", "Corrupt GIF");
sys/dev/stbi/stb_image.c
658
if (!f) return epuc("can't fopen", "Unable to open file");
sys/dev/stbi/stb_image.c
687
return epuc("unknown image type", "Image not of any known type, or corrupt");
sys/dev/stbi/stb_image.c
714
return epuc("unknown image type", "Image not of any known type, or corrupt");
sys/dev/stbi/stb_image.c
991
return epuc("outofmem", "Out of memory");