HomeSort by relevance Sort by last modified time
    Searched refs:GIF_ERROR (Results 1 - 8 of 8) sorted by null

  /external/giflib/
dgif_lib.c 137 if (DGifGetScreenDesc(GifFile) == GIF_ERROR) {
210 if (DGifGetScreenDesc(GifFile) == GIF_ERROR) {
239 return GIF_ERROR;
243 if (DGifGetWord(GifFile, &GifFile->SWidth) == GIF_ERROR ||
244 DGifGetWord(GifFile, &GifFile->SHeight) == GIF_ERROR)
245 return GIF_ERROR;
251 return GIF_ERROR;
264 return GIF_ERROR;
274 return GIF_ERROR;
299 return GIF_ERROR;
    [all...]
egif_lib.c 275 return GIF_ERROR;
280 return GIF_ERROR;
289 return GIF_ERROR;
301 return GIF_ERROR;
338 return GIF_ERROR;
369 return GIF_ERROR;
374 return GIF_ERROR;
386 return GIF_ERROR;
414 return GIF_ERROR;
420 return GIF_ERROR;
    [all...]
quantize.c 56 This function returns GIF_OK if successful, GIF_ERROR otherwise.
78 return GIF_ERROR;
130 return GIF_ERROR;
194 Returns GIF_ERROR if failed, otherwise GIF_OK.
231 return GIF_ERROR;
gifalloc.c 233 return (GIF_ERROR);
241 return (GIF_ERROR);
gif_lib.h 18 #define GIF_ERROR 0
  /packages/apps/Messaging/jni/
GifTranscoder.cpp 93 return GIF_ERROR;
102 return GIF_ERROR;
110 return GIF_ERROR;
131 gifIn->SColorMap) == GIF_ERROR) {
164 if (DGifGetRecordType(gifIn, &recordType) == GIF_ERROR) {
171 if (DGifGetImageDesc(gifIn) == GIF_ERROR) {
192 gifIn->Image.ColorMap) == GIF_ERROR) {
227 if (EGifPutLine(gifOut, dstRowBuffer.get(), gifOut->SWidth) == GIF_ERROR) {
259 if (DGifGetExtension(gifIn, &extCode, &ext) == GIF_ERROR) {
266 if (DGifExtensionToGCB(ext[0], ext + 1, &gcb) == GIF_ERROR) {
    [all...]
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 178 * @return True on success, false on GIF_ERROR.
182 if (DGifGetLine(gif, dst, width) == GIF_ERROR) {
270 if (DGifGetRecordType(gif, &recType) == GIF_ERROR) {
276 if (DGifGetImageDesc(gif) == GIF_ERROR) {
424 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) {
441 if (DGifGetLine(gif, scanline, innerWidth) == GIF_ERROR) {
467 &extData) == GIF_ERROR) {
469 if (DGifGetExtension(gif, &extFunction, &extData) == GIF_ERROR) {
478 &extData[1]) == GIF_ERROR) {
484 &extData[1]) == GIF_ERROR) {
    [all...]
  /external/skia/src/codec/
SkCodec_libgif.cpp 42 static SkCodec::Result gif_error(const char* msg, function
159 gif_error("DGifOpen failed.\n");
168 gif_error("Invalid dimensions.\n");
261 return gif_error("Scaling not supported.\n", kInvalidScale);
264 return gif_error("Cannot convert input type to output type.\n",
287 if (GIF_ERROR == DGifGetRecordType(fGif, &recordType)) {
288 return gif_error("DGifGetRecordType failed.\n", kInvalidInput);
294 if (GIF_ERROR == DGifGetImageDesc(fGif)) {
295 return gif_error("DGifGetImageDesc failed.\n",
312 return gif_error("Invalid dimensions for inner image.\n"
    [all...]

Completed in 995 milliseconds