Home | History | Annotate | Download | only in program

Lines Matching defs:pc

643    GLuint pc, numExec = 0;
658 for (pc = 0; pc < numInst; pc++) {
659 const struct prog_instruction *inst = program->Instructions + pc;
722 /* subtract 1 here since pc is incremented by for(pc) loop */
725 pc = inst->BranchTarget - 1; /* go to matching BNGLOOP */
734 /* Subtract 1 here since we'll do pc++ below */
735 pc = inst->BranchTarget - 1;
743 /* pc++ at end of for-loop will put us after the ENDLOOP inst */
744 pc = inst->BranchTarget;
752 /* Subtract 1 here since we'll do pc++ at end of for-loop */
753 pc = inst->BranchTarget - 1;
762 machine->CallStack[machine->StackDepth++] = pc + 1; /* next inst */
763 /* Subtract 1 here since we'll do pc++ at end of for-loop */
764 pc = inst->BranchTarget - 1;
974 pc = inst->BranchTarget;
983 pc = inst->BranchTarget;
1427 /* subtract one because of pc++ in the for loop */
1428 pc = machine->CallStack[--machine->StackDepth] - 1;
1900 } /* for pc */