Lines Matching defs:index
210 operand->index[0].index_rep = DECODE_D3D10_SB_OPERAND_INDEX_REPRESENTATION(0, **curr);
212 operand->index[1].index_rep = DECODE_D3D10_SB_OPERAND_INDEX_REPRESENTATION(1, **curr);
237 operand->index[0].imm = **curr;
241 operand->index[0].imm = **curr;
243 operand->index[1].imm = **curr;
251 struct Shader_index *index)
253 switch (index->index_rep) {
255 index->imm = *(*curr)++;
258 index->imm = 0;
259 parse_relative_operand(curr, &index->rel);
262 index->imm = *(*curr)++;
263 parse_relative_operand(curr, &index->rel);
266 /* XXX: Support other index representations.
277 parse_index(curr, &operand->index[0]);
279 parse_index(curr, &operand->index[1]);
582 opcode->specific.dcl_indexable_temp.index = *curr++;