Lines Matching defs:line
1012 unsigned bank, unsigned line, unsigned index_mode)
1023 if ((kcache[i].bank == bank && kcache[i].addr > line+1) ||
1025 /* try to insert new line */
1034 kcache[i].addr = line;
1039 d = line - kcache[i].addr;
1044 /* we are prepending the line to the current set,
1045 * discarding the existing second line,
1046 * so we'll have to insert line+2 after it */
1047 line += 2;
1064 kcache[i].addr = line;
1079 unsigned bank, line, sel = alu->src[i].sel, index_mode;
1086 line = (sel-512)>>4;
1089 if ((r = r600_bytecode_alloc_kcache_line(bc, kcache, bank, line, index_mode)))
1104 unsigned int line, sel = alu->src[i].sel, found = 0;
1110 line = sel>>4;
1116 R600_ERR("unexpected kcache line mode\n");
1120 kcache[j].addr <= line &&
1121 line < kcache[j].addr + kcache[j].mode) {