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

  /sdk/emulator/opengl/host/libs/libOpenglRender/
ReadBuffer.cpp 46 unsigned char* new_buf; local
51 new_buf = (unsigned char*)realloc(m_buf, new_size);
52 if (!new_buf) {
57 m_buf = new_buf;
  /external/webp/src/enc/
bit_writer.c 24 uint8_t* new_buf; local
32 new_buf = (uint8_t*)malloc(new_size);
33 if (new_buf == NULL) {
37 if (bw->pos_ > 0) memcpy(new_buf, bw->buf_, bw->pos_);
39 bw->buf_ = new_buf;
  /external/webp/src/dec/
idec.c 96 uint8_t* new_buf = NULL; local
102 new_buf = (uint8_t*)malloc(new_size);
103 if (!new_buf) return 0;
104 memcpy(new_buf, base, MemDataSize(mem));
109 REMAP(dec->parts_[p].buf_, base, new_buf);
110 REMAP(dec->parts_[p].buf_end_, base, new_buf);
116 mem->buf_ = new_buf;
  /external/chromium/googleurl/src/
url_canon.h 182 T* new_buf = new T[sz]; local
183 memcpy(new_buf, this->buffer_,
187 this->buffer_ = new_buf;
    [all...]
  /external/libvpx/
vpxdec.c 285 uint8_t *new_buf = realloc(*buf, 2 * new_buf_sz); local
287 if (new_buf)
289 *buf = new_buf;
    [all...]
  /external/qemu/android/camera/
camera-service.c 144 char* new_buf = (char*)realloc(*str_buf, required_mem); local
145 if (new_buf == NULL) {
150 *str_buf = new_buf;
    [all...]
  /external/libxml2/
parser.c 4590 xmlChar *new_buf; local
4726 xmlChar *new_buf; local
    [all...]

Completed in 98 milliseconds