Home
last modified time | relevance | path

Searched refs:kCacheLineSize (Results 1 – 22 of 22) sorted by relevance

/external/llvm-project/compiler-rt/lib/xray/
Dxray_allocator.h168 static constexpr auto Size = nearest_boundary(N, kCacheLineSize);
195 reinterpret_cast<uintptr_t>(AlignedNextBlock), kCacheLineSize); in Alloc()
208 DCHECK_EQ(reinterpret_cast<uintptr_t>(AlignedNextBlock) % kCacheLineSize, in Alloc()
226 : MaxMemory(RoundUpTo(M, kCacheLineSize)), in Allocator()
Dxray_buffer_queue.h45 char Buffer[kCacheLineSize];
Dxray_buffer_queue.cpp62 unsigned char Storage[kCacheLineSize];
Dxray_segmented_array.h65 SegmentControlBlockSize + next_pow2(sizeof(T)), kCacheLineSize);
/external/llvm-project/compiler-rt/lib/xray/tests/unit/
Dallocator_test.cpp52 GetPageSizeCached() / RoundUpTo(sizeof(OddSizedData), kCacheLineSize); in TEST()
71 GetPageSizeCached() / RoundUpTo(sizeof(OddSizedData), kCacheLineSize); in TEST()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_quarantine.h77 char pad0_[kCacheLineSize];
81 char pad1_[kCacheLineSize];
85 char pad2_[kCacheLineSize];
Dsanitizer_common.h40 const uptr kCacheLineSize = 128; variable
42 const uptr kCacheLineSize = 64; variable
Dsanitizer_allocator.h520 COMPILER_CHECK(sizeof(RegionInfo) >= kCacheLineSize);
864 char padding[kCacheLineSize - sizeof(uptr) - sizeof(IntrusiveList<Batch>)];
866 COMPILER_CHECK(sizeof(SizeClassInfo) == kCacheLineSize);
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_quarantine.h142 char pad0_[kCacheLineSize];
146 char pad1_[kCacheLineSize];
150 char pad2_[kCacheLineSize];
Dsanitizer_allocator_primary64.h90 DCHECK_EQ(SpaceEnd() % kCacheLineSize, 0); in Init()
614 COMPILER_CHECK(sizeof(RegionInfo) % kCacheLineSize == 0);
Dsanitizer_allocator_primary32.h284 COMPILER_CHECK(sizeof(SizeClassInfo) % kCacheLineSize == 0);
Dsanitizer_common.h41 const uptr kCacheLineSize = SANITIZER_CACHE_LINE_SIZE; variable
/external/compiler-rt/lib/tsan/tests/unit/
Dtsan_mutex_test.cc61 char pad_[kCacheLineSize];
/external/llvm-project/compiler-rt/lib/tsan/tests/unit/
Dtsan_mutex_test.cpp60 char pad_[kCacheLineSize];
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_mutex_test.cpp65 char pad_[kCacheLineSize];
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_mutex_test.cc66 char pad_[kCacheLineSize];
/external/tensorflow/tensorflow/lite/kernels/
Dcpu_backend_gemm_custom_gemv.h339 static constexpr int kCacheLineSize = 64;
341 k += kCacheLineSize / sizeof(RhsScalar)) {
651 static constexpr int kCacheLineSize = 64;
653 k += kCacheLineSize / sizeof(float)) {
/external/stressapptest/src/
Dsattypes.h243 static const int kCacheLineSize = 64; variable
Dsat.cc673 channel_hash_ = kCacheLineSize; in Sat()
1418 if (line_size < kCacheLineSize) in InitializeThreads()
1419 line_size = kCacheLineSize; in InitializeThreads()
Dworker.cc1093 int length = size_in_bytes / kCacheLineSize; in AdlerAddrMemcpyWarm()
1094 int mem_increment = kCacheLineSize / sizeof(*dstmem64); in AdlerAddrMemcpyWarm()
/external/libgav1/libgav1/src/utils/
Dconstants.h178 kCacheLineSize = 64, enumerator
/external/gemmlowp/standalone/
Dneon-gemm-kernel-benchmark.cc94 const int kCacheLineSize = 64; variable
5656 int res = posix_memalign(reinterpret_cast<void**>(&data_), kCacheLineSize, in CacheLineAlignedBuffer()
5812 cache_size_bytes - 2 * kCacheLineSize; in BenchmarkDepthToFitInCache()
5841 return RoundDown<kCacheLineSize>(clamped_unrounded_depth); in BenchmarkDepthToFitInCache()