Lines Matching defs:address
31 * compliance with Common Criteria object reuse and process address
76 extern int _end; /* first address after the end of initialized data */
238 void *address;
244 * Get an address in the data area, near to the "hole".
245 * sbrk returns prior address value; rather than calculating
246 * the sbrk result, sbrk is called twice, so address points
250 address = sbrk(0);
255 p = ((int *)P2ROUNDUP((uintptr_t)address, PAGESIZE)) - 2;
264 * Get an address near the text area boundary, but in the data
395 caddr_t address;
406 /* Save Size of data area and 1st block address of "hole" */
411 "Parent address of hole before child change: %08X\n"),
426 address = sbrk(0);
430 address);
432 if (brk((address+PAGESIZE)) != 0) {
434 "Can't change start of hole address.\n"));
438 address = sbrk(0);
442 address);
469 "Parent address of hole after child change: "
647 "probe_stack failed. address=0x%08X; "
663 void *address;
665 address = sbrk(0); /* current end data + 1 */
667 if (address == (void *)-1) {
675 probe_adr = (unsigned char *)address - sizeof (char);
685 address = (void *)P2ROUNDUP((uintptr_t)address, PAGESIZE);
686 probe_adr = (unsigned char *)address;