Searched refs:Copy (Results 26 - 50 of 338) sorted by relevance

1234567891011>>

/external/valgrind/none/tests/s390x/
H A Dexrl.stdout.exp1 ------- Copy 10+1 bytes from buffer to target
H A Dmvc.stdout.exp1 ------- Copy 17 bytes from BUFFER to TARGET
/external/libtextclassifier/util/utf8/
H A Dunicodetext.cc35 void UnicodeText::Repr::Copy(const char* data, int size) { function in class:libtextclassifier::UnicodeText::Repr
87 UnicodeText::UnicodeText(const UnicodeText& src) { Copy(src); }
89 UnicodeText& UnicodeText::Copy(const UnicodeText& src) { function in class:libtextclassifier::UnicodeText
90 repr_.Copy(src.repr_.data_, src.repr_.size_);
100 repr_.Copy(buffer, byte_length);
H A Dunicodetext.h144 UnicodeText& Copy(const UnicodeText& src);
175 void Copy(const char* data, int size);
/external/pdfium/xfa/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256Poly.cpp56 m_coefficients.Copy(*(m_field->GetZero()->GetCoefficients()));
64 m_coefficients.Copy(*coefficients);
114 smallerCoefficients.Copy(m_coefficients);
116 largerCoefficients.Copy(*(other->GetCoefficients()));
119 temp.Copy(smallerCoefficients);
120 smallerCoefficients.Copy(largerCoefficients);
121 largerCoefficients.Copy(temp);
147 aCoefficients.Copy(m_coefficients);
150 bCoefficients.Copy(*(other->GetCoefficients()));
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DSmallBitVector.h372 SmallBitVector Copy = RHS; local
373 Copy.resize(size());
374 getPointer()->operator&=(*Copy.getPointer());
386 SmallBitVector Copy = RHS; local
387 Copy.resize(size());
388 getPointer()->operator|=(*Copy.getPointer());
400 SmallBitVector Copy = RHS; local
401 Copy.resize(size());
402 getPointer()->operator^=(*Copy.getPointer());
/external/llvm/lib/Target/AArch64/
H A DAArch64CallLowering.cpp45 MachineInstr *Copy = local
47 (void)Copy;
48 assert(Copy->getNextNode() == Return &&
/external/pdfium/xfa/fxbarcode/pdf417/
H A DBC_PDF417Writer.cpp68 originalScale.Copy(barcodeMatrix->getScaledMatrix(
92 originalScale.Copy(barcodeMatrix->getScaledMatrix(
109 temp.Copy(bitarray);
H A DBC_PDF417BarcodeMatrix.cpp72 bytearray.Copy(m_matrix[0]->getScaledRow(xScale));
80 bytearray.Copy(m_matrix[i / yScale]->getScaledRow(xScale));
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DJSystem.cs62 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
/external/google-breakpad/src/processor/
H A Dbasic_code_modules.h57 // made of each contained CodeModule using CodeModule::Copy.
68 virtual const CodeModules* Copy() const;
/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
H A DByteString.cs162 ByteArray.Copy(bytes, offset, portion, 0, count);
334 ByteArray.Copy(bytes, 0, array, position, bytes.Length);
/external/webrtc/talk/media/base/
H A Dvideoframefactory.cc75 return output_frame_->Copy();
/external/webrtc/webrtc/base/
H A Dcryptstring.h30 virtual CryptStringImpl * Copy() const = 0;
40 CryptStringImpl* Copy() const override;
54 impl_.reset(other.impl_->Copy());
160 CryptStringImpl* Copy() const override;
/external/pdfium/fpdfsdk/javascript/
H A DJS_KeyValue.cpp13 void CJS_GlobalVariableArray::Copy(const CJS_GlobalVariableArray& array) { function in class:CJS_GlobalVariableArray
43 pNewObjData->objData.Copy(pOldObjData->objData);
/external/swiftshader/third_party/LLVM/bindings/ocaml/target/
H A Dtarget_ocaml.c35 value Copy = copy_string(StringRep); local
37 return Copy;
/external/webrtc/webrtc/api/objc/
H A DRTCVideoFrame.mm74 _videoFrame.reset(nativeFrame->Copy());
/external/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp1 //===- MachineCopyPropagation.cpp - Machine Copy Propagation Pass ---------===//
65 bool eraseIfRedundant(MachineInstr &Copy, unsigned Src, unsigned Def);
82 "Machine Copy Propagation Pass", false, false)
143 /// Remove instruction \p Copy if there exists a previous copy that copies the
146 bool MachineCopyPropagation::eraseIfRedundant(MachineInstr &Copy, unsigned Src, argument
163 DEBUG(dbgs() << "MCP: copy is a NOP, removing: "; Copy.dump());
165 // Copy was redundantly redefining either Src or Def. Remove earlier kill
166 // flags between Copy and PrevCopy because the value will be reused now.
167 assert(Copy.isCopy());
168 unsigned CopyDef = Copy
[all...]
/external/protobuf/csharp/src/Google.Protobuf/Collections/
H A DRepeatedField.cs219 Array.Copy(array, 0, tmp, 0, array.Length);
264 Array.Copy(this.array, 0, array, arrayIndex, count);
279 Array.Copy(array, index + 1, array, index, count - index - 1);
309 Array.Copy(values.array, 0, array, count, values.count);
452 Array.Copy(array, index, array, index + 1, count - index);
467 Array.Copy(array, index + 1, array, index, count - index - 1);
520 Array.Copy(this.array, 0, array, index, count);
/external/llvm/unittests/ADT/
H A DDenseMapTest.cpp346 static int Copy; member in struct:__anon13689::__anon13690::CountCopyAndMove
349 CountCopyAndMove(const CountCopyAndMove &) { Copy++; }
351 Copy++;
360 int CountCopyAndMove::Copy = 0; member in class:__anon13689::__anon13690::CountCopyAndMove
377 CountCopyAndMove::Copy = 0; member in class:__anon13689::CountCopyAndMove
388 EXPECT_EQ(0, CountCopyAndMove::Copy);
401 EXPECT_EQ(0, CountCopyAndMove::Copy);
415 CountCopyAndMove::Copy = 0; member in class:__anon13689::CountCopyAndMove
426 EXPECT_EQ(0, CountCopyAndMove::Copy);
439 CountCopyAndMove::Copy member in class:__anon13689::CountCopyAndMove
459 CountCopyAndMove::Copy = 0; member in class:__anon13689::CountCopyAndMove
[all...]
/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h414 SmallBitVector Copy = RHS; local
415 Copy.resize(size());
416 getPointer()->operator&=(*Copy.getPointer());
461 SmallBitVector Copy = RHS; local
462 Copy.resize(size());
463 getPointer()->operator|=(*Copy.getPointer());
475 SmallBitVector Copy = RHS; local
476 Copy.resize(size());
477 getPointer()->operator^=(*Copy.getPointer());
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DAliasAnalysis.h116 Location Copy(*this);
117 Copy.Ptr = NewPtr;
118 return Copy;
122 Location Copy(*this);
123 Copy.Size = NewSize;
124 return Copy;
128 Location Copy(*this);
129 Copy.TBAATag = 0;
130 return Copy;
/external/google-breakpad/src/client/
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/chromium-trace/catapult/dependency_manager/dependency_manager/
H A Duploader.py60 cloud_storage.Copy(self._cs_bucket, self._cs_bucket,
92 cloud_storage.Copy(self._cs_bucket, self._cs_bucket, self._cs_backup_path,

Completed in 1765 milliseconds

1234567891011>>