HomeSort by relevance Sort by last modified time
    Searched refs:RoundUpTo (Results 1 - 21 of 21) sorted by null

  /external/compiler-rt/lib/dfsan/
dfsan_interceptors.cc 23 dfsan_set_label(0, res, RoundUpTo(length, GetPageSize()));
31 dfsan_set_label(0, res, RoundUpTo(length, GetPageSize()));
  /external/compiler-rt/lib/msan/
msan_thread.cc 13 uptr size = RoundUpTo(sizeof(MsanThread), PageSize);
61 uptr size = RoundUpTo(sizeof(MsanThread), GetPageSizeCached());
msan_interceptors.cc 190 size = RoundUpTo(size, PageSize);
866 __msan_unpoison(res, RoundUpTo(length, GetPageSize()));
883 __msan_unpoison(res, RoundUpTo(length, GetPageSize()));
    [all...]
  /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/sanitizer_common/
sanitizer_posix.cc 103 size = RoundUpTo(size, GetPageSizeCached());
141 RoundUpTo(size, PageSize),
159 RoundUpTo(size, PageSize),
175 RoundUpTo(size, PageSize),
204 *buff_size = RoundUpTo(fsize, GetPageSizeCached());
sanitizer_allocator.cc 116 size = RoundUpTo(size, 8);
sanitizer_libc.cc 238 uptr *aligned_beg = (uptr *)RoundUpTo((uptr)beg, sizeof(uptr));
sanitizer_allocator.h 494 return RoundUpTo(sizeof(RegionInfo) * kNumClassesRounded,
698 size = RoundUpTo(size, GetPageSizeCached());
    [all...]
sanitizer_common.h 306 INLINE uptr RoundUpTo(uptr size, uptr boundary) {
sanitizer_linux.cc 767 seg_end = RoundUpTo(seg_end, GetPageSizeCached());
  /external/llvm/lib/Transforms/Utils/
ASanStackFrameLayout.cpp 36 static size_t RoundUpTo(size_t X, size_t RoundTo) {
51 return RoundUpTo(Res, Alignment);
  /external/compiler-rt/lib/asan/
asan_poisoning.h 51 uptr page_beg = RoundUpTo(shadow_beg, PageSize);
asan_poisoning.cc 59 uptr shadow_beg = RoundUpTo(MemToShadow(p), page_size);
159 uptr aligned_b = RoundUpTo(beg, SHADOW_GRANULARITY);
287 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity);
289 // uptr d2 = RoundUpTo(old_mid, granularity);
305 uptr b2 = RoundUpTo(new_mid, granularity);
asan_thread.cc 81 uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
109 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
asan_allocator2.cc 185 uptr available = RoundUpTo(user_requested_size, SHADOW_GRANULARITY);
243 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
303 uptr rounded_size = RoundUpTo(Max(size, kChunkHeader2Size), alignment);
346 user_beg = RoundUpTo(user_beg, alignment);
446 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
632 size = RoundUpTo(size, PageSize);
asan_globals.cc 62 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY);
asan_malloc_mac.cc 47 uptr allocated_size = RoundUpTo(sizeof(asan_zone), page_size);
asan_interceptors.cc 241 ssize = RoundUpTo(ssize, PageSize);
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 153 size = RoundUpTo(size, PageSize);
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc 73 uptr sz = RoundUpTo(b->siz, kMetaShadowCell);
tsan_rtl.cc 248 meta_end = RoundUpTo(meta_end, 64 << 10);
257 meta_end = RoundUpTo(meta_end, 64 << 10);

Completed in 356 milliseconds