/external/llvm-project/llvm/test/Transforms/Inline/AArch64/ |
D | phi.ll | 18 br label %if_true 20 if_true: 21 %phi = phi i1 [0, %entry], [%phi, %if_true] ; Simplified to 0 22 br i1 %phi, label %if_true, label %exit 43 br label %if_true 45 if_true: 46 %phi = phi i1 [%val, %entry], [%phi, %if_true] ; Cannot be simplified to a constant 47 br i1 %phi, label %if_true, label %exit 64 br i1 %cond, label %if_true, label %exit 66 if_true: [all …]
|
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | conditional_expressions.py | 27 def if_exp(cond, if_true, if_false, expr_repr): argument 29 return _tf_if_exp(cond, if_true, if_false, expr_repr) 31 return _py_if_exp(cond, if_true, if_false) 34 def _tf_if_exp(cond, if_true, if_false, expr_repr): argument 41 true_val.append(if_true()) 55 def _py_if_exp(cond, if_true, if_false): argument 56 return if_true() if cond else if_false()
|
/external/grpc-grpc/src/compiler/ |
D | objective_c_generator_helpers.h | 58 const ::grpc::string& if_true) { in PreprocIf() 60 if_true + "#endif\n"); in PreprocIf() 64 const ::grpc::string& if_true) { in PreprocIfNot() 66 if_true + "#endif\n"); in PreprocIfNot() 70 const ::grpc::string& if_true, in PreprocIfElse() 73 if_true + "#else\n" + if_false + "#endif\n"); in PreprocIfElse() 77 const ::grpc::string& if_true, in PreprocIfNotElse() 80 if_true + "#else\n" + if_false + "#endif\n"); in PreprocIfNotElse()
|
/external/tensorflow/third_party/mkl_dnn/ |
D | build_defs.bzl | 1 def if_mkl_open_source_only(if_true, if_false = []): 2 """Returns `if_true` if MKL-DNN v0.x is used. 7 Returns a select statement which evaluates to if_true if we're building 13 "@org_tensorflow//third_party/mkl_dnn:build_with_mkl_opensource": if_true, 17 def if_mkldnn_threadpool(if_true, if_false = []): 18 """Returns `if_true` if MKL-DNN v1.x is used. 23 Returns a select statement which evaluates to if_true if we're building 29 "@org_tensorflow//third_party/mkl_dnn:build_with_mkldnn_threadpool": if_true,
|
/external/rust/crates/grpcio-sys/grpc/src/compiler/ |
D | objective_c_generator_helpers.h | 68 const ::std::string& if_true) { in PreprocIf() 70 if_true + "#endif\n"); in PreprocIf() 74 const ::std::string& if_true) { in PreprocIfNot() 76 if_true + "#endif\n"); in PreprocIfNot() 80 const ::std::string& if_true, in PreprocIfElse() 83 if_true + "#else\n" + if_false + "#endif\n"); in PreprocIfElse() 87 const ::std::string& if_true, in PreprocIfNotElse() 90 if_true + "#else\n" + if_false + "#endif\n"); in PreprocIfNotElse()
|
/external/tensorflow/third_party/mkl/ |
D | build_defs.bzl | 17 def if_mkl(if_true, if_false = []): 21 if_true: expression to evaluate if building with MKL. 25 a select evaluating to either if_true or if_false as appropriate. 28 "@org_tensorflow//third_party/mkl:build_with_mkl": if_true, 32 def if_mkl_ml(if_true, if_false = []): 36 if_true: expression to evaluate if building with MKL-ML. 41 a select evaluating to either if_true or if_false as appropriate. 45 "@org_tensorflow//third_party/mkl:build_with_mkl": if_true, 49 def if_mkl_lnx_x64(if_true, if_false = []): 53 if_true: expression to evaluate if building with MKL is enabled and the [all …]
|
/external/llvm/test/Transforms/CodeGenPrepare/X86/ |
D | x86-shuffle-sink.ll | 9 ; CHECK: if_true: 16 br i1 %tst, label %if_true, label %if_false 18 if_true: 28 ; CHECK: if_true: 35 br i1 %tst, label %if_true, label %if_false 37 if_true: 47 ; CHECK: if_true: 54 br i1 %tst, label %if_true, label %if_false 56 if_true: 75 br i1 %tst, label %if_true, label %if_false [all …]
|
/external/tensorflow/third_party/gpus/cuda/ |
D | build_defs.bzl.tpl | 2 def if_cuda(if_true, if_false = []): 5 Returns a select statement which evaluates to if_true if we're building 10 "@local_config_cuda//cuda:using_nvcc": if_true, 11 "@local_config_cuda//cuda:using_clang": if_true, 15 def if_cuda_clang(if_true, if_false = []): 18 Returns a select statement which evaluates to if_true if we're building 23 "@local_config_cuda//cuda:using_clang": if_true, 27 def if_cuda_clang_opt(if_true, if_false = []): 31 Returns a select statement which evaluates to if_true if we're building 37 "@local_config_cuda//cuda:using_clang_opt": if_true,
|
/external/llvm-project/llvm/test/Transforms/CodeGenPrepare/X86/ |
D | x86-shuffle-sink.ll | 14 ; CHECK: if_true: 21 br i1 %tst, label %if_true, label %if_false 23 if_true: 35 ; CHECK-SSE2: if_true: 45 ; CHECK-XOP: if_true: 54 ; CHECK-AVX2: if_true: 64 ; CHECK-AVX512BW: if_true: 71 br i1 %tst, label %if_true, label %if_false 73 if_true: 85 ; CHECK: if_true: [all …]
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | cond_test.py | 110 def if_true(): function 119 constant_op.constant(True), if_true, if_false) 140 def if_true(): function 149 constant_op.constant(True), if_true, if_false) 167 def if_true(): function 176 constant_op.constant(True), if_true, if_false) 200 def if_true(): function 208 return control_flow_ops.cond(condition, if_true, if_false)
|
/external/tensorflow/tensorflow/core/profiler/builds/ |
D | build_config.bzl | 12 def if_profiler_oss(if_true, if_false = []): 14 "//tensorflow/core/profiler/builds:profiler_build_oss": if_true,
|
/external/tensorflow/third_party/gpus/rocm/ |
D | build_defs.bzl.tpl | 2 def if_rocm(if_true, if_false = []): 5 Returns a select statement which evaluates to if_true if we're building 10 "@local_config_rocm//rocm:using_hipcc": if_true,
|
/external/llvm-project/llvm/test/Transforms/JumpThreading/ |
D | pr33917.ll | 28 ; CHECK: if_true: 47 br i1 %cond, label %if_true, label %done 49 if_true:
|
/external/protobuf/src/google/protobuf/stubs/ |
D | template_util_unittest.cc | 64 typedef if_<true, true_type, false_type>::type if_true; in TEST() typedef 65 EXPECT_TRUE(if_true::value); in TEST()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/ |
D | ir_loader_test.cpp | 542 OpName %if_true "if.true" in TEST() 609 OpBranchConditional %58 %if_true %if_merge in TEST() 610 %if_true = OpLabel in TEST() 713 OpName %if_true "if.true" in TEST() 765 OpBranchConditional %53 %if_true %if_merge in TEST() 766 %if_true = OpLabel in TEST() 857 OpName %if_true "if.true" in TEST() 924 OpBranchConditional %58 %if_true %if_merge in TEST() 925 %if_true = OpLabel in TEST()
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | ir_loader_test.cpp | 542 OpName %if_true "if.true" in TEST() 609 OpBranchConditional %58 %if_true %if_merge in TEST() 610 %if_true = OpLabel in TEST() 713 OpName %if_true "if.true" in TEST() 765 OpBranchConditional %53 %if_true %if_merge in TEST() 766 %if_true = OpLabel in TEST() 857 OpName %if_true "if.true" in TEST() 924 OpBranchConditional %58 %if_true %if_merge in TEST() 925 %if_true = OpLabel in TEST()
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | ir_loader_test.cpp | 542 OpName %if_true "if.true" in TEST() 609 OpBranchConditional %58 %if_true %if_merge in TEST() 610 %if_true = OpLabel in TEST() 713 OpName %if_true "if.true" in TEST() 765 OpBranchConditional %53 %if_true %if_merge in TEST() 766 %if_true = OpLabel in TEST() 857 OpName %if_true "if.true" in TEST() 924 OpBranchConditional %58 %if_true %if_merge in TEST() 925 %if_true = OpLabel in TEST()
|
/external/llvm-project/llvm/test/Transforms/CodeGenPrepare/ARM/ |
D | large-offset-gep.ll | 64 br i1 %cond, label %if_true, label %if_end 66 if_true: 70 %struct = phi %struct_type* [ %s1, %entry ], [ %s2, %if_true ]
|
/external/llvm-project/llvm/test/Transforms/CodeGenPrepare/AArch64/ |
D | large-offset-gep.ll | 60 br i1 %cond, label %if_true, label %if_end 62 if_true: 66 %struct = phi %struct_type* [ %s1, %entry ], [ %s2, %if_true ]
|
/external/tensorflow/tensorflow/core/kernels/mlir_generated/ |
D | build_defs.bzl | 15 def if_mlir_generated_gpu_kernels_enabled(if_true, if_false = []): 18 "//conditions:default": if_true, 116 def if_mlir_experimental_kernels_enabled(if_true, if_false = []): 118 "//tensorflow/core/kernels/mlir_generated:mlir_experimental_kernels_enabled": if_true,
|
/external/tensorflow/tensorflow/c/experimental/gradients/ |
D | BUILD | 197 if_true = [], 222 if_true = [],
|
/external/tensorflow/tensorflow/compiler/xla/rpc/ |
D | BUILD | 62 if_true = [],
|
/external/tensorflow/tensorflow/ |
D | tensorflow.bzl | 119 def if_xla_available(if_true, if_false = []): 121 clean_dep("//tensorflow:with_xla_support"): if_true, 288 def if_nccl(if_true, if_false = []): 292 "//conditions:default": if_true, 295 def if_libtpu(if_true, if_false = []): 299 # "//tools/cc_target_os:gce": if_true, 301 clean_dep("//tensorflow:with_tpu_support"): if_true, 306 def if_with_tpu_support(if_true, if_false = []): 309 "//tensorflow:with_tpu_support": if_true, 313 def if_registration_v2(if_true, if_false = []): [all …]
|
/external/zstd/contrib/freestanding_lib/ |
D | freestanding.py | 268 if_true = False 275 if_true = (m is not None) 296 if if_true:
|
/external/python/cpython2/Lib/ |
D | gettext.py | 151 if_true, nexttok = _parse(tokens, 0) 155 result = '%s if %s else %s' % (if_true, result, if_false)
|