Searched refs:newbuff (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/lua/src/
H A Dlauxlib.c542 char *newbuff; local
546 newbuff = (char *)resizebox(L, boxidx, newsize); /* resize it */
553 newbuff = (char *)resizebox(L, boxidx, newsize);
554 memcpy(newbuff, B->b, B->n * sizeof(char)); /* copy original content */
556 B->b = newbuff;
558 return newbuff + B->n;
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlauxlib.c400 char *newbuff; local
407 newbuff = (char *)lua_newuserdata(L, newsize * sizeof(char));
409 memcpy(newbuff, B->b, B->n * sizeof(char));
412 B->b = newbuff;
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dgetifaddrs.c339 void *newbuff = realloc(buff, bufsize); local
340 if (newbuff == NULL || bufsize < lastbufsize) {
344 buff = newbuff;

Completed in 73 milliseconds