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

  /bionic/libc/bionic/
getcwd.cpp 45 char* allocated_buf = NULL; variable
53 buf = allocated_buf = static_cast<char*>(malloc(allocated_size));
64 free(allocated_buf); variable
70 if (allocated_buf != NULL) {
72 buf = strdup(allocated_buf);
73 free(allocated_buf); variable
75 buf = allocated_buf;
  /external/webp/src/utils/
bit_writer_utils.c 207 uint8_t* allocated_buf; local
222 allocated_buf = (uint8_t*)WebPSafeMalloc(1ULL, allocated_size);
223 if (allocated_buf == NULL) {
228 memcpy(allocated_buf, bw->buf_, current_size);
231 bw->buf_ = allocated_buf;

Completed in 758 milliseconds