Home
last modified time | relevance | path

Searched refs:allocated_size (Results 1 – 10 of 10) sorted by relevance

/openbsd/src/gnu/llvm/compiler-rt/lib/interception/
Dinterception_win.cpp308 uptr allocated_size; member
371 current->allocated_size = 0; in AllocateMemoryForTrampoline()
375 } else if (current->max_size - current->allocated_size > size) { in AllocateMemoryForTrampoline()
378 uptr next_address = current->content + current->allocated_size; in AllocateMemoryForTrampoline()
394 uptr allocated_space = region->content + region->allocated_size; in AllocateMemoryForTrampoline()
395 region->allocated_size += size; in AllocateMemoryForTrampoline()
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_malloc_mac.inc60 uptr allocated_size = RoundUpTo(sizeof(sanitizer_zone), page_size);
61 COMMON_MALLOC_MEMALIGN(page_size, allocated_size);
68 mprotect(new_zone, allocated_size, PROT_READ);
78 uptr allocated_size = RoundUpTo(sizeof(sanitizer_zone), page_size);
79 mprotect(zone, allocated_size, PROT_READ | PROT_WRITE);
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/
Dasan_allocator.cpp350 uptr allocated_size = allocator.GetActuallyAllocatedSize((void *)chunk); in RePoisonChunk() local
355 uptr chunk_end = chunk + allocated_size; in RePoisonChunk()
369 PoisonShadow(chunk, allocated_size, kAsanHeapLeftRedzoneMagic); in RePoisonChunk()
544 uptr allocated_size = allocator.GetActuallyAllocatedSize(allocated); in Allocate() local
545 PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic); in Allocate()
1177 uptr allocated_size = instance.AllocationSize(ptr); in __sanitizer_get_allocated_size() local
1179 if (allocated_size == 0) { in __sanitizer_get_allocated_size()
1183 return allocated_size; in __sanitizer_get_allocated_size()
/openbsd/src/gnu/llvm/clang/lib/Sema/
DParsedAttr.cpp39 size_t ParsedAttr::allocated_size() const { in allocated_size() function in ParsedAttr
80 size_t size = Attr->allocated_size(); in deallocate()
/openbsd/src/sys/dev/pci/drm/amd/display/dc/inc/
Dcompressor.h108 uint32_t allocated_size; member
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Dmmo.c274 bfd_size_type allocated_size; member
1417 bfd_size_type allocated_size; in mmo_get_loc() local
1430 && datap->where + datap->allocated_size >= vma + size in mmo_get_loc()
1463 allocated_size in mmo_get_loc()
1466 bfd_zalloc (sec->owner, sizeof (mmo_data_list_type) + allocated_size); in mmo_get_loc()
1471 entry->allocated_size = allocated_size; in mmo_get_loc()
/openbsd/src/gnu/usr.bin/binutils/bfd/
Dmmo.c274 bfd_size_type allocated_size; member
1521 bfd_size_type allocated_size; local
1534 && datap->where + datap->allocated_size >= vma + size
1567 allocated_size
1570 bfd_zalloc (sec->owner, sizeof (mmo_data_list_type) + allocated_size);
1575 entry->allocated_size = allocated_size;
/openbsd/src/sys/dev/pci/drm/amd/display/dc/dce110/
Ddce110_compressor.c458 compressor->base.allocated_size = 0; in dce110_compressor_construct()
/openbsd/src/sys/dev/pci/drm/amd/display/dc/dce112/
Ddce112_compressor.c811 compressor->base.allocated_size = 0; in dce112_compressor_construct()
/openbsd/src/gnu/llvm/clang/include/clang/Sema/
DParsedAttr.h446 size_t allocated_size() const;