Lines Matching refs:parse
1256 struct tgsi_parse_context parse;
1281 tgsi_parse_init( &parse, tokens );
1283 while (!tgsi_parse_end_of_tokens(&parse) && ok) {
1284 tgsi_parse_token(&parse);
1286 switch (parse.FullToken.Token.Type) {
1288 if (parse.FullHeader.Processor.Processor == TGSI_PROCESSOR_FRAGMENT) {
1289 emit_declaration(func, &parse.FullToken.FullDeclaration );
1297 tgsi_dump_instruction(&parse.FullToken.FullInstruction, ic);
1300 ok = emit_instruction(&gen, &parse.FullToken.FullInstruction);
1303 uint opcode = parse.FullToken.FullInstruction.Instruction.Opcode;
1307 parse.FullHeader.Processor.Processor == TGSI_PROCESSOR_VERTEX ?
1315 const uint size = parse.FullToken.FullImmediate.Immediate.NrTokens - 1;
1321 parse.FullToken.FullImmediate.u[i].Float;
1338 tgsi_parse_free( &parse );