HomeSort by: relevance | last modified time | path
    Searched refs:full_granule_size (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_allocator.cpp 182 uptr full_granule_size = RoundDownTo(tag_size, kShadowAlignment); local
184 (void *)TagMemoryAligned((uptr)user_ptr, full_granule_size, tag);
185 if (full_granule_size != tag_size) {
187 reinterpret_cast<u8 *>(allocated) + full_granule_size;
hwasan.cpp 262 uptr full_granule_size = RoundDownTo(global.size(), 16); local
263 TagMemoryAligned(global.addr(), full_granule_size, global.tag());
265 TagMemoryAligned(global.addr() + full_granule_size, 16, global.size() % 16);
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_allocator.cpp 242 uptr full_granule_size = RoundDownTo(tag_size, kShadowAlignment); local
243 user_ptr = (void *)TagMemoryAligned((uptr)user_ptr, full_granule_size, tag);
244 if (full_granule_size != tag_size) {
245 u8 *short_granule = reinterpret_cast<u8 *>(allocated) + full_granule_size;
hwasan.cpp 287 uptr full_granule_size = RoundDownTo(global.size(), 16); local
288 TagMemoryAligned(global.addr(), full_granule_size, global.tag());
290 TagMemoryAligned(global.addr() + full_granule_size, 16, global.size() % 16);

Completed in 14 milliseconds