Lines Matching refs:GETCORE
33 * GETCORE: a function to get more core memory.
34 * GETCORE(0) is assumed to return the next available
36 * ERRCORE: the error code as returned by GETCORE.
39 * with GETCORE. Default is (1024*ALIGN).
370 if (size > SIZE(tp) && BOTTOM(tp) && GETCORE(0) == Baddr) {
645 addr = GETCORE(0);
648 /* errno set by GETCORE sbrk */
671 /* check if nsize request could overflow in GETCORE */
682 * the value required is too big for GETCORE() to deal with
683 * in one go, so use GETCORE() at most 2 times instead.
684 * Argument to GETCORE() must be multiple of ALIGN.
685 * If not, GETCORE(-MAX_GETCORE) will not return brk point
691 if (GETCORE(delta) == ERRCORE) {
694 if (addr != GETCORE(0))
695 (void) GETCORE(-MAX_GETCORE);
701 } else if (GETCORE(requestsize) == ERRCORE) {