Home
last modified time | relevance | path

Searched refs:new_output (Results 1 – 3 of 3) sorted by relevance

/external/webp/src/enc/
Dalpha.c57 uint8_t* new_output = realloc(*output, new_size); in CompressAlpha() local
58 if (new_output == NULL) { in CompressAlpha()
62 memcpy(new_output + *output_size, chunk, size_out); in CompressAlpha()
64 *output = new_output; in CompressAlpha()
/external/v8/src/
Dprettyprinter.cc492 char* new_output = NewArray<char>(new_size); in Print() local
493 memcpy(new_output, output_, pos_); in Print()
495 output_ = new_output; in Print()
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
Drebaseline_chromium_webkit_tests.py486 new_output = self._filesystem.read_binary_file(new_baseline)
489 if not self._diff_baselines(new_output, fallback_output, is_image):