HomeSort by relevance Sort by last modified time
    Searched defs:CACHELINE_SIZE (Results 1 - 5 of 5) sorted by null

  /external/u-boot/drivers/usb/dwc3/
io.h 22 #define CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE
52 flush_dcache_range(addr, addr + ROUND(length, CACHELINE_SIZE));
  /external/mesa3d/src/intel/common/
gen_clflush.h 27 #define CACHELINE_SIZE 64
44 p += CACHELINE_SIZE;
  /external/linux-kselftest/tools/testing/selftests/powerpc/security/
rfi_flush.c 18 #define CACHELINE_SIZE 128
38 for (unsigned long j = 0; j < zero_size; j += CACHELINE_SIZE)
67 p = (char *)memalign(zero_size, CACHELINE_SIZE);
79 l1d_misses_expected = iterations * (zero_size / CACHELINE_SIZE - 2);
  /external/u-boot/drivers/usb/host/
xhci-mem.c 26 #define CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE
38 flush_dcache_range(addr & ~(CACHELINE_SIZE - 1),
39 ALIGN(addr + len, CACHELINE_SIZE));
53 invalidate_dcache_range(addr & ~(CACHELINE_SIZE - 1),
54 ALIGN(addr + len, CACHELINE_SIZE));
192 size_t cacheline_size = max(XHCI_ALIGNMENT, CACHELINE_SIZE); local
194 ptr = memalign(cacheline_size, ALIGN(size, cacheline_size));
  /external/dynamic_depth/internal/base/
port.h 403 #define CACHELINE_SIZE 64
405 #define CACHELINE_SIZE 128
409 #define CACHELINE_SIZE 64
416 #define CACHELINE_SIZE 32
418 #define CACHELINE_SIZE 64
422 #ifndef CACHELINE_SIZE // NOLINT
425 #define CACHELINE_SIZE 64
428 #define CACHELINE_ALIGNED __attribute__((aligned(CACHELINE_SIZE)))
729 #define CACHELINE_SIZE 64
    [all...]

Completed in 271 milliseconds