Home
last modified time | relevance | path

Searched refs:LineSize (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_powerpc64.cpp31 const size_t LineSize = 32; in clearCache() local
33 const intptr_t Mask = ~(LineSize - 1); in clearCache()
35 const intptr_t EndLine = ((intptr_t)Addr + Len + LineSize - 1) & Mask; in clearCache()
37 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
41 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dmemtag.h169 uptr LineSize, Next, Tmp; in storeTags() local
224 : [Cur] "+&r"(Begin), [LineSize] "=&r"(LineSize), [Next] "=&r"(Next), in storeTags()
/openbsd-src/gnu/llvm/llvm/lib/Support/Unix/
H A DMemory.inc227 const size_t LineSize = 32;
229 const intptr_t Mask = ~(LineSize - 1);
231 const intptr_t EndLine = ((intptr_t)Addr + Len + LineSize - 1) & Mask;
233 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
237 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DR600InstPrinter.cpp84 int LineSize = (KCacheMode == 1) ? 16 : 32; in printKCache() local
85 O << KCacheAddr * 16 << '-' << KCacheAddr * 16 + LineSize; in printKCache()