Lines Matching refs:ADDRESS
28 The author may be reached (Email) at the address mike@ai.mit.edu,
176 /* Address to block number and vice versa. */
178 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase))
200 __ptr_t aligned; /* The address that memaligned returned. */
201 __ptr_t exact; /* The address that malloc returned. */
216 /* Given an address in the middle of a malloc'd object,
217 return the address of the beginning of the object. */
288 /* Allocate SIZE bytes, and store the address in *HANDLEPTR. */
321 The author may be reached (Email) at the address mike@ai.mit.edu,
368 The author may be reached (Email) at the address mike@ai.mit.edu,
520 valid address you can realloc and free (though not dereference).
629 (*__morecore) (0) == ADDRESS (block + lastblocks) &&
654 result = ADDRESS (block);
744 The author may be reached (Email) at the address mike@ai.mit.edu,
829 && (*__morecore) (0) == ADDRESS (block + blocks))
854 /* Get the address of the first free fragment in this block. */
855 prev = (struct list *) ((char *) ADDRESS (block) +
877 free (ADDRESS (block));
997 The author may be reached (Email) at the address mike@ai.mit.edu,
1137 _free_internal (ADDRESS (block + blocks));
1214 The author may be reached (Email) at the address mike@ai.mit.edu,