Lines Matching full:uptr
23 extern "C" void *__libc_malloc(uptr size);
33 static void *RawInternalAlloc(uptr size, InternalAllocatorCache *cache) {
70 static void *RawInternalAlloc(uptr size, InternalAllocatorCache *cache) {
91 void *InternalAlloc(uptr size, InternalAllocatorCache *cache) {
113 void *LowLevelAllocator::Allocate(uptr size) {
117 uptr size_to_allocate = Max(size, GetPageSizeCached());
122 low_level_alloc_callback((uptr)allocated_current_,
136 bool CallocShouldReturnNullDueToOverflow(uptr size, uptr n) {
138 uptr max = (uptr)-1L;