Lines Matching defs:size
60 * Allocate size more bytes of space and return the address of the
63 * The string spaces are of exponentially increasing size, to satisfy
64 * the occasional user with enormous string size requests.
68 salloc(unsigned size)
75 s = size;
116 * Reallocate size bytes of space and return the address of the
121 srealloc(void *optr, unsigned size)
130 s = size;
147 nptr = salloc(size);
149 memcpy(nptr, optr, size); /* XXX - copying too much */