Searched refs:sbrk (Results 26 - 50 of 64) sorted by relevance

123

/freebsd-11-stable/contrib/tcsh/
H A Dsh.types.h125 extern char *sbrk();
H A Dtc.os.h484 extern caddr_t sbrk (int);
601 extern char *sbrk (ssize_t);
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dgmon-sol2.c141 buffer = (char *) sbrk( monsize );
146 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION );
158 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
165 /* minbrk = (char *) sbrk(0);*/
/freebsd-11-stable/sys/kern/
H A Dcapabilities.conf536 sbrk
/freebsd-11-stable/sys/compat/freebsd32/
H A Dcapabilities.conf214 sbrk
/freebsd-11-stable/contrib/gdb/gdb/
H A Devent-top.c497 char *lim = (char *) sbrk (0);
541 char *lim = (char *) sbrk (0);
579 char *lim = (char *) sbrk (0);
H A Dmain.c170 lim_at_start = (char *) sbrk (0);
765 char *lim = (char *) sbrk (0);
H A Dstandalone.c439 sbrk (int amount)
584 /* That is where free storage starts for sbrk to give out. */
433 sbrk (int amount) function
H A Dtop.c820 char *lim = (char *) sbrk (0);
841 char *lim = (char *) sbrk (0);
/freebsd-11-stable/contrib/jemalloc/src/
H A Dchunk_dss.c17 * Protects sbrk() calls. This avoids malloc races among threads, though it
18 * does not protect against races with threads that call sbrk() directly.
36 return (sbrk(increment));
77 * sbrk() uses a signed increment argument, so take care not to
/freebsd-11-stable/release/picobsd/tinyware/msh/
H A Dsh1.c807 * It is assumed that sbrk() and brk() manipulate the high end.
816 while ((int)sbrk(0) & ALIGN)
817 sbrk(1);
818 areabot = (struct region *)sbrk(REGSIZE);
857 p = (struct region *)sbrk(i * REGSIZE);
/freebsd-11-stable/stand/libsa/
H A Dzalloc_malloc.c34 * MALLOC.C - malloc equivalent, runs on top of zalloc and uses sbrk
68 if ((base = sbrk(incr)) == (char *)-1)
H A DMakefile18 random.c sbrk.c twiddle.c zalloc.c zalloc_malloc.c
H A Dstand.h263 /* sbrk emulation */
265 extern char *sbrk(int incr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProcess.inc103 static char *StartOfMemory = reinterpret_cast<char*>(::sbrk(0));
104 char *EndOfMemory = (char*)sbrk(0);
/freebsd-11-stable/sys/sys/
H A Dsyscall.mk60 sbrk.o \
/freebsd-11-stable/stand/uboot/common/
H A Dmain.c548 printf("heap base at %p, top at %p, used %td\n", end, sbrk(0),
549 sbrk(0) - end);
/freebsd-11-stable/contrib/amd/amd/
H A Dnfs_start.c67 caddr_t next_mem = sbrk(0);
/freebsd-11-stable/stand/pc98/loader/
H A Dmain.c301 sbrk(0), heap_top);
/freebsd-11-stable/stand/i386/loader/
H A Dmain.c378 sbrk(0), heap_top);
/freebsd-11-stable/contrib/binutils/gas/
H A Das.c54 extern PTR sbrk ();
908 char *lim = (char *) sbrk (0);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_mlock.c170 /* There is no sbrk on AArch64 and RISC-V */
176 invalid_ptr = (void*)(((uintptr_t)sbrk(0)+page) & ~(page-1));
/freebsd-11-stable/include/
H A Dunistd.h475 void *sbrk(intptr_t);
/freebsd-11-stable/contrib/binutils/ld/
H A Dldmain.c53 extern void *sbrk ();
548 char *lim = sbrk (0);
/freebsd-11-stable/lib/libc/sys/
H A DMakefile.inc336 MLINKS+=brk.2 sbrk.2

Completed in 301 milliseconds

123