/external/llvm-project/llvm/test/Analysis/BasicAA/ |
D | noalias-bugs.ll | 10 %nested = type { %nested.i64 } 11 %nested.i64 = type { i64 } 13 define i64 @testcase(%nested * noalias %p1, %nested * noalias %p2, 15 %ptr = getelementptr inbounds %nested, %nested* %p1, i64 -1, i32 0 16 %ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %ptr, i64 0, i32 0 17 %ptr2= getelementptr inbounds %nested, %nested* %p2, i64 0, i32 0 19 %either_ptr = select i1 %cmp, %nested.i64* %ptr2, %nested.i64* %ptr 20 %either_ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %either_ptr, i64 0, i32 0
|
/external/llvm/test/Analysis/BasicAA/ |
D | noalias-bugs.ll | 10 %nested = type { %nested.i64 } 11 %nested.i64 = type { i64 } 13 define i64 @testcase(%nested * noalias %p1, %nested * noalias %p2, 15 %ptr = getelementptr inbounds %nested, %nested* %p1, i64 -1, i32 0 16 %ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %ptr, i64 0, i32 0 17 %ptr2= getelementptr inbounds %nested, %nested* %p2, i64 0, i32 0 19 %either_ptr = select i1 %cmp, %nested.i64* %ptr2, %nested.i64* %ptr 20 %either_ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %either_ptr, i64 0, i32 0
|
/external/llvm-project/mlir/test/Transforms/ |
D | test-symbol-dce.mlir | 4 // Check that trivially dead and trivially live non-nested cases are handled. 11 // CHECK-NOT: func nested @dead_nested_function 12 func nested @dead_nested_function() 17 // CHECK: func nested @live_nested_function 18 func nested @live_nested_function() 28 // Check that we don't DCE nested symbols if they are used. 29 // CHECK-LABEL: module attributes {test.nested} 30 module attributes {test.nested} { 33 // CHECK-NOT: func nested @dead_nested_function 34 func nested @dead_nested_function() [all …]
|
D | sccp-callgraph.mlir | 28 /// results of a visible nested function. 30 // CHECK: func nested @nested( 31 func nested @nested(%arg0 : i32) -> i32 { 44 %result = call @nested(%1) : (i32) -> i32 50 /// Check that non-visible nested functions do not track arguments. 55 // NESTED: func nested @nested( 56 func nested @nested(%arg0 : i32) -> (i32, i32) { 67 // NESTED: %[[CALL:.*]]:2 = call @nested 71 %result:2 = call @nested(%1) : (i32) -> (i32, i32)
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | tf_utils.py | 107 def map_structure_with_atomic(is_atomic_fn, map_fn, nested): argument 123 if is_atomic_fn(nested): 124 return map_fn(nested) 127 if not nest.is_nested(nested): 129 'Received non-atomic and non-sequence element: {}'.format(nested)) 130 if nest.is_mapping(nested): 131 values = [nested[k] for k in sorted(nested.keys())] 132 elif nest.is_attrs(nested): 133 values = _astuple(nested) 135 values = nested [all …]
|
/external/llvm-project/polly/lib/External/isl/ |
D | isl_space.c | 47 space->nested[0] = NULL; in isl_space_alloc() 48 space->nested[1] = NULL; in isl_space_alloc() 74 if (space->n_in != 0 || space->nested[0]) in isl_space_is_set() 167 if (space->n_in != 0 || space->nested[0] || in isl_space_is_params() 168 space->n_out != 0 || space->nested[1]) in isl_space_is_params() 296 if (!space->nested[pos]) in isl_space_peek_nested() 299 return space->nested[pos]; in isl_space_peek_nested() 392 if (space->nested[0] && in isl_space_dup() 393 !(dup->nested[0] = isl_space_copy(space->nested[0]))) in isl_space_dup() 395 if (space->nested[1] && in isl_space_dup() [all …]
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_move_unittest.cc | 54 const auto* nested = &message1.optional_nested_message(); in TEST() local 61 EXPECT_EQ(nested, &message2.optional_nested_message()); in TEST() 62 EXPECT_NE(nested, &message1.optional_nested_message()); in TEST() 68 const auto* nested = &message1.optional_nested_message(); in TEST() local 76 EXPECT_EQ(nested, &message2.optional_nested_message()); in TEST() 77 EXPECT_NE(nested, &message1.optional_nested_message()); in TEST() 94 const auto* nested = &message1_on_arena->optional_nested_message(); in TEST() local 101 EXPECT_EQ(nested, &message2_on_arena->optional_nested_message()); in TEST() 110 const auto* nested = &message1_on_arena->optional_nested_message(); in TEST() local 117 EXPECT_NE(nested, &message2_on_arena->optional_nested_message()); in TEST() [all …]
|
/external/llvm-project/mlir/lib/Analysis/ |
D | NestedMatcher.cpp | 42 NestedPattern::NestedPattern(ArrayRef<NestedPattern> nested, in NestedPattern() argument 45 if (!nested.empty()) { in NestedPattern() 46 auto *newNested = allocator()->Allocate<NestedPattern>(nested.size()); in NestedPattern() 47 std::uninitialized_copy(nested.begin(), nested.end(), newNested); in NestedPattern() 48 nestedPatterns = ArrayRef<NestedPattern>(newNested, nested.size()); in NestedPattern() 123 NestedPattern If(ArrayRef<NestedPattern> nested) { in If() argument 124 return NestedPattern(nested, isAffineIfOp); in If() 126 NestedPattern If(FilterFunctionType filter, ArrayRef<NestedPattern> nested) { in If() argument 127 return NestedPattern(nested, [filter](Operation &op) { in If() 139 NestedPattern For(ArrayRef<NestedPattern> nested) { in For() argument [all …]
|
/external/llvm-project/flang/test/Semantics/ |
D | call01.f90 | 21 res = nested() 24 integer function nested function 26 nested = n * f02(n-1) ! 15.6.2.1(3) 27 end function nested 110 res = nested() 113 character(1) function nested function 115 nested = f14(n-1) ! 15.6.2.1(3) 116 end function nested
|
/external/auto/value/src/it/gwtserializer/src/test/java/com/google/auto/value/client/ |
D | GwtSerializerTest.java | 36 Nested echo(Nested nested); in echo() argument 38 NestedWithBuilder echo(NestedWithBuilder nested); in echo() argument 50 void echo(Nested nested, AsyncCallback<Nested> callback); in echo() argument 52 void echo(NestedWithBuilder nested, AsyncCallback<NestedWithBuilder> callback); in echo() argument 94 public Nested echo(Nested nested) { in echo() argument 95 return Nested.create(nested.message(), echo(nested.simple())); in echo() 99 public NestedWithBuilder echo(NestedWithBuilder nested) { in echo() argument 101 .message(nested.message()) in echo() 102 .simple(echo(nested.simple())) in echo() 233 Nested nested = Nested.create("able", Simple.create("baker")); in testNested() local [all …]
|
/external/python/apitools/apitools/base/py/testing/ |
D | mock_test.py | 245 nested = messages.StringField(1) variable in _NestedMessage 253 nested = messages.MessageField(_NestedMessage, 1) variable in _NestedNestedMessage 261 nested=_NestedMessage( 262 nested='foo')), 264 nested=_NestedMessage( 265 nested='bar')))) 269 nested=_NestedMessage( 270 nested='foo')), 272 nested=_NestedMessage( 273 nested='foo')))) [all …]
|
/external/python/pycparser/utils/internal/ |
D | memprofiling.py | 23 nested = expand_decl(decl.type) 27 return ['Decl', decl.quals, decl.name, nested] 29 return ['Decl', decl.name, nested] 32 return ['Typename', decl.quals, nested] 34 return ['Typename', nested] 37 return ['ArrayDecl', dimval, nested] 39 return ['PtrDecl', nested] 41 return ['Typedef', decl.name, nested] 47 return ['FuncDecl', params, nested]
|
/external/llvm-project/mlir/test/IR/ |
D | print-ir-nesting.mlir | 4 // CHECK: 1 nested regions: 13 // CHECK: 0 nested regions: 18 // CHECK: 2 nested regions: 24 // CHECK: 0 nested regions: 32 // CHECK: 0 nested regions: 35 // CHECK: 0 nested regions: 40 // CHECK: 0 nested regions: 43 // CHECK: 0 nested regions: 48 // CHECK: 0 nested regions: 51 // CHECK: 0 nested regions:
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
D | DescriptorDeclarationTest.cs | 108 var nested = outer.FindDescriptor<MessageDescriptor>("NestedCommentMessage"); in NestedMessageComments() 109 Assert.NotNull(nested.Declaration); in NestedMessageComments() 110 … Assert.AreEqual(" Leading nested message comment\n", nested.Declaration.LeadingComments); in NestedMessageComments() 117 var nested = outer.FindDescriptor<EnumDescriptor>("NestedCommentEnum"); in NestedEnumComments() 118 Assert.NotNull(nested.Declaration); in NestedEnumComments() 119 Assert.AreEqual(" Leading nested enum comment\n", nested.Declaration.LeadingComments); in NestedEnumComments() 136 var nested = outer.FindDescriptor<MessageDescriptor>("NestedCommentMessage"); in NestedMessageFieldComments() 137 var field = nested.FindFieldByName("nested_text"); in NestedMessageFieldComments() 155 var nested = outer.FindDescriptor<EnumDescriptor>("NestedCommentEnum"); in NestedEnumValueComments() 156 var value = nested.FindValueByName("ZERO_VALUE"); in NestedEnumValueComments()
|
/external/tensorflow/tensorflow/python/util/ |
D | util.cc | 514 explicit AttrsValueIterator(PyObject* nested) : nested_(nested) { in AttrsValueIterator() argument 515 Py_INCREF(nested); in AttrsValueIterator() 599 ValueIteratorPtr GetValueIterator(PyObject* nested) { in GetValueIterator() argument 600 if (PyDict_Check(nested)) { in GetValueIterator() 601 return absl::make_unique<DictValueIterator>(nested); in GetValueIterator() 602 } else if (IsMappingHelper(nested)) { in GetValueIterator() 603 return absl::make_unique<MappingValueIterator>(nested); in GetValueIterator() 604 } else if (IsAttrsHelper(nested)) { in GetValueIterator() 605 return absl::make_unique<AttrsValueIterator>(nested); in GetValueIterator() 607 return absl::make_unique<SequenceValueIterator>(nested); in GetValueIterator() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-rc/ |
D | include-paths.test | 12 ; RUN: rm -f %t.nested-include.res 13 ; RUN: llvm-rc /FO %t.nested-include.res /I %p/Inputs/nested -- %p/Inputs/deep-include.rc 14 ; RUN: llvm-readobj %t.nested-include.res | FileCheck --check-prefix=FOUND %s 17 ; RUN: rm -f %t.nested-include.res 18 ; RUN: not llvm-rc /FO %t.nested-include.res -- %p/Inputs/deep-include.rc 2>&1 \ 25 ; RUN: rm -f %t.nested-include.res 26 ; RUN: cd %p/Inputs/nested 27 ; RUN: llvm-rc /FO %t.nested-include.res -- %p/Inputs/include.rc 28 ; RUN: llvm-readobj %t.nested-include.res | FileCheck --check-prefix=FOUND %s
|
/external/rust/crates/proc-macro-nested/ |
D | METADATA | 1 name: "proc-macro-nested" 2 description: "Support for nested proc-macro-hack invocations" 6 value: "https://crates.io/crates/proc-macro-nested" 10 value: "https://static.crates.io/crates/proc-macro-nested/proc-macro-nested-0.1.6.crate"
|
/external/llvm-project/llvm/test/tools/llvm-ar/ |
D | windows-path.test | 36 RUN: rm -f a\nested.a b\nested.a nested.a 37 RUN: llvm-ar rcST a\nested.a a\foo.txt 38 RUN: llvm-ar rcST b\nested.a b\foo.txt 39 RUN: llvm-ar rcST nested.a a\nested.a foo.txt b\nested.a 40 RUN: llvm-ar t nested.a | FileCheck %s --check-prefix=NESTED --implicit-check-not {{.}}
|
/external/llvm-project/clang/test/SemaObjCXX/ |
D | nullability-consistency-arrays.mm | 1 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type %s … 2 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type %s … 3 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type %s … 4 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type -x … 5 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type -x … 6 // RUN: %clang_cc1 -fsyntax-only -fblocks -I %S/Inputs -Wno-nullability-inferred-on-nested-type -x …
|
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/ |
D | ProfilerTest.java | 94 Profiler nested = profiler.startNested("subtask"); in testNestedProfiling() local 95 doSubtask(nested); in testNestedProfiling() 123 public void doSubtask(Profiler nested) { in doSubtask() argument 124 nested.start("n1"); in doSubtask() 127 nested.start("n2"); in doSubtask() 129 nested.stop(); in doSubtask()
|
/external/llvm-project/openmp/libomptarget/deviceRTLs/nvptx/test/api/ |
D | ignored.c | 9 int cancellation = -1, dynamic = -1, nested = -1, maxActiveLevels = -1; in main() local 11 #pragma omp target map(cancellation, dynamic, nested, maxActiveLevels) in main() 22 nested = omp_get_nested(); in main() 33 printf("nested = %d\n", nested); in main()
|
/external/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 54 nested = false, 68 self.nested = false 90 assert(not self.nested) 100 self.nested = true 171 assert(self.nested) 172 self.nested = false 246 assert(not self.nested) 247 self.nested = true 255 assert(self.nested) 256 self.nested = false [all …]
|
/external/javassist/src/main/javassist/convert/ |
D | TransformNewClass.java | 26 private int nested; field in TransformNewClass 39 nested = 0; in initialize() 67 ++nested; in transform() 73 if (typedesc != 0 && nested > 0) { in transform() 81 --nested; in transform()
|
/external/pigweed/pw_protobuf/public/pw_protobuf/ |
D | find.h | 29 constexpr FindDecodeHandler(uint32_t field_number, FindDecodeHandler* nested) in FindDecodeHandler() argument 30 : field_number_(field_number), found_(false), nested_handler_(nested) {} in FindDecodeHandler() 36 void set_nested_handler(FindDecodeHandler* nested) { in set_nested_handler() argument 37 nested_handler_ = nested; in set_nested_handler()
|
/external/llvm-project/compiler-rt/test/tsan/Darwin/ |
D | objc-synchronize-nested-recursive.mm | 13 NSLog(@"nested 1-1"); 14 // CHECK: nested 1-1 22 NSLog(@"nested 1-2-1-2"); 23 // CHECK: nested 1-2-1-2
|