HomeSort by relevance Sort by last modified time
    Searched defs:Copy (Results 1 - 25 of 209) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
copy.cpp 6 * You may obtain a copy of the License at
37 * File : copy.h
47 #include "copy.h"
66 * FUNCTION: Copy
68 * PURPOSE: Copy vector x[] to y[]
75 * Function : Copy
76 * Purpose : Copy vector x[] to y[]
80 void Copy(
  /external/pdfium/core/fxge/ge/
cfx_graphstatedata.cpp 23 Copy(src);
26 void CFX_GraphStateData::Copy(const CFX_GraphStateData& src) {
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
util.c 6 ** You may obtain a copy of the License at
20 * Description: Reset and Copy buffer *
46 * Function: Copy() *
48 * Description: Copy vector x[] to y[] *
51 void Copy(
  /external/swiftshader/third_party/LLVM/unittests/ADT/
BitVectorTest.cpp 79 BitVector Copy = Vec;
83 EXPECT_TRUE(Copy == Alt);
87 std::swap(Copy, Vec);
SmallBitVectorTest.cpp 76 SmallBitVector Copy = Vec;
80 EXPECT_TRUE(Copy == Alt);
84 std::swap(Copy, Vec);
  /external/webrtc/webrtc/base/
cryptstring.cc 29 CryptStringImpl* EmptyCryptStringImpl::Copy() const {
41 : impl_(other.impl_->Copy()) {
44 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) {
63 CryptStringImpl* InsecureCryptStringImpl::Copy() const {
64 InsecureCryptStringImpl* copy = new InsecureCryptStringImpl; local
65 copy->password() = password_;
66 return copy;
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Copy.java 6 * You may obtain a copy of the License at
29 public class Copy extends TestBase {
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Copy.java 6 * You may obtain a copy of the License at
24 public class Copy extends TestBase {
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Copy.java 6 * You may obtain a copy of the License at
29 public class Copy extends TestBase {
  /art/compiler/utils/
dedupe_set_test.cc 6 * You may obtain a copy of the License at
45 const std::vector<uint8_t>* Copy(const ArrayRef<const uint8_t>& src) {
  /build/soong/ui/build/
environment.go 5 // You may obtain a copy of the License at
36 // It's equivalent to the os.LookupEnv function, but with this copy of the
71 // Copy returns a copy of the Environment so that independent changes may be made.
72 func (e *Environment) Copy() *Environment {
  /external/google-breakpad/src/processor/
basic_code_modules.cc 63 // Make a copy of the module and insert it into the map. Use
68 that->GetModuleAtIndex(module_sequence)->Copy());
124 const CodeModules* BasicCodeModules::Copy() const {
basic_code_module.h 54 // implementation. This is useful to make a copy of the data relevant to
91 virtual const CodeModule* Copy() const { return new BasicCodeModule(this); }
102 // Disallow copy constructor and assignment operator.
  /external/llvm/lib/Target/AArch64/
AArch64CleanupLocalDynamicTLSPass.cpp 93 // Replace the TLS_base_addr instruction I with a copy from
100 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the
102 MachineInstr *Copy = BuildMI(*I.getParent(), I, I.getDebugLoc(),
103 TII->get(TargetOpcode::COPY), AArch64::X0)
109 return Copy;
113 // inserting a copy instruction after I. Returns the new instruction.
122 // Insert a copy from X0 to TLSBaseAddrReg for later.
123 MachineInstr *Copy =
125 TII->get(TargetOpcode::COPY), *TLSBaseAddrReg)
128 return Copy;
    [all...]
AArch64CallLowering.cpp 45 MachineInstr *Copy =
46 MIRBuilder.buildInstr(TargetOpcode::COPY, ResReg, VReg);
47 (void)Copy;
48 assert(Copy->getNextNode() == Return &&
85 MIRBuilder.buildInstr(TargetOpcode::COPY, VRegs[i], VA.getLocReg());
  /external/llvm/unittests/ADT/
BitVectorTest.cpp 89 TypeParam Copy = Vec;
93 EXPECT_TRUE(Copy == Alt);
97 std::swap(Copy, Vec);
  /external/pdfium/core/fpdfapi/page/
cpdf_allstates.cpp 31 void CPDF_AllStates::Copy(const CPDF_AllStates& src) {
cpdf_color.cpp 109 void CPDF_Color::Copy(const CPDF_Color* pSrc) {
  /external/pdfium/fpdfsdk/javascript/
JS_KeyValue.cpp 13 void CJS_GlobalVariableArray::Copy(const CJS_GlobalVariableArray& array) {
43 pNewObjData->objData.Copy(pOldObjData->objData);
  /frameworks/av/media/libstagefright/codecs/common/include/
voMem.h 6 ** You may obtain a copy of the License at
46 VO_U32 (VO_API * Copy) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
  /frameworks/base/tools/aapt2/io/
Util.cpp 6 * You may obtain a copy of the License at
76 bool Copy(OutputStream* out, InputStream* in) {
  /art/tools/
stream-trace-converter.py 7 # You may obtain a copy of the License at
63 def Copy(input, output, length):
99 # copy startWhen
100 Copy(input, body, 8)
112 Copy(input, body, offsetToData)
151 # Regular package, just copy
153 Copy(input, body, self._mRecordSize - 2)
165 # Copy the lines from the input summary to the output header until
  /external/libchrome/crypto/
rsa_private_key_nss.cc 96 RSAPrivateKey* copy = new RSAPrivateKey();
97 copy->key_ = SECKEY_CopyPrivateKey(key);
98 copy->public_key_ = SECKEY_ConvertToPublicKey(key);
99 if (!copy->key_ || !copy->public_key_) {
101 delete copy;
104 return copy;
107 RSAPrivateKey* RSAPrivateKey::Copy() const {
108 RSAPrivateKey* copy = new RSAPrivateKey(); local
109 copy->key_ = SECKEY_CopyPrivateKey(key_)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZLDCleanup.cpp 115 // Replace the TLS_LDCALL instruction I with a copy from TLSBaseAddrReg,
119 // Insert a Copy from TLSBaseAddrReg to R2.
120 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(),
121 TII->get(TargetOpcode::COPY), SystemZ::R2D)
127 return Copy;
131 // inserting a copy instruction after I. Returns the new instruction.
138 // Insert a copy from R2 to TLSBaseAddrReg.
140 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
141 TII->get(TargetOpcode::COPY), *TLSBaseAddrReg)
144 return Copy;
    [all...]
  /external/lzma/CPP/Windows/
PropVariant.cpp 201 HRESULT CPropVariant::Copy(const PROPVARIANT* pSrc) throw()
267 HRESULT hr = Copy(pSrc);

Completed in 408 milliseconds

1 2 3 4 5 6 7 8 9