Home
last modified time | relevance | path

Searched refs:true_value (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dif_conversion.cpp69 Instruction* true_value = nullptr; in Process() local
73 true_value = GetIncomingValue(phi, 0u); in Process()
76 true_value = GetIncomingValue(phi, 1u); in Process()
80 BasicBlock* true_def_block = context()->get_instr_block(true_value); in Process()
83 uint32_t true_vn = vn_table.GetValueNumber(true_value); in Process()
93 inst_to_use = true_value; in Process()
97 } else if (CanHoistInstruction(true_value, common, dominators)) { in Process()
98 inst_to_use = true_value; in Process()
124 context()->get_type_mgr()->GetType(true_value->type_id()); in Process()
130 true_value->result_id(), in Process()
Dir_builder.h351 Instruction* AddSelect(uint32_t type, uint32_t cond, uint32_t true_value, in AddSelect() argument
357 {SPV_OPERAND_TYPE_ID, {true_value}}, in AddSelect()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dif_conversion.cpp69 Instruction* true_value = nullptr; in Process() local
73 true_value = GetIncomingValue(phi, 0u); in Process()
76 true_value = GetIncomingValue(phi, 1u); in Process()
80 BasicBlock* true_def_block = context()->get_instr_block(true_value); in Process()
83 uint32_t true_vn = vn_table.GetValueNumber(true_value); in Process()
93 inst_to_use = true_value; in Process()
97 } else if (CanHoistInstruction(true_value, common, dominators)) { in Process()
98 inst_to_use = true_value; in Process()
124 context()->get_type_mgr()->GetType(true_value->type_id()); in Process()
130 true_value->result_id(), in Process()
Dir_builder.h351 Instruction* AddSelect(uint32_t type, uint32_t cond, uint32_t true_value, in AddSelect() argument
357 {SPV_OPERAND_TYPE_ID, {true_value}}, in AddSelect()
/third_party/spirv-tools/source/opt/
Dif_conversion.cpp69 Instruction* true_value = nullptr; in Process() local
73 true_value = GetIncomingValue(phi, 0u); in Process()
76 true_value = GetIncomingValue(phi, 1u); in Process()
80 BasicBlock* true_def_block = context()->get_instr_block(true_value); in Process()
83 uint32_t true_vn = vn_table.GetValueNumber(true_value); in Process()
93 inst_to_use = true_value; in Process()
97 } else if (CanHoistInstruction(true_value, common, dominators)) { in Process()
98 inst_to_use = true_value; in Process()
124 context()->get_type_mgr()->GetType(true_value->type_id()); in Process()
130 true_value->result_id(), in Process()
Dir_builder.h351 Instruction* AddSelect(uint32_t type, uint32_t cond, uint32_t true_value, in AddSelect() argument
357 {SPV_OPERAND_TYPE_ID, {true_value}}, in AddSelect()
/third_party/python/Lib/ctypes/test/
Dtest_wintypes.py12 for true_value in (1, 32767, 32768, 65535, 65537):
13 true = POINTER(c_int16)(c_int16(true_value))
21 vb.value = true_value
/third_party/python/Lib/test/
Dtest_peepholer.py323 def f(cond, true_value, false_value): argument
325 return (true_value if cond
/third_party/googletest/googlemock/test/
Dgmock-more-actions_test.cc1160 ACTION_P2(OverloadedAction, true_value, false_value) { in ACTION_P2() argument
1161 return arg0 ? true_value : false_value; in ACTION_P2()
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_glsl.hpp667 …td::string to_ternary_expression(const SPIRType &result_type, uint32_t select, uint32_t true_value,
Dspirv_glsl.cpp6310 … CompilerGLSL::to_ternary_expression(const SPIRType &restype, uint32_t select, uint32_t true_value, in to_ternary_expression() argument
6317 …expr = join(to_enclosed_expression(select), " ? ", to_enclosed_pointer_expression(true_value), " :… in to_ternary_expression()
6329 expr += swiz(true_value, i); in to_ternary_expression()
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Dfunction.cc5146 auto true_value = MakeOperand(inst, 1); in MakeSimpleSelect() local
5154 auto* op_ty = true_value.type; in MakeSimpleSelect()
5159 params.push_back(true_value.expr); in MakeSimpleSelect()
/third_party/python/Doc/whatsnew/
D2.5.rst62 x = true_value
74 x = true_value if condition else false_value
78 evaluated first, and the *true_value* expression is evaluated only if the