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

1 2 3 4

  /frameworks/base/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/base/media/libstagefright/codecs/amrwbenc/src/
util.c 6 ** You may obtain a copy of the License at
20 * Description: Reset and Copy buffer *
45 * Function: Copy() *
47 * Description: Copy vector x[] to y[] *
50 void Copy(
  /external/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/chromium/chrome/browser/sync/syncable/
syncable_id.h 52 Copy(that);
55 Copy(that);
58 inline void Copy(const Id& that) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
invert.h 5 // You may obtain a copy of the License at
71 virtual InvertFst<A> *Copy() const { return new InvertFst(*this); }
closure.h 5 // You may obtain a copy of the License at
113 virtual ClosureFst<A> *Copy() const { return new ClosureFst<A>(*this); }
difference.h 5 // You may obtain a copy of the License at
82 virtual DifferenceFst<A> *Copy() const {
132 nopts.gc_limit = 0; // Cache only the last state for fastest copy.
intersect.h 5 // You may obtain a copy of the License at
73 virtual IntersectFst<A> *Copy() const {
122 nopts.gc_limit = 0; // Cache only the last state for fastest copy.
project.h 5 // You may obtain a copy of the License at
89 virtual ProjectFst<A> *Copy() const { return new ProjectFst(*this); }
concat.h 5 // You may obtain a copy of the License at
124 virtual ConcatFst<A> *Copy() const { return new ConcatFst<A>(*this); }
union.h 5 // You may obtain a copy of the License at
126 virtual UnionFst<A> *Copy() const { return new UnionFst<A>(*this); }
  /frameworks/base/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);
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 35 value Copy = copy_string(StringRep);
37 return Copy;
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 44 void ReflectionOps::Copy(const Message& from, Message* to) {
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 6 * You may obtain a copy of the License at
101 void RingBuffer::Copy(int reader, float* destination, int num_frames) const {
127 Copy(reader, temp_read_buffer_, num_frames);
135 // Otherwise, copy samples from the temp buffer back to the ring buffer.
  /external/chromium/base/win/
scoped_variant.cc 84 VARIANT ScopedVariant::Copy() const {
  /external/chromium/chrome/browser/tabs/
tab_strip_selection_model.cc 137 void TabStripSelectionModel::Copy(const TabStripSelectionModel& source) {
  /external/chromium/sdch/open-vcdiff/src/
encodetable.cc 6 // You may obtain a copy of the License at
127 // opcode 0xA3 (ADD size 1 + COPY size 4 mode 0).
134 // double-instruction opcode (say, COPY size 0 mode 0 + ADD size 0)
135 // followed by the size of the COPY, then by the size of the ADD.
136 // If using the SDCH interleaved format, the address of the COPY instruction
138 // [Compound Opcode][Size of COPY][Address of COPY][Size of ADD]
216 void VCDiffCodeTableWriter::Copy(int32_t offset, size_t size) {
218 LOG(DFATAL) << "VCDiffCodeTableWriter::Copy() called without calling Init()"
  /external/chromium/webkit/glue/
webcursor.cc 34 Copy(other);
42 Copy(other);
160 void WebCursor::Copy(const WebCursor& other) {
  /external/llvm/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 166 // We cannot copy CC <-> !(CC/D)
168 SDNode *Copy =
174 UpdateNodeOperand(DAG, *UI, UI.getOperandNo(), SDValue(Copy, 0));
  /external/chromium/net/base/
address_list.cc 117 void AddressList::Copy(const struct addrinfo* head, bool recursive) {
162 // Otherwise we need to make a copy in order to change the port number.
163 Copy(src.head(), true);
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-internal-utils.h 371 // - Copy(raw_container) returns an STL-style container view of a
372 // copy of raw_container, which is a RawContainer.
388 static type Copy(const RawContainer& container) { return container; }
426 static type Copy(const Element (&array)[N]) {
450 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) {
  /external/chromium/third_party/libjingle/source/talk/base/
cryptstring.h 45 virtual CryptStringImpl * Copy() const = 0;
59 virtual CryptStringImpl * Copy() const { return new EmptyCryptStringImpl(); }
70 CryptString(const CryptString & other) : impl_(other.impl_->Copy()) {}
71 explicit CryptString(const CryptStringImpl & impl) : impl_(impl.Copy()) {}
74 impl_.reset(other.impl_->Copy());
183 virtual CryptStringImpl * Copy() const {
184 InsecureCryptStringImpl * copy = new InsecureCryptStringImpl; local
185 copy->password() = password_;
186 return copy;
  /external/clang/lib/Sema/
TypeLocBuilder.h 60 /// Pushes a copy of the given TypeLoc onto this builder. The builder
64 TypeLoc Copy = pushFullUninitializedImpl(L.getType(), Size);
65 memcpy(Copy.getOpaqueData(), L.getOpaqueData(), Size);
156 // Allocate the new buffer and copy the old data into it.

Completed in 626 milliseconds

1 2 3 4