HomeSort by: relevance | last modified time | path
    Searched defs:REALLOC (Results 1 - 3 of 3) sorted by relevancy

  /src/games/atc/
def.h 54 #define REALLOC 10
  /src/bin/ed/
ed.h 124 /* REALLOC: assure at least a minimum size for buffer b */
125 #define REALLOC(b,n,i,err) \
130 if ((ts = (char *) realloc((b), ti += max((i), MINBUFSZ))) == NULL) { \
  /src/sys/dev/stbi/
stb_image.c 448 #define REALLOC(ptr, size) realloc((ptr), (size), M_TEMP, M_WAITOK)
453 #define REALLOC(ptr, size) realloc((ptr), (size))
2180 // - all output is written to a single output buffer (can malloc/realloc)
2343 q = (char *) REALLOC(z->zout_start, limit);
3046 p = (uint8 *) REALLOC(z->idata, idata_limit); if (p == NULL) return e("outofmem", "Out of memory");

Completed in 16 milliseconds