Lines Matching full:uptr
22 uptr requested_size;
25 static const uptr kAllocatorSpace = 0x600000000000ULL;
26 static const uptr kAllocatorSize = 0x80000000000; // 8T.
27 static const uptr kMetadataSize = sizeof(Metadata);
48 static void *MsanAllocate(StackTrace *stack, uptr size,
49 uptr alignment, bool zeroise) {
73 uptr size = meta->requested_size;
83 void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size,
84 uptr alignment, bool zeroise) {
92 uptr old_size = meta->requested_size;
93 uptr actually_allocated_size = allocator.GetActuallyAllocatedSize(old_p);
101 uptr memcpy_size = Min(new_size, old_size);
110 static uptr AllocationSize(const void *p) {
124 uptr __msan_get_current_allocated_bytes() {
132 uptr __msan_get_heap_size() {
140 uptr __msan_get_free_bytes() {
144 uptr __msan_get_unmapped_bytes() {
148 uptr __msan_get_estimated_allocated_size(uptr size) {
156 uptr __msan_get_allocated_size(const void *p) {