Lines Matching defs:tmp
118 uint8_t* tmp = NULL;
140 tmp = (uint8_t*)WebPMalloc(rect.width * sizeof(*tmp));
141 if (tmp == NULL) goto End;
154 if (DGifGetLine(gif, tmp, rect.width) == GIF_ERROR) goto End;
155 if (!Remap(gif, tmp, rect.width, transparent_index, row)) goto End;
162 if (DGifGetLine(gif, tmp, rect.width) == GIF_ERROR) goto End;
163 if (!Remap(gif, tmp, rect.width, transparent_index, ptr)) goto End;
171 WebPFree(tmp);
207 const uint8_t* tmp;
215 // Note: We store returned value in 'tmp' first, to avoid
217 tmp = (uint8_t*)realloc((void*)metadata->bytes,
219 if (tmp == NULL) {
222 memcpy((void*)(tmp + metadata->size),
224 metadata->bytes = tmp;