HomeSort by: relevance | last modified time | path
    Searched defs:conditional (Results 1 - 10 of 10) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_clear.h 49 bool conditional; member in struct:zink_framebuffer_clear_data
115 return clear->has_scissor || clear->conditional;
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_clip_unfilled.c 95 GLuint conditional; local
101 conditional = BRW_CONDITIONAL_GE;
103 conditional = BRW_CONDITIONAL_L;
107 conditional,
123 GLuint conditional; local
138 conditional = BRW_CONDITIONAL_GE;
140 conditional = BRW_CONDITIONAL_L;
144 conditional,
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_clip_unfilled.c 95 GLuint conditional; local
101 conditional = BRW_CONDITIONAL_GE;
103 conditional = BRW_CONDITIONAL_L;
107 conditional,
123 GLuint conditional; local
138 conditional = BRW_CONDITIONAL_GE;
140 conditional = BRW_CONDITIONAL_L;
144 conditional,
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
sfn_liverange.cpp 453 /* If the first write we encounter is not in a conditional branch, or
454 * the conditional write is not within a loop, then this is to be
457 const prog_scope *conditional = scope->enclosing_conditional(); local
458 if (!conditional || !conditional->innermost_loop()) {
469 * then we assume conditional writes.
512 * established whether the write is (un-)conditional in the scope enclosing
598 * to this ELSE branch, hence the write is conditional.
650 /* A conditional write within a (nested) loop must survive the outermost
653 const prog_scope *conditional = enclosing_scope_first_write->enclosing_conditional() local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_glsl_to_tgsi_temprename.cpp 176 /* This member variable tracks the current resolution of conditional writing
189 * the processing of the whole shader it also indicates a conditional write.
724 /* If the first write we encounter is not in a conditional branch, or
725 * the conditional write is not within a loop, then this is to be
728 const prog_scope *conditional = scope->enclosing_conditional(); local
729 if (!conditional || !conditional->innermost_loop()) {
740 * then we assume conditional writes.
783 * established whether the write is (un-)conditional in the scope enclosing
869 * to this ELSE branch, hence the write is conditional
924 const prog_scope *conditional = enclosing_scope_first_write->enclosing_conditional(); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
compiler.h 58 /* If conditional, the condition is specified in r31.w */
59 bool conditional; member in struct:midgard_branch
midgard_schedule.c 47 * Instructions consuming conditionals (branches and conditional selects)
48 * require their condition to be written into the conditional register (r31)
370 * scheduled one). Excludes conditional branches and csel */
741 bool conditional = alu && !branch && OP_IS_CSEL(instructions[i]->op); local
742 conditional |= (branch && instructions[i]->branch.conditional);
744 if (conditional && no_cond)
757 best_conditional = conditional;
781 /* Once we schedule a conditional, we can't again */
864 * - Move the conditional into the bundle. Preferred, but only works if th
    [all...]
midgard_compile.c 184 v_branch(bool conditional, bool invert)
191 .conditional = conditional,
1689 bool conditional = instr->intrinsic == nir_intrinsic_discard_if; local
1690 struct midgard_instruction discard = v_branch(conditional, false);
1693 if (conditional) {
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_glsl_to_tgsi_temprename.cpp 176 /* This member variable tracks the current resolution of conditional writing
189 * the processing of the whole shader it also indicates a conditional write.
724 /* If the first write we encounter is not in a conditional branch, or
725 * the conditional write is not within a loop, then this is to be
728 const prog_scope *conditional = scope->enclosing_conditional(); local
729 if (!conditional || !conditional->innermost_loop()) {
740 * then we assume conditional writes.
783 * established whether the write is (un-)conditional in the scope enclosing
869 * to this ELSE branch, hence the write is conditional
924 const prog_scope *conditional = enclosing_scope_first_write->enclosing_conditional(); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/midgard/
midgard_compile.c 93 /* If conditional, the condition is specified in r31.w */
94 bool conditional; member in struct:midgard_branch
374 v_branch(bool conditional, bool invert)
381 .conditional = conditional,
1098 * a conditional test) into that register */
1562 bool conditional = instr->intrinsic == nir_intrinsic_discard_if; local
1563 struct midgard_instruction discard = v_branch(conditional, false);
3677 /* Conditional branches expect the condition in r31.w; emit a move for
3967 bool is_conditional = ins->branch.conditional;
    [all...]

Completed in 14 milliseconds