/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_posix.cc | 51 size = RoundUpTo(size, GetPageSizeCached()); 86 RoundUpTo(size, PageSize), 101 RoundUpTo(size, PageSize), 129 *buff_size = RoundUpTo(fsize, GetPageSizeCached());
|
sanitizer_allocator.cc | 115 size = RoundUpTo(size, 8);
|
sanitizer_libc.cc | 212 uptr *aligned_beg = (uptr *)RoundUpTo((uptr)beg, sizeof(uptr));
|
sanitizer_allocator.h | 485 return RoundUpTo(sizeof(RegionInfo) * kNumClassesRounded, 627 size = RoundUpTo(size, GetPageSizeCached()); [all...] |
sanitizer_common.h | 218 INLINE uptr RoundUpTo(uptr size, uptr boundary) {
|
sanitizer_linux.cc | 673 seg_end = RoundUpTo(seg_end, GetPageSizeCached());
|
/external/giflib/ |
gifalloc.c | 117 int i, j, CrntSlot, RoundUpTo, NewGifBitSize; 175 RoundUpTo = (1 << NewGifBitSize); 177 if (RoundUpTo != ColorUnion->ColorCount) { 185 for (j = CrntSlot; j < RoundUpTo; j++) 189 if (RoundUpTo < ColorUnion->ColorCount) 191 sizeof(GifColorType) * RoundUpTo); 194 ColorUnion->ColorCount = RoundUpTo;
|
/external/compiler-rt/lib/asan/ |
asan_thread.cc | 77 uptr size = RoundUpTo(sizeof(AsanThread), PageSize); 106 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
|
asan_allocator2.cc | 48 uptr shadow_beg = RoundUpTo(MemToShadow(p), page_size); 213 uptr available = RoundUpTo(user_requested_size, SHADOW_GRANULARITY); 277 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY), 333 uptr rounded_size = RoundUpTo(Max(size, kChunkHeader2Size), alignment); 366 user_beg = RoundUpTo(user_beg, alignment); 476 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY), 664 size = RoundUpTo(size, PageSize);
|
asan_fake_stack.cc | 97 return RoundUpTo(Min(ClassSize(size_class) * kMaxRecursionDepth, stack_size_),
|
asan_globals.cc | 53 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY);
|
asan_poisoning.cc | 150 uptr aligned_b = RoundUpTo(beg, SHADOW_GRANULARITY);
|
asan_malloc_mac.cc | 47 uptr allocated_size = RoundUpTo(sizeof(asan_zone), page_size);
|
asan_interceptors.cc | 195 ssize = RoundUpTo(ssize, PageSize);
|
/external/compiler-rt/lib/lsan/ |
lsan_interceptors.cc | 130 size = RoundUpTo(size, PageSize);
|
/external/compiler-rt/lib/msan/ |
msan_interceptors.cc | 809 __msan_unpoison(res, RoundUpTo(length, GetPageSize())); 818 __msan_unpoison(res, RoundUpTo(length, GetPageSize())); [all...] |