HomeSort by: relevance | last modified time | path
    Searched defs:heap_size (Results 1 - 9 of 9) sorted by relevancy

  /src/lib/libc/include/isc/
heap.h 27 int heap_size; member in struct:heap_context
  /src/external/bsd/libbind/dist/include/isc/
heap.h 27 int heap_size; member in struct:heap_context
  /src/sys/stand/efiboot/
efiboot.c 59 static UINTN heap_size = 8 * 1024 * 1024; variable
68 u_int sz = EFI_SIZE_TO_PAGES(heap_size);
81 setheap((void *)(uintptr_t)heap_start, (void *)(uintptr_t)(heap_start + heap_size));
  /src/sys/arch/i386/stand/efiboot/
efiboot.c 47 static UINTN heap_size = 1 * 1024 * 1024; /* 1MB */ variable
153 u_int sz = EFI_SIZE_TO_PAGES(heap_size);
161 (void *)(UINTN)(heap_start + heap_size));
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interface_java.cc 31 const uptr heap_size; member in struct:__tsan::JavaContext
33 JavaContext(jptr heap_begin, jptr heap_size)
35 , heap_size(heap_size) {
69 void __tsan_java_init(jptr heap_begin, jptr heap_size) {
71 DPrintf("#%d: java_init(%p, %p)\n", thr->tid, heap_begin, heap_size);
74 CHECK_GT(heap_size, 0);
76 CHECK_EQ(heap_size % kHeapAlignment, 0);
77 CHECK_LT(heap_begin, heap_begin + heap_size);
78 jctx = new(jctx_buf) JavaContext(heap_begin, heap_size);
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_interface_java.cpp 29 const uptr heap_size; member in struct:__tsan::JavaContext
31 JavaContext(jptr heap_begin, jptr heap_size)
33 , heap_size(heap_size) {
42 addr >= jctx->heap_begin + jctx->heap_size)
63 void __tsan_java_init(jptr heap_begin, jptr heap_size) {
66 DPrintf("#%d: java_init(0x%zx, 0x%zx)\n", thr->tid, heap_begin, heap_size);
69 DCHECK_GT(heap_size, 0);
71 DCHECK_EQ(heap_size % kHeapAlignment, 0);
72 DCHECK_LT(heap_begin, heap_begin + heap_size);
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_interface_java.cpp 29 const uptr heap_size; member in struct:__tsan::JavaContext
31 JavaContext(jptr heap_begin, jptr heap_size)
33 , heap_size(heap_size) {
42 addr >= jctx->heap_begin + jctx->heap_size)
63 void __tsan_java_init(jptr heap_begin, jptr heap_size) {
66 DPrintf("#%d: java_init(0x%zx, 0x%zx)\n", thr->tid, heap_begin, heap_size);
69 DCHECK_GT(heap_size, 0);
71 DCHECK_EQ(heap_size % kHeapAlignment, 0);
72 DCHECK_LT(heap_begin, heap_begin + heap_size);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/gcn/
gcn-run.cc 688 size_t heap_size = 10 * 1024 * 1024; /* 10MB. */ local
689 struct heap *heap = device_malloc (heap_size, heap_region);
714 hsa_fns.hsa_memory_copy_fn (&heap->size, &heap_size, sizeof (heap_size));
  /src/external/gpl3/gcc.old/dist/gcc/config/gcn/
gcn-run.cc 700 size_t heap_size = 10 * 1024 * 1024; /* 10MB. */ local
701 struct heap *heap = device_malloc (heap_size, heap_region);
725 hsa_fns.hsa_memory_copy_fn (&heap->size, &heap_size, sizeof (heap_size));

Completed in 21 milliseconds