Lines Matching refs:PREFETCH_SIZE
138 #ifndef PREFETCH_SIZE
139 # define PREFETCH_SIZE 64 macro
144 #if PREFETCH_SIZE == 64
145 # if PREFETCHED_LOAD_SIZE == PREFETCH_SIZE
148 # elif PREFETCHED_LOAD_SIZE == 2 * PREFETCH_SIZE
151 PREFETCH ((offset + dir * PREFETCH_SIZE)base)
152 # elif PREFETCHED_LOAD_SIZE == 4 * PREFETCH_SIZE
155 PREFETCH ((offset + dir * PREFETCH_SIZE)base); \
156 PREFETCH ((offset + dir * PREFETCH_SIZE * 2)base); \
157 PREFETCH ((offset + dir * PREFETCH_SIZE * 3)base)
162 # error Unsupported PREFETCH_SIZE!