Lines Matching refs:target
266 long entry, least_used, target;
270 target = least_used = entry = blk % n; /* simple modulo hash */
273 if (!dcache_valid[target] || dcache_blk[target] == blk)
274 return target; /* found target or empty cache slot */
275 if (dcache_lastused[target] < dcache_lastused[least_used])
276 least_used = target;
277 target = dcache_relocate(entry, try); /* next target */