/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | if_conversion.cpp | 69 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()
|
D | ir_builder.h | 351 Instruction* AddSelect(uint32_t type, uint32_t cond, uint32_t true_value, in AddSelect() argument 357 {SPV_OPERAND_TYPE_ID, {true_value}}, in AddSelect()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | if_conversion.cpp | 69 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()
|
D | ir_builder.h | 351 Instruction* AddSelect(uint32_t type, uint32_t cond, uint32_t true_value, in AddSelect() argument 357 {SPV_OPERAND_TYPE_ID, {true_value}}, in AddSelect()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | if_conversion.cpp | 69 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()
|
D | ir_builder.h | 351 Instruction* AddSelect(uint32_t type, uint32_t cond, uint32_t true_value, in AddSelect() argument 357 {SPV_OPERAND_TYPE_ID, {true_value}}, in AddSelect()
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_wintypes.py | 12 for true_value in (1, 32767, 32768, 65535, 65537): 13 true = POINTER(c_int16)(c_int16(true_value)) 21 vb.value = true_value
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_wintypes.py | 11 for true_value in (1, 32767, 32768, 65535, 65537): 12 true = POINTER(c_int16)(c_int16(true_value)) 20 vb.value = true_value
|
/external/llvm-project/clang/test/Parser/ |
D | altivec-csk-bool.c | 10 true_value = 1 enumerator 13 #define true true_value
|
/external/clang/test/Parser/ |
D | altivec-csk-bool.c | 10 true_value = 1 enumerator 13 #define true true_value
|
/external/antlr/runtime/Ruby/test/functional/parser/ |
D | calc.rb | 85 tests.each do |expression, true_value| 88 parser_value.should == true_value
|
/external/toolchain-utils/cros_utils/ |
D | misc.py | 500 true_value='yes', argument 515 true_value, false_value = true_value.lower(), false_value.lower() 516 true_text, false_text = true_value, false_value 517 if true_value == false_value: 519 'true_value and false_value must differ: got %r' % true_value) 547 if true_value.startswith(response):
|
/external/llvm-project/clang/test/PCH/ |
D | cxx_exprs.cpp | 63 static_assert(true_value, "true_value is true");
|
D | cxx_exprs.h | 26 const bool true_value = true; variable
|
/external/clang/test/PCH/ |
D | cxx_exprs.cpp | 33 static_assert(true_value, "true_value is true");
|
D | cxx_exprs.h | 26 const bool true_value = true; variable
|
/external/python/cpython2/Lib/test/ |
D | test_peepholer.py | 189 def f(cond, true_value, false_value): argument 190 return true_value if cond else false_value
|
/external/libchrome/base/ |
D | values_unittest.cc | 49 Value true_value(true); in TEST() local 50 EXPECT_EQ(Value::Type::BOOLEAN, true_value.type()); in TEST() 51 EXPECT_TRUE(true_value.GetBool()); in TEST() 166 Value true_value(true); in TEST() local 167 Value copied_true_value(true_value.Clone()); in TEST() 168 EXPECT_EQ(true_value.type(), copied_true_value.type()); in TEST() 169 EXPECT_EQ(true_value.GetBool(), copied_true_value.GetBool()); in TEST() 178 blank = true_value.Clone(); in TEST() 179 EXPECT_EQ(true_value.type(), blank.type()); in TEST() 180 EXPECT_EQ(true_value.GetBool(), blank.GetBool()); in TEST() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_peepholer.py | 323 def f(cond, true_value, false_value): argument 325 return (true_value if cond
|
/external/llvm-project/mlir/lib/Dialect/StandardOps/Transforms/ |
D | Bufferize.cpp | 118 op, adaptor.condition(), adaptor.true_value(), adaptor.false_value()); in matchAndRewrite()
|
/external/tensorflow/tensorflow/compiler/mlir/tools/kernel_gen/ |
D | kernel_creator.cc | 100 if (!select.true_value().getDefiningOp<mlir::RankOp>() || in IsSmallAlloc()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/ |
D | canonicalize.mlir | 1025 %true_value = "tf.Mul"(%arg0, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32> 1026 "tf.Yield"(%true_value) : (tensor<f32>) -> () 1034 %true_value = "tf.Mul"(%arg0, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32> 1035 "tf.Yield"(%true_value) : (tensor<f32>) -> () 1054 %true_value = "tf.Mul"(%arg0, %arg1) : (tensor<?xf32>, tensor<?xf32>) -> tensor<?xf32> 1055 "tf.Yield"(%true_value) : (tensor<?xf32>) -> () 1076 %true_value = "tf.Mul"(%arg0, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32> 1077 …"tf.Yield"(%arg1, %arg2, %true_value, %arg2) : (tensor<f32>, tensor<!tf.resource>, tensor<f32>, te…
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | deadness_analysis_test.cc | 508 Output true_value = ops::Placeholder(root.WithOpName("true_value"), DT_FLOAT); in TEST() local 512 ops::Switch predicated_true(root.WithOpName("predicated_true"), true_value, in TEST() 515 ops::Switch predicated_false(root.WithOpName("predicated_false"), true_value, in TEST()
|
/external/googletest/googlemock/test/ |
D | gmock-more-actions_test.cc | 1160 ACTION_P2(OverloadedAction, true_value, false_value) { in ACTION_P2() argument 1161 return arg0 ? true_value : false_value; in ACTION_P2()
|
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/ |
D | SPIRVLogicalOps.td | 808 [NoSideEffect, AllTypesMatch<["true_value", "false_value", "result"]>]> { 854 SPV_SelectType:$true_value,
|