Home | History | Annotate | Download | only in glsl

Lines Matching defs:loop

565  * IR instruction representing a high-level loop structure.
586 * Get an iterator for the instructions of the loop body
593 /** List of ir_instruction that make up the body of the loop. */
597 * \name Loop counter and controls
599 * Represents a loop like a FORTRAN \c do-loop.
602 * If \c from and \c to are the same value, the loop will execute once.
605 ir_rvalue *from; /** Value of the loop counter on the first
606 * iteration of the loop.
608 ir_rvalue *to; /** Value of the loop counter on the last
609 * iteration of the loop.
615 * Comparison operation in the loop terminator.
617 * If any of the loop control fields are non-\c NULL, this field must be
1063 * These include \c break and \c continue. The \c break within a loop is
1079 this->loop = loop;
1104 /** Loop containing this break instruction. */
1105 ir_loop *loop;