HomeSort by relevance Sort by last modified time
    Searched refs:RoundUpTo (Results 1 - 23 of 23) 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);
62 uptr size = RoundUpTo(sizeof(MsanThread), GetPageSizeCached());
msan_poisoning.cc 130 uptr page_beg = RoundUpTo(shadow_beg, PageSize);
msan_interceptors.cc 212 size = RoundUpTo(size, PageSize);
1023 __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 115 size = RoundUpTo(size, GetPageSizeCached());
153 RoundUpTo(size, PageSize),
171 RoundUpTo(size, PageSize),
187 RoundUpTo(size, PageSize),
261 *buff_size = RoundUpTo(fsize, GetPageSizeCached());
sanitizer_allocator.cc 115 size = RoundUpTo(size, 8);
sanitizer_libc.cc 245 uptr *aligned_beg = (uptr *)RoundUpTo((uptr)beg, sizeof(uptr));
sanitizer_allocator.h 469 return RoundUpTo(sizeof(RegionInfo) * kNumClassesRounded,
702 size = RoundUpTo(size, GetPageSizeCached());
    [all...]
sanitizer_coverage_libcdep.cc 329 n = RoundUpTo(n, 16); // The compiler must ensure that counters is 16-aligned.
913 RoundUpTo(coverage_data.size() * sizeof(coverage_data.data()[0]), 16));
sanitizer_common.h 382 INLINE uptr RoundUpTo(uptr size, uptr boundary) {
sanitizer_linux.cc 797 seg_end = RoundUpTo(seg_end, GetPageSizeCached());
  /external/compiler-rt/lib/asan/
asan_poisoning.h 55 uptr page_beg = RoundUpTo(shadow_beg, page_size);
asan_poisoning.cc 70 uptr shadow_beg = RoundUpTo(MemToShadow(p), page_size);
191 uptr aligned_b = RoundUpTo(beg, SHADOW_GRANULARITY);
349 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity);
351 // uptr d2 = RoundUpTo(old_mid, granularity);
367 uptr b2 = RoundUpTo(new_mid, granularity);
asan_thread.cc 87 uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
118 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
asan_allocator.cc 142 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
344 uptr rounded_size = RoundUpTo(Max(size, kChunkHeader2Size), alignment);
393 user_beg = RoundUpTo(user_beg, alignment);
492 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
742 size = RoundUpTo(size, PageSize);
asan_malloc_mac.cc 47 uptr allocated_size = RoundUpTo(sizeof(asan_zone), page_size);
asan_globals.cc 63 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY);
asan_interceptors.cc 302 ssize = RoundUpTo(ssize, PageSize);
  /external/compiler-rt/lib/tsan/rtl/
tsan_clock.cc 304 if (RoundUpTo(nclk, ClockBlock::kClockCount) <=
305 RoundUpTo(size_, ClockBlock::kClockCount)) {
338 for (uptr i = RoundUpTo(size_, ClockBlock::kClockCount);
tsan_sync.cc 78 uptr sz = RoundUpTo(b->siz, kMetaShadowCell);
tsan_rtl.cc 247 meta_end = RoundUpTo(meta_end, 64 << 10);
256 meta_end = RoundUpTo(meta_end, 64 << 10);
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 138 size = RoundUpTo(size, PageSize);

Completed in 399 milliseconds