Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_powerpc64.cc32 const size_t LineSize = 32; in clearCache() local
34 const intptr_t Mask = ~(LineSize - 1); in clearCache()
36 const intptr_t EndLine = ((intptr_t)Addr + Len + LineSize - 1) & Mask; in clearCache()
38 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
42 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
/freebsd-12.1/contrib/compiler-rt/lib/esan/
H A Dworking_set.cpp86 uptr LineSize = getFlags()->cache_line_size; in processRangeAccessWorkingSet() local
89 SIZE_T NumLines = Size / LineSize + in processRangeAccessWorkingSet()
91 (LineSize - 1 + Addr % LineSize + Size % LineSize) / LineSize; in processRangeAccessWorkingSet()
/freebsd-12.1/contrib/llvm/lib/Support/Unix/
H A DMemory.inc222 const size_t LineSize = 32;
224 const intptr_t Mask = ~(LineSize - 1);
226 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
228 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
232 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dactbl2.h1364 UINT32 LineSize; member
1892 UINT16 LineSize; member
/freebsd-12.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo2.c989 {ACPI_DMT_UINT32, ACPI_NFIT2_OFFSET (LineSize), "Line Size", 0},
1384 {ACPI_DMT_UINT16, ACPI_PPTT1_OFFSET (LineSize), "Line Size", 0},
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/InstPrinter/
H A DAMDGPUInstPrinter.cpp1274 int LineSize = (KCacheMode == 1) ? 16 : 32; in printKCache() local
1275 O << KCacheAddr * 16 << '-' << KCacheAddr * 16 + LineSize; in printKCache()
/freebsd-12.1/sys/contrib/edk2/Include/IndustryStandard/
H A DAcpi60.h1461 UINT32 LineSize; member
/freebsd-12.1/usr.sbin/acpi/acpidump/
H A Dacpi.c1383 printf("\tLineSize=%u\n", (u_int)ileave->LineSize); in acpi_print_nfit()