Home
last modified time | relevance | path

Searched refs:BreakType (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_exec.h295 enum tgsi_break_type BreakType; member
Dtgsi_exec.c3038 if (mach->BreakType == TGSI_EXEC_BREAK_INSIDE_LOOP) { in exec_break()
3044 assert(mach->BreakType == TGSI_EXEC_BREAK_INSIDE_SWITCH); in exec_break()
3064 mach->BreakStack[mach->BreakStackTop++] = mach->BreakType; in exec_switch()
3065 mach->BreakType = TGSI_EXEC_BREAK_INSIDE_SWITCH; in exec_switch()
3114 mach->BreakType = mach->BreakStack[--mach->BreakStackTop]; in exec_endswitch()
3755 mach->BreakStack[mach->BreakStackTop++] = mach->BreakType; in exec_instruction()
3794 mach->BreakType = mach->BreakStack[mach->BreakStackTop]; in exec_instruction()
3956 mach->BreakStack[mach->BreakStackTop++] = mach->BreakType; in exec_instruction()
3957 mach->BreakType = TGSI_EXEC_BREAK_INSIDE_LOOP; in exec_instruction()
3980 mach->BreakType = mach->BreakStack[--mach->BreakStackTop]; in exec_instruction()
[all …]
/external/v8/src/crankshaft/
Dhydrogen.h2107 enum BreakType { BREAK, CONTINUE }; enum
2108 HBasicBlock* Get(BreakableStatement* stmt, BreakType type,
Dhydrogen.cc4839 BreakType type, in Get()