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

1 2 3 4 5 6 7

  /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(
  /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/libweave/src/
streams.cc 43 void StreamCopier::Copy(const InputStream::ReadCallback& callback) {
69 Copy(callback);
  /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/java/tests/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/java/tests/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/java/tests/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) {
  /external/chromium-trace/catapult/tracing/tracing/mre/
cloud_storage.py 49 def Copy(src, dst):
  /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_openssl.cc 106 RSAPrivateKey* copy = new RSAPrivateKey();
107 copy->key_ = EVP_PKEY_up_ref(key);
108 return copy;
120 RSAPrivateKey* RSAPrivateKey::Copy() const {
121 scoped_ptr<RSAPrivateKey> copy(new RSAPrivateKey());
125 copy->key_ = EVP_PKEY_new();
126 if (!EVP_PKEY_set1_RSA(copy->key_, rsa.get()))
128 return copy.release();
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/AArch64/
AArch64CleanupLocalDynamicTLSPass.cpp 90 // Replace the TLS_base_addr instruction I with a copy from
97 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the
99 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(),
100 TII->get(TargetOpcode::COPY),
106 return Copy;
110 // inserting a copy instruction after I. Returns the new instruction.
119 // Insert a copy from X0 to TLSBaseAddrReg for later.
120 MachineInstr *Copy =
122 TII->get(TargetOpcode::COPY), *TLSBaseAddrReg)
125 return Copy;
    [all...]
  /external/llvm/unittests/ADT/
BitVectorTest.cpp 89 TypeParam Copy = Vec;
93 EXPECT_TRUE(Copy == Alt);
97 std::swap(Copy, Vec);
  /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);
  /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)
143 # Regular package, just copy
145 Copy(input, body, self._mRecordSize - 2)
  /external/llvm/lib/Target/SystemZ/
SystemZLDCleanup.cpp 112 // Replace the TLS_LDCALL instruction I with a copy from TLSBaseAddrReg,
116 // Insert a Copy from TLSBaseAddrReg to R2.
117 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(),
118 TII->get(TargetOpcode::COPY), SystemZ::R2D)
124 return Copy;
128 // inserting a copy instruction after I. Returns the new instruction.
135 // Insert a copy from R2 to TLSBaseAddrReg.
137 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
138 TII->get(TargetOpcode::COPY), *TLSBaseAddrReg)
141 return Copy;
    [all...]
  /external/lzma/CPP/Windows/
PropVariant.cpp 201 HRESULT CPropVariant::Copy(const PROPVARIANT* pSrc) throw()
267 HRESULT hr = Copy(pSrc);
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 48 void ReflectionOps::Copy(const Message& from, Message* to) {
  /art/runtime/
dex2oat_environment_test.h 6 * You may obtain a copy of the License at
108 static void Copy(const std::string& src, const std::string& dst) {
  /external/google-breakpad/src/client/
minidump_file_writer.cc 104 result = mdstring->Copy(str, mdstring->get()->length);
109 // Copy the string character by character
138 // Copy the string character by character
176 // Set length excluding the NULL and copy the string
211 if (!mem.Copy(src, mem.size()))
246 bool MinidumpFileWriter::Copy(MDRVA position, const void *src, ssize_t size) {
277 bool UntypedMDRVA::Copy(MDRVA pos, const void *src, size_t size) {
281 return writer_->Copy(pos, src, size);
minidump_file_writer.h 94 // Copy the contents of |str| to a MDString and write it to the file.
97 // Maximum |length| of characters to copy from |str|, or specify 0 to use the
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) {
186 return Copy(position_, src, size);
245 // Copy |item| to |index
    [all...]
  /external/regex-re2/re2/
simplify.cc 111 virtual Regexp* Copy(Regexp* re);
154 Regexp* SimplifyWalker::Copy(Regexp* re) {
walker-inl.h 50 // Virtual method called to copy a T,
52 virtual T Copy(T arg);
69 // Like Walk, but doesn't use Copy. This can lead to
112 template<typename T> T Regexp::Walker<T>::Copy(T arg) {
197 s->child_args[s->n] = Copy(s->child_args[s->n - 1]);

Completed in 648 milliseconds

1 2 3 4 5 6 7