Home | History | Annotate | Download | only in svga

Lines Matching refs:temp_map

128    } temp_map[VGPU10_MAX_TEMPS]; /**< arrayId, element */
712 return emit->temp_map[index].arrayId;
729 return emit->temp_map[index].index;
2249 /* Fill in the temp_map entries for this array */
2251 emit->temp_map[i].arrayId = arrayID;
2252 emit->temp_map[i].index = i - decl->Range.First;
2649 /* Fill in the temp_map entries for this temp array */
2651 emit->temp_map[i].arrayId = arrayID;
2652 emit->temp_map[i].index = i;
2729 /* Initialize the temp_map array which maps TGSI temp indexes to VGPU10
2740 * temp_map[0] = { array 0, index 0 }
2741 * temp_map[1] = { array 0, index 1 }
2742 * temp_map[2] = { array 1, index 0 }
2743 * temp_map[3] = { array 1, index 1 }
2744 * temp_map[4] = { array 1, index 2 }
2745 * temp_map[5] = { array 2, index 0 }
2746 * temp_map[6] = { array 2, index 1 }
2747 * temp_map[7] = { array 2, index 2 }
2748 * temp_map[8] = { array 0, index 2 }
2749 * temp_map[9] = { array 0, index 3 }
2755 * temp_map[] table to convert the TGSI index to the VGPU10 index.
2761 if (emit->temp_map[i].arrayId == 0) {
2762 emit->temp_map[i].index = reg++;
2770 i, emit->temp_map[i].arrayId, emit->temp_map[i].index);