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

1 2

  /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 215 size = RoundUpTo(size, PageSize);
970 __msan_unpoison(res, RoundUpTo(length, GetPageSize()));
988 __msan_unpoison(res, RoundUpTo(length, GetPageSize()));
    [all...]
  /external/giflib/
gifalloc.c 118 int i, j, CrntSlot, RoundUpTo, NewGifBitSize;
176 RoundUpTo = (1 << NewGifBitSize);
178 if (RoundUpTo != ColorUnion->ColorCount) {
186 for (j = CrntSlot; j < RoundUpTo; j++)
190 if (RoundUpTo < ColorUnion->ColorCount) {
192 RoundUpTo, sizeof(GifColorType));
201 ColorUnion->ColorCount = RoundUpTo;
  /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_allocator.cc 142 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
344 uptr rounded_size = RoundUpTo(Max(size, kChunkHeader2Size), alignment);
393 user_beg = RoundUpTo(user_beg, alignment);
490 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
757 size = RoundUpTo(size, PageSize);
asan_thread.cc 87 uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
118 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
asan_malloc_linux.cc 39 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize;
asan_globals.cc 64 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix.cc 126 size = RoundUpTo(size, GetPageSizeCached());
171 RoundUpTo(size, PageSize),
185 RoundUpTo(size, PageSize),
256 *buff_size = RoundUpTo(fsize, GetPageSizeCached());
sanitizer_allocator.cc 168 size = RoundUpTo(size, 8);
sanitizer_allocator.h 484 return RoundUpTo(sizeof(RegionInfo) * kNumClassesRounded,
724 size = RoundUpTo(size, GetPageSizeCached());
    [all...]
sanitizer_libc.cc 271 uptr *aligned_beg = (uptr *)RoundUpTo((uptr)beg, sizeof(uptr));
sanitizer_posix_libcdep.cc 266 RoundUpTo(size, PageSize), PROT_READ | PROT_WRITE,
sanitizer_linux_libcdep.cc 183 g_tls_size = RoundUpTo(tls_size, tls_align);
sanitizer_coverage_libcdep.cc 354 n = RoundUpTo(n, 16); // The compiler must ensure that counters is 16-aligned.
    [all...]
sanitizer_win.cc 151 uptr aligned_addr = RoundUpTo(mapped_addr, alignment);
  /external/compiler-rt/lib/tsan/rtl/
tsan_clock.cc 302 if (RoundUpTo(nclk, ClockBlock::kClockCount) <=
303 RoundUpTo(size_, ClockBlock::kClockCount)) {
336 for (uptr i = RoundUpTo(size_, ClockBlock::kClockCount);
tsan_sync.cc 78 uptr sz = RoundUpTo(b->siz, kMetaShadowCell);
tsan_rtl.cc 253 meta_end = RoundUpTo(meta_end, 64 << 10);
262 meta_end = RoundUpTo(meta_end, 64 << 10);
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 331 uptr RoundedSize = RoundUpTo(Size, MinAlignment);
357 ChunkBeg = RoundUpTo(ChunkBeg, Alignment);
574 Size = RoundUpTo(Size, PageSize);
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 148 size = RoundUpTo(size, PageSize);
  /external/compiler-rt/lib/interception/
interception_win.cc 163 static uptr RoundUpTo(uptr size, uptr boundary) {
312 void *page = ::VirtualAlloc((void*)RoundUpTo(address, granularity),

Completed in 398 milliseconds

1 2