/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/ |
D | CopyOnWriteList.kt | 24 array.copyInto( in add() 29 array.copyInto( in add() 55 array.copyInto( in removeAt() 59 array.copyInto( in removeAt()
|
/external/llvm-project/mlir/lib/IR/ |
D | TypeDetail.h | 43 StringRef tyData = allocator.copyInto(key.second); in construct() 105 auto typesList = allocator.copyInto(ArrayRef<Type>(types)); in construct() 152 ArrayRef<int64_t> shape = allocator.copyInto(key.first); in construct() 183 ArrayRef<int64_t> shape = allocator.copyInto(key.first); in construct() 239 ArrayRef<int64_t> shape = allocator.copyInto(std::get<0>(key)); in construct() 243 allocator.copyInto(std::get<2>(key)); in construct()
|
D | AttributeDetail.h | 62 ArrayAttributeStorage(allocator.copyInto(key)); in construct() 258 allocator.copyInto(std::get<1>(key)), in construct() 285 StringAttributeStorage(allocator.copyInto(key.first), key.second); in construct() 313 allocator.copyInto(key.first), key.second.size()); in construct() 665 allocator.copyInto(std::get<2>(key))); in construct()
|
/external/okio/okio/src/commonMain/kotlin/okio/ |
D | Segment.kt | 133 data.copyInto(prefix.data, startIndex = pos, endIndex = pos + byteCount) in split() 164 sink.data.copyInto(sink.data, startIndex = sink.pos, endIndex = sink.limit) in writeTo() 169 data.copyInto( in writeTo()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/ |
D | ArrayQueue.kt | 39 elements.copyInto( in ensureCapacity() 43 elements.copyInto( in ensureCapacity()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/ |
D | NamedDispatchers.kt | 57 elements.copyInto( in ensureCapacity() 61 elements.copyInto( in ensureCapacity()
|
/external/llvm-project/mlir/test/lib/Dialect/Test/ |
D | TestTypes.h | 36 return FieldInfo{alloc.copyInto(name), type}; in allocateInto() 74 TestRecursiveTypeStorage(allocator.copyInto(key)); in construct()
|
/external/okio/okio/src/hashFunctions/kotlin/okio/internal/ |
D | Md5.kt | 45 input.copyInto(unprocessed, unprocessedLimit, pos, limit) in update() 52 input.copyInto(unprocessed, unprocessedLimit, pos, pos + consumeByteCount) in update() 63 input.copyInto(unprocessed, 0, pos, limit) in update()
|
D | Sha1.kt | 46 input.copyInto(unprocessed, unprocessedLimit, pos, limit) in update() 53 input.copyInto(unprocessed, unprocessedLimit, pos, pos + consumeByteCount) in update() 64 input.copyInto(unprocessed, 0, pos, limit) in update()
|
D | Sha256.kt | 49 input.copyInto(unprocessed, unprocessedLimit, pos, limit) in update() 56 input.copyInto(unprocessed, unprocessedLimit, pos, pos + consumeByteCount) in update() 67 input.copyInto(unprocessed, 0, pos, limit) in update()
|
D | Sha512.kt | 49 input.copyInto(unprocessed, unprocessedLimit, pos, limit) in update() 56 input.copyInto(unprocessed, unprocessedLimit, pos, pos + consumeByteCount) in update() 67 input.copyInto(unprocessed, 0, pos, limit) in update()
|
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/ |
D | TypeDetail.h | 136 return Key(allocator.copyInto(name), opaque); in copyIntoAllocator() 137 return Key(allocator.copyInto(types), packed); in copyIntoAllocator() 247 ArrayRef<LLVMType> typesInAllocator = allocator.copyInto(body); in mutate() 346 allocator.copyInto(std::get<1>(key)), in construct()
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | SetOperationsTest.java | 313 HashSet<String> mut = Sets.union(friends, enemies).copyInto(new HashSet<String>()); in testUnion() 329 HashSet<String> mut = Sets.intersection(friends, enemies).copyInto(new HashSet<String>()); in testIntersection() 345 HashSet<String> mut = Sets.difference(friends, enemies).copyInto(new HashSet<String>()); in testDifference() 367 Sets.symmetricDifference(friends, enemies).copyInto(new HashSet<String>()); in testSymmetricDifference() 375 mut = Sets.symmetricDifference(enemies, friends).copyInto(new HashSet<String>()); in testSymmetricDifference()
|
D | FluentIterableTest.java | 863 assertThat(fluent(1, 3, 5).copyInto(Lists.newArrayList(1, 2))) in testCopyInto_List() 869 assertThat(fluent(1, 3, 5).copyInto(Sets.newHashSet(1, 2))).containsExactly(1, 2, 3, 5); in testCopyInto_Set() 873 assertThat(fluent(1, 3, 5).copyInto(Sets.newHashSet(1, 2, 3, 5))).containsExactly(1, 2, 3, 5); in testCopyInto_SetAllDuplicates() 888 assertThat(FluentIterable.from(iterable).copyInto(list)) in testCopyInto_NonCollection()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | SetOperationsTest.java | 313 HashSet<String> mut = Sets.union(friends, enemies).copyInto(new HashSet<String>()); in testUnion() 329 HashSet<String> mut = Sets.intersection(friends, enemies).copyInto(new HashSet<String>()); in testIntersection() 345 HashSet<String> mut = Sets.difference(friends, enemies).copyInto(new HashSet<String>()); in testDifference() 367 Sets.symmetricDifference(friends, enemies).copyInto(new HashSet<String>()); in testSymmetricDifference() 375 mut = Sets.symmetricDifference(enemies, friends).copyInto(new HashSet<String>()); in testSymmetricDifference()
|
D | FluentIterableTest.java | 867 assertThat(fluent(1, 3, 5).copyInto(Lists.newArrayList(1, 2))) in testCopyInto_List() 873 assertThat(fluent(1, 3, 5).copyInto(Sets.newHashSet(1, 2))).containsExactly(1, 2, 3, 5); in testCopyInto_Set() 877 assertThat(fluent(1, 3, 5).copyInto(Sets.newHashSet(1, 2, 3, 5))).containsExactly(1, 2, 3, 5); in testCopyInto_SetAllDuplicates() 892 assertThat(FluentIterable.from(iterable).copyInto(list)) in testCopyInto_NonCollection()
|
/external/llvm-project/mlir/include/mlir/Support/ |
D | StorageUniquer.h | 95 template <typename T> ArrayRef<T> copyInto(ArrayRef<T> elements) { in copyInto() function 105 StringRef copyInto(StringRef str) { in copyInto() function 106 auto result = copyInto(ArrayRef<char>(str.data(), str.size())); in copyInto()
|
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/ |
D | Predicate.h | 218 return Base::construct(alloc, alloc.copyInto(key)); in construct() 346 return Base::construct(alloc, KeyTy{alloc.copyInto(std::get<0>(key)), in construct() 347 alloc.copyInto(std::get<1>(key)), in construct()
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/ |
D | SPIRVTypes.cpp | 854 StringRef identifier = allocator.copyInto(keyIdentifier); in construct() 867 typesList = allocator.copyInto(keyTypes).data(); in construct() 876 offsetInfoList = allocator.copyInto(keyOffsetInfo).data(); in construct() 884 memberDecorationList = allocator.copyInto(keyMemberDecorations).data(); in construct() 942 allocator.copyInto(structMemberTypes).data()); in mutate() 948 offsetInfo = allocator.copyInto(structOffsetInfo).data(); in mutate() 954 allocator.copyInto(structMemberDecorationInfo).data(); in mutate()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/ |
D | ConflatedBroadcastChannel.kt | 147 list.copyInto( in <lambda>() 151 list.copyInto( in <lambda>()
|
/external/llvm-project/mlir/lib/Dialect/Quant/IR/ |
D | TypeDetail.h | 234 ArrayRef<double> scales = allocator.copyInto(key.scales); in construct() 235 ArrayRef<int64_t> zeroPoints = allocator.copyInto(key.zeroPoints); in construct()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/ |
D | Combine.kt | 81 (latestValues as Array<T?>).copyInto(results) in <lambda>()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/ |
D | tf_attributes.cc | 41 ShapeAttrStorage(allocator.copyInto(key.first), key.second); in construct()
|
D | tf_types.h | 175 ArrayRef<TensorType> subtypes = allocator.copyInto(key); in construct()
|
/external/okio/okio/src/commonMain/kotlin/okio/internal/ |
D | SegmentedByteString.kt | 143 data.copyInto( in commonGetSize()
|