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

  /external/iputils/ninfod/
ni_ifaddrs.c 172 void *newbuff = realloc(buff, bufsize); local
173 if (newbuff == NULL || bufsize < lastbufsize) {
174 free(newbuff);
178 buff = newbuff;
  /external/chromium_org/third_party/skia/third_party/lua/src/
lauxlib.c 440 char *newbuff; local
447 newbuff = (char *)lua_newuserdata(L, newsize * sizeof(char));
449 memcpy(newbuff, B->b, B->n * sizeof(char));
452 B->b = newbuff;
  /external/qemu/hw/android/goldfish/
pipe.c 650 uint8_t* newbuff = realloc(pipe->buffer, newsize); local
652 if (newbuff == NULL) {
657 memcpy(newbuff + pipe->size, newbuff, wpos);
659 pipe->buffer = newbuff;
    [all...]

Completed in 481 milliseconds