HomeSort by relevance Sort by last modified time
    Searched full:sbrk (Results 1 - 25 of 482) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
brk2.c 14 ptr = sbrk(1);
17 printf ("sbrk() failed!\n");
origin1-yes.c 90 // - On Darwin, sbrk() is implemented via vm_allocate() which always zeroes
101 // fprintf(stderr, "\n(no complaint; sbrk initialises memory on Darwin)\n");
105 // int* ptr_to_new_brk_limit = sbrk(4096);
  /bionic/libc/unistd/
brk.c 32 /* shared with sbrk.c */
sbrk.c 37 void *sbrk(ptrdiff_t increment) function
  /external/valgrind/main/memcheck/tests/linux/
brk.c 12 void* orig_ds = sbrk(0);
  /bionic/libc/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
unistd.h 162 extern void *sbrk(ptrdiff_t);
  /development/ndk/platforms/android-3/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /external/e2fsprogs/e2fsck/
scantest.c 59 track->brk_start = sbrk(0);
82 (int) (((char *) sbrk(0)) - ((char *) track->brk_start)),
  /external/webkit/Source/JavaScriptCore/wtf/
TCSystemAlloc.cpp 80 // For 2.2 kernels, it looks like the sbrk address space (500MBish) and
87 #if HAVE(SBRK)
117 #if HAVE(SBRK)
127 void* result = sbrk(size);
139 void* r2 = sbrk(extra);
147 result = sbrk(size + alignment - 1);
159 #endif /* HAVE(SBRK) */
361 #if HAVE(SBRK)
TCSystemAlloc.h 33 // Routine that uses sbrk/mmap to allocate memory from the system.
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
malloc.h 83 via sbrk and mmap), the maximum amount (which may be more than
94 (normally sbrk) outside of malloc.
  /external/valgrind/main/tests/
filter_libc 43 s/\((exit|_exit|brk|sbrk).c:[0-9]*\)/(in \/...libc...)/;
  /external/quake/quake/src/WinQuake/
sys_dos.cpp 251 working_memory = sbrk(working_size);
254 extra = 0xfffc - ((unsigned)sbrk(0) & 0xffff);
258 sbrk(extra);
273 sbrk(-0x1000);
300 // we won't lock, just sbrk the memory
338 sbrk(info.address-(int)sbrk(0)); // negative adjustment
371 // by cheating and passing a negative value to sbrk
373 sbrk( -(LOCKED_FOR_MALLOC));
819 end_of_memory = (int)sbrk(0);
    [all...]
  /external/llvm/lib/Support/Unix/
Process.inc 74 static char *StartOfMemory = reinterpret_cast<char*>(::sbrk(0));
75 char *EndOfMemory = (char*)sbrk(0);
  /dalvik/vm/alloc/
HeapSource.h 139 * from the system using sbrk/mmap, etc.
  /development/ndk/platforms/android-3/arch-arm/symbols/
libc.so.functions.txt 737 sbrk

Completed in 2258 milliseconds

1 2 3 4 5 6 7 8 91011>>