Lines Matching defs:out
38 // or tort (including negligence or otherwise) arising in any way out of
236 uint8_t *out = NULL;
258 size = WebPEncodeLosslessBGR(image->ptr(), width, height, (int)image->step, &out);
262 size = WebPEncodeLosslessBGRA(image->ptr(), width, height, (int)image->step, &out);
269 size = WebPEncodeBGR(image->ptr(), width, height, (int)image->step, quality, &out);
273 size = WebPEncodeBGRA(image->ptr(), width, height, (int)image->step, quality, &out);
282 memcpy(&(*m_buf)[0], out, size);
289 fwrite(out, size, sizeof(uint8_t), fd);
295 if (out != NULL)
297 free(out);
298 out = NULL;