Searched defs:Copy (Results 1 - 25 of 132) sorted by relevance

123456

/external/pdfium/core/fxge/
H A Dcfx_graphstatedata.cpp23 Copy(src);
26 void CFX_GraphStateData::Copy(const CFX_GraphStateData& src) { function in class:CFX_GraphStateData
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DBitVectorTest.cpp79 BitVector Copy = Vec; local
83 EXPECT_TRUE(Copy == Alt);
87 std::swap(Copy, Vec);
H A DSmallBitVectorTest.cpp76 SmallBitVector Copy = Vec; local
80 EXPECT_TRUE(Copy == Alt);
84 std::swap(Copy, Vec);
/external/google-breakpad/src/processor/
H A Dbasic_code_modules.cc68 that->GetModuleAtIndex(module_sequence)->Copy());
124 const CodeModules* BasicCodeModules::Copy() const { function in class:google_breakpad::BasicCodeModules
H A Dbasic_code_module.h91 virtual const CodeModule* Copy() const { return new BasicCodeModule(this); } function in class:google_breakpad::BasicCodeModule
/external/llvm/lib/Target/AArch64/
H A DAArch64CleanupLocalDynamicTLSPass.cpp100 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the
102 MachineInstr *Copy = BuildMI(*I.getParent(), I, I.getDebugLoc(), local
109 return Copy;
123 MachineInstr *Copy = local
128 return Copy;
H A DAArch64CallLowering.cpp45 MachineInstr *Copy = local
47 (void)Copy;
48 assert(Copy->getNextNode() == Return &&
/external/llvm/unittests/ADT/
H A DBitVectorTest.cpp89 TypeParam Copy = Vec; local
93 EXPECT_TRUE(Copy == Alt);
97 std::swap(Copy, Vec);
H A DDenseMapTest.cpp346 static int Copy; member in struct:__anon14920::__anon14921::CountCopyAndMove
349 CountCopyAndMove(const CountCopyAndMove &) { Copy++; }
351 Copy++;
360 int CountCopyAndMove::Copy = 0; member in class:__anon14920::__anon14921::CountCopyAndMove
377 CountCopyAndMove::Copy = 0; member in class:__anon14920::CountCopyAndMove
388 EXPECT_EQ(0, CountCopyAndMove::Copy);
401 EXPECT_EQ(0, CountCopyAndMove::Copy);
415 CountCopyAndMove::Copy = 0; member in class:__anon14920::CountCopyAndMove
426 EXPECT_EQ(0, CountCopyAndMove::Copy);
439 CountCopyAndMove::Copy member in class:__anon14920::CountCopyAndMove
459 CountCopyAndMove::Copy = 0; member in class:__anon14920::CountCopyAndMove
[all...]
/external/pdfium/fxjs/
H A Dcjs_globalvariablearray.cpp15 void CJS_GlobalVariableArray::Copy(const CJS_GlobalVariableArray& array) { function in class:CJS_GlobalVariableArray
45 pNewObjData->objData.Copy(pOldObjData->objData);
/external/protobuf/csharp/src/Google.Protobuf/
H A DByteArray.cs43 /// The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy
50 internal static void Copy(byte[] src, int srcOffset, byte[] dst, int dstOffset, int count) method in class:Google.Protobuf.ByteArray
/external/tensorflow/tensorflow/core/kernels/
H A Dconcat_lib_cpu.cc28 inline void Copy(T* dst, const T* src, int input_index, size_t n) { function in struct:tensorflow::__anon26375::MemCpyCopier
40 inline void Copy(ResourceHandle* dst, const ResourceHandle* src, function in struct:tensorflow::__anon26375::MemCpyCopier
/external/webrtc/webrtc/base/
H A Dcryptstring.cc29 CryptStringImpl* EmptyCryptStringImpl::Copy() const { function in class:rtc::EmptyCryptStringImpl
41 : impl_(other.impl_->Copy()) {
44 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) {
63 CryptStringImpl* InsecureCryptStringImpl::Copy() const { function in class:rtc::InsecureCryptStringImpl
/external/libchrome/crypto/
H A Drsa_private_key.cc73 std::unique_ptr<RSAPrivateKey> RSAPrivateKey::Copy() const { function in class:crypto::RSAPrivateKey
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_allstates.cpp23 void CPDF_AllStates::Copy(const CPDF_AllStates& src) { function in class:CPDF_AllStates
H A Dcpdf_color.cpp121 void CPDF_Color::Copy(const CPDF_Color* pSrc) { function in class:CPDF_Color
/external/google-breakpad/src/client/
H A Dminidump_file_writer.h94 // Copy the contents of |str| to a MDString and write it to the file.
114 bool Copy(MDRVA position, const void *src, ssize_t size);
139 // Copy |length| characters from |str| to |mdstring|. These are distinct
180 // Copy |size| bytes starting at |src| into the minidump at |position|
182 bool Copy(MDRVA position, const void *src, size_t size);
184 // Copy |size| bytes from |src| to the current position
185 inline bool Copy(const void *src, size_t size) { function in class:google_breakpad::UntypedMDRVA
186 return Copy(position_, src, size);
245 // Copy |item| to |index|
250 // Copy |siz
[all...]
H A Dminidump_file_writer.cc104 result = mdstring->Copy(str, mdstring->get()->length);
109 // Copy the string character by character
138 // Copy the string character by character
211 if (!mem.Copy(src, mem.size()))
246 bool MinidumpFileWriter::Copy(MDRVA position, const void *src, ssize_t size) { function in class:google_breakpad::MinidumpFileWriter
277 bool UntypedMDRVA::Copy(MDRVA pos, const void *src, size_t size) { function in class:google_breakpad::UntypedMDRVA
281 return writer_->Copy(pos, src, size);
/external/llvm/lib/Target/SystemZ/
H A DSystemZLDCleanup.cpp119 // Insert a Copy from TLSBaseAddrReg to R2.
120 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(), local
127 return Copy;
140 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(), local
144 return Copy;
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.cc48 void ReflectionOps::Copy(const Message& from, Message* to) { function in class:google::protobuf::internal::ReflectionOps
/external/swiftshader/third_party/LLVM/bindings/ocaml/target/
H A Dtarget_ocaml.c35 value Copy = copy_string(StringRep); local
37 return Copy;
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTArray.h46 @brief Copy constructor.
127 // Copy the first half to the new array
134 // Copy last half to the new array
232 // Copy source data to new array
247 @fn Copy
253 void Copy(const CPVRTArray<T2>& other) function in class:CPVRTArray
258 // Copy data
283 Copy(other);
430 // Copy the data. memmove will only work for built-in types.
/external/tensorflow/tensorflow/python/platform/
H A Dgfile.py22 from tensorflow.python.lib.io.file_io import copy as Copy namespace
62 'Copy',
/external/libvpx/libvpx/test/
H A Dconsistency_test.cc92 void Copy(uint8_t *reference, uint8_t *source) { function in class:__anon12661::ConsistencyTestBase
154 Copy(source_data_[1], source_data_[0]);
155 Copy(reference_data_[0], source_data_[0]);
157 Copy(reference_data_[1], source_data_[0]);
174 Copy(source_data_[1], source_data_[0]);
184 Copy(source_data_[1], source_data_[0]);
185 Copy(reference_data_[0], source_data_[0]);
186 Copy(reference_data_[1], source_data_[0]);
191 Copy(reference_data_[1], source_data_[0]);
/external/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp129 getCopyRegClasses(const MachineInstr &Copy, argument
132 unsigned DstReg = Copy.getOperand(0).getReg();
133 unsigned SrcReg = Copy.getOperand(1).getReg();
141 // SrcRC = TRI.getSubRegClass(SrcRC, Copy.getOperand(1).getSubReg());

Completed in 687 milliseconds

123456