Home
last modified time | relevance | path

Searched refs:Copy (Results 1 – 25 of 809) sorted by relevance

12345678910>>...33

/external/llvm/include/llvm/Analysis/
DMemoryLocation.h101 MemoryLocation Copy(*this); in getWithNewPtr()
102 Copy.Ptr = NewPtr; in getWithNewPtr()
103 return Copy; in getWithNewPtr()
107 MemoryLocation Copy(*this); in getWithNewSize()
108 Copy.Size = NewSize; in getWithNewSize()
109 return Copy; in getWithNewSize()
113 MemoryLocation Copy(*this); in getWithoutAATags()
114 Copy.AATags = AAMDNodes(); in getWithoutAATags()
115 return Copy; in getWithoutAATags()
/external/tensorflow/tensorflow/compiler/xla/service/
Dcopy_insertion_test.cc103 op::Tuple(op::Copy(x))); in TEST_F()
124 op::Tuple(op::Copy(constant))); in TEST_F()
155 op::Copy(op::Add(op::Copy(op::Constant()), op::Copy(op::Constant())))); in TEST_F()
187 op::Tuple(op::Copy(constant2), op::Copy(x), op::Add(constant1, y))); in TEST_F()
223 op::Tuple(op::Copy(op::GetTupleElement(old_root)), in TEST_F()
224 op::Copy(op::GetTupleElement(old_root)))); in TEST_F()
246 op::Copy(old_root)); in TEST_F()
268 op::Copy(old_root)); in TEST_F()
289 op::Tuple(op::Copy(bitcast))); in TEST_F()
324 op::Copy(op::GetTupleElement(op::GetTupleElement(old_root))), in TEST_F()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DValueMap.h211 ValueMapCallbackVH Copy(*this);
212 sys::Mutex *M = Config::getMutex(Copy.Map->Data);
215 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
216 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
224 ValueMapCallbackVH Copy(*this);
225 sys::Mutex *M = Config::getMutex(Copy.Map->Data);
231 Config::onRAUW(Copy.Map->Data, Copy.Unwrap(), typed_new_key);
233 typename ValueMapT::MapT::iterator I = Copy.Map->Map.find(Copy);
236 if (I != Copy.Map->Map.end()) {
238 Copy.Map->Map.erase(I); // Definitely destroys *this.
[all …]
DSmallBitVector.h372 SmallBitVector Copy = RHS; variable
373 Copy.resize(size());
374 getPointer()->operator&=(*Copy.getPointer());
386 SmallBitVector Copy = RHS; variable
387 Copy.resize(size());
388 getPointer()->operator|=(*Copy.getPointer());
400 SmallBitVector Copy = RHS; variable
401 Copy.resize(size());
402 getPointer()->operator^=(*Copy.getPointer());
/external/libvpx/libvpx/test/
Dconsistency_test.cc92 void Copy(uint8_t *reference, uint8_t *source) { in Copy() function in __anon4689c0aa0111::ConsistencyTestBase
154 Copy(source_data_[1], source_data_[0]); in TEST_P()
155 Copy(reference_data_[0], source_data_[0]); in TEST_P()
157 Copy(reference_data_[1], source_data_[0]); in TEST_P()
174 Copy(source_data_[1], source_data_[0]); in TEST_P()
184 Copy(source_data_[1], source_data_[0]); in TEST_P()
185 Copy(reference_data_[0], source_data_[0]); in TEST_P()
186 Copy(reference_data_[1], source_data_[0]); in TEST_P()
191 Copy(reference_data_[1], source_data_[0]); in TEST_P()
/external/llvm/include/llvm/IR/
DValueMap.h257 ValueMapCallbackVH Copy(*this);
258 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
262 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
263 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
269 ValueMapCallbackVH Copy(*this);
270 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
277 Config::onRAUW(Copy.Map->Data, Copy.Unwrap(), typed_new_key);
279 typename ValueMapT::MapT::iterator I = Copy.Map->Map.find(Copy);
282 if (I != Copy.Map->Map.end()) {
284 Copy.Map->Map.erase(I); // Definitely destroys *this.
[all …]
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
Dcopy.fail.cpp29 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main() local
34 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main() local
39 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main() local
44 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main() local
/external/webrtc/webrtc/base/
Dcryptstring.cc29 CryptStringImpl* EmptyCryptStringImpl::Copy() const { in Copy() function in rtc::EmptyCryptStringImpl
41 : impl_(other.impl_->Copy()) { in CryptString()
44 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) { in CryptString()
63 CryptStringImpl* InsecureCryptStringImpl::Copy() const { in Copy() function in rtc::InsecureCryptStringImpl
/external/llvm/unittests/ADT/
DDenseMapTest.cpp346 static int Copy; member
349 CountCopyAndMove(const CountCopyAndMove &) { Copy++; } in CountCopyAndMove()
351 Copy++; in operator =()
360 int CountCopyAndMove::Copy = 0; member in __anon102d5c800111::__anon102d5c800211::CountCopyAndMove
377 CountCopyAndMove::Copy = 0; in TEST()
388 EXPECT_EQ(0, CountCopyAndMove::Copy); in TEST()
401 EXPECT_EQ(0, CountCopyAndMove::Copy); in TEST()
415 CountCopyAndMove::Copy = 0; in TEST()
426 EXPECT_EQ(0, CountCopyAndMove::Copy); in TEST()
439 CountCopyAndMove::Copy = 0; in TEST()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcpu_copy_insertion_test.cc97 EXPECT_THAT(xla_while->operand(0), op::Copy(op::Parameter())); in TEST_F()
98 EXPECT_THAT(body->root_instruction(), op::Copy(op::Constant())); in TEST_F()
99 EXPECT_THAT(condition->root_instruction(), op::Copy(op::Constant())); in TEST_F()
134 op::Tuple(op::Copy(op::Parameter()), op::Copy(op::Constant()), in TEST_F()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DAliasAnalysis.h116 Location Copy(*this); in getWithNewPtr()
117 Copy.Ptr = NewPtr; in getWithNewPtr()
118 return Copy; in getWithNewPtr()
122 Location Copy(*this); in getWithNewSize()
123 Copy.Size = NewSize; in getWithNewSize()
124 return Copy; in getWithNewSize()
128 Location Copy(*this); in getWithoutTBAATag()
129 Copy.TBAATag = 0; in getWithoutTBAATag()
130 return Copy; in getWithoutTBAATag()
/external/tensorflow/tensorflow/core/kernels/
Dassign_op.h101 Copy(context, &reshaped_old_lhs, rhs); in Compute()
117 Copy(context, copyTensor, rhs); in Compute()
127 Copy(context, &old_unlocked_lhs, rhs); in Compute()
130 virtual void Copy(OpKernelContext* context, Tensor* lhs,
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs219 Array.Copy(array, 0, tmp, 0, array.Length); in EnsureSize()
264 Array.Copy(this.array, 0, array, arrayIndex, count); in CopyTo()
279 Array.Copy(array, index + 1, array, index, count - index - 1); in Remove()
309 Array.Copy(values.array, 0, array, count, values.count); in Add()
452 Array.Copy(array, index, array, index + 1, count - index); in Insert()
467 Array.Copy(array, index + 1, array, index, count - index - 1); in RemoveAt()
520 Array.Copy(this.array, 0, array, index, count); in ICollection.CopyTo()
/external/llvm/lib/Target/AArch64/
DAArch64CleanupLocalDynamicTLSPass.cpp102 MachineInstr *Copy = BuildMI(*I.getParent(), I, I.getDebugLoc(), in replaceTLSBaseAddrCall() local
109 return Copy; in replaceTLSBaseAddrCall()
123 MachineInstr *Copy = in setRegister() local
128 return Copy; in setRegister()
/external/conscrypt/openjdk-uber/
Dbuild.gradle28 * Copy the native libraries to the resources directory.
30 task copySharedLibs(type: Copy, dependsOn: configurations.uberJar) {
42 * Copy the object files to the classes directory.
44 task copyClasses(type: Copy, dependsOn: configurations.uberJar) {
/external/llvm/lib/CodeGen/
DMachineCopyPropagation.cpp65 bool eraseIfRedundant(MachineInstr &Copy, unsigned Src, unsigned Def);
146 bool MachineCopyPropagation::eraseIfRedundant(MachineInstr &Copy, unsigned Src, in eraseIfRedundant() argument
163 DEBUG(dbgs() << "MCP: copy is a NOP, removing: "; Copy.dump()); in eraseIfRedundant()
167 assert(Copy.isCopy()); in eraseIfRedundant()
168 unsigned CopyDef = Copy.getOperand(0).getReg(); in eraseIfRedundant()
171 make_range(PrevCopy.getIterator(), Copy.getIterator())) in eraseIfRedundant()
174 Copy.eraseFromParent(); in eraseIfRedundant()
/external/google-breakpad/src/client/
Dminidump_file_writer.h114 bool Copy(MDRVA position, const void *src, ssize_t size);
182 bool Copy(MDRVA position, const void *src, size_t size);
185 inline bool Copy(const void *src, size_t size) { in Copy() function
186 return Copy(position_, src, size); in Copy()
Dminidump_file_writer.cc104 result = mdstring->Copy(str, mdstring->get()->length); in CopyStringToMDString()
211 if (!mem.Copy(src, mem.size())) in WriteMemory()
246 bool MinidumpFileWriter::Copy(MDRVA position, const void *src, ssize_t size) { function in google_breakpad::MinidumpFileWriter
277 bool UntypedMDRVA::Copy(MDRVA pos, const void *src, size_t size) { function in google_breakpad::UntypedMDRVA
281 return writer_->Copy(pos, src, size);
/external/ltp/testcases/kernel/syscalls/epoll/
DREADME.1ST11 2. Copy <epoll-lib_directory>/include/epoll.h /usr/include
27 5. Copy <libpcl_directory>/pcl/.libs/libpcl.* /lib
34 8. Copy <epoll-lib_directory>/include/epoll.h /usr/include
36 10. Copy <epoll-lib_directory>/lib/libepoll* /lib
/external/llvm/lib/Target/SystemZ/
DSystemZLDCleanup.cpp120 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(), in ReplaceTLSCall() local
127 return Copy; in ReplaceTLSCall()
140 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(), in SetRegister() local
144 return Copy; in SetRegister()
/external/webrtc/talk/app/webrtc/
Dwebrtcsdp_unittest.cc702 jdesc_.Initialize(desc_.Copy(), kSessionId, kSessionVersion); in WebRtcSdpTest()
1038 audio_desc_->Copy()); in AddExtmap()
1040 video_desc_->Copy()); in AddExtmap()
1062 if (!jdesc_.Initialize(desc_.Copy(), in TestSerializeDirection()
1074 audio_desc_->Copy()); in TestSerializeRejected()
1076 video_desc_->Copy()); in TestSerializeRejected()
1094 if (!jdesc_no_candidates.Initialize(desc_.Copy(), kSessionId, in TestSerializeRejected()
1151 if (!jdesc_.Initialize(desc_.Copy(), in TestDeserializeDirection()
1167 audio_desc_->Copy()); in TestDeserializeRejected()
1169 video_desc_->Copy()); in TestDeserializeRejected()
[all …]
/external/googletest/googletest/xcode/gtest.xcodeproj/
Dproject.pbxproj41 …3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; f…
50 …404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */ = {isa = PBXBu…
51 …404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi…
52 …404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi…
53 …404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRe…
54 …404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */ = {isa = PBXBuildFile; file…
59 …40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileR…
78 …4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */ = {isa = PBXBuildFile; …
79 …4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */ = {isa = PBXB…
80 …4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; …
[all …]
/external/swiftshader/third_party/LLVM/autoconf/
DREADME.TXT8 3. Copy <SRC>/ltdl.m4 to llvm/autoconf/m4
9 4. Copy <PFX>/share/aclocal/libtool.m4 to llvm/autoconf/m4/libtool.m4
10 5. Copy <PFX>/share/libtool/ltmain.sh to llvm/autoconf/ltmain.sh
11 6. Copy <PFX>/share/libtool/libltdl/ltdl.c to llvm/lib/System
12 7. Copy <PFX>/share/libtool/libltdl/ltdl.h to llvm/lib/System
/external/mesa3d/src/compiler/
DSConscript.glsl70 # Copy these files to avoid generation object files into src/mesa/program
72 env.Command('glsl/imports.c', '#src/mesa/main/imports.c', Copy('$TARGET', '$SOURCE'))
73 env.Command('glsl/extensions_table.c', '#src/mesa/main/extensions_table.c', Copy('$TARGET', '$SOURC…
74 # Copy these files to avoid generation object files into src/mesa/program
76 env.Command('glsl/symbol_table.c', '#src/mesa/program/symbol_table.c', Copy('$TARGET', '$SOURCE'))
77 env.Command('glsl/dummy_errors.c', '#src/mesa/program/dummy_errors.c', Copy('$TARGET', '$SOURCE'))
/external/llvm/include/llvm/ADT/
DSmallBitVector.h414 SmallBitVector Copy = RHS; variable
415 Copy.resize(size());
416 getPointer()->operator&=(*Copy.getPointer());
461 SmallBitVector Copy = RHS; variable
462 Copy.resize(size());
463 getPointer()->operator|=(*Copy.getPointer());
475 SmallBitVector Copy = RHS; variable
476 Copy.resize(size());
477 getPointer()->operator^=(*Copy.getPointer());

12345678910>>...33