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

1 2 3 4 5 6 7 8 91011>>

  /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/
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/pdfium/fxjs/
cjs_globalvariablearray.cpp 15 void CJS_GlobalVariableArray::Copy(const CJS_GlobalVariableArray& array) {
45 pNewObjData->objData.Copy(pOldObjData->objData);
  /external/tensorflow/tensorflow/core/kernels/
concat_lib_cpu.cc 5 You may obtain a copy of the License at
28 inline void Copy(T* dst, const T* src, int input_index, size_t n) {
40 inline void Copy(ResourceHandle* dst, const ResourceHandle* src,
  /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
83 // Copy returns a copy of the Environment so that independent changes may be made.
84 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/libchrome/crypto/
rsa_private_key.cc 63 std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey);
65 copy->key_.reset(key);
66 return copy;
73 std::unique_ptr<RSAPrivateKey> RSAPrivateKey::Copy() const {
74 std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey);
78 copy->key_.reset(EVP_PKEY_new());
79 if (!EVP_PKEY_set1_RSA(copy->key_.get(), rsa.get()))
81 return copy;
  /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 23 void CPDF_AllStates::Copy(const CPDF_AllStates& src) {
  /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
85 bool Copy(OutputStream* out, InputStream* in) {
103 bool Copy(OutputStream* out, const StringPiece& in) {
122 bool Copy(ZeroCopyOutputStream* out, InputStream* in) {
124 return Copy(&adaptor, 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/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 248 HRESULT CPropVariant::Copy(const PROPVARIANT* pSrc) throw()
314 HRESULT hr = Copy(pSrc);

Completed in 1003 milliseconds

1 2 3 4 5 6 7 8 91011>>