Home
last modified time | relevance | path

Searched refs:copyInto (Results 1 – 25 of 51) sorted by relevance

123

/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
DCopyOnWriteList.kt24 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/
DTypeDetail.h43 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()
DAttributeDetail.h62 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/
DSegment.kt133 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/
DArrayQueue.kt39 elements.copyInto( in ensureCapacity()
43 elements.copyInto( in ensureCapacity()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/
DNamedDispatchers.kt57 elements.copyInto( in ensureCapacity()
61 elements.copyInto( in ensureCapacity()
/external/llvm-project/mlir/test/lib/Dialect/Test/
DTestTypes.h36 return FieldInfo{alloc.copyInto(name), type}; in allocateInto()
74 TestRecursiveTypeStorage(allocator.copyInto(key)); in construct()
/external/okio/okio/src/hashFunctions/kotlin/okio/internal/
DMd5.kt45 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()
DSha1.kt46 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()
DSha256.kt49 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()
DSha512.kt49 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/
DTypeDetail.h136 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/
DSetOperationsTest.java313 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()
DFluentIterableTest.java863 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/
DSetOperationsTest.java313 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()
DFluentIterableTest.java867 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/
DStorageUniquer.h95 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/
DPredicate.h218 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/
DSPIRVTypes.cpp854 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/
DConflatedBroadcastChannel.kt147 list.copyInto( in <lambda>()
151 list.copyInto( in <lambda>()
/external/llvm-project/mlir/lib/Dialect/Quant/IR/
DTypeDetail.h234 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/
DCombine.kt81 (latestValues as Array<T?>).copyInto(results) in <lambda>()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_attributes.cc41 ShapeAttrStorage(allocator.copyInto(key.first), key.second); in construct()
Dtf_types.h175 ArrayRef<TensorType> subtypes = allocator.copyInto(key); in construct()
/external/okio/okio/src/commonMain/kotlin/okio/internal/
DSegmentedByteString.kt143 data.copyInto( in commonGetSize()

123