Searched defs:Copy (Results 26 - 50 of 132) sorted by relevance

123456

/external/lzma/CPP/Windows/
H A DPropVariant.cpp248 HRESULT CPropVariant::Copy(const PROPVARIANT* pSrc) throw() function in class:NWindows::NCOM::CPropVariant
314 HRESULT hr = Copy(pSrc);
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinISelDAGToDAG.cpp168 SDNode *Copy = local
174 UpdateNodeOperand(DAG, *UI, UI.getOperandNo(), SDValue(Copy, 0));
/external/tensorflow/tensorflow/core/util/
H A Dtensor_slice_util.h49 static void Copy(const SrcTensor& s, Shape s_start, Shape len, DstTensor& d, function in struct:tensorflow::__anon26839::CopyThatWorksWithStringPointer
60 static void Copy(const SrcTensor& s, Shape s_start, Shape len, DstTensor& d, function in struct:tensorflow::__anon26839::CopyThatWorksWithStringPointer
97 static void Copy(const SrcTensor& s, Shape s_start, Shape len, DstTensor& d, function in struct:tensorflow::__anon26839::CopyThatWorksWithStringPointer
181 CopyThatWorksWithStringPointer<DstT>::Copy(t_s, s_start, s_len, t_d,
/external/toolchain-utils/automation/common/
H A Dcommand.py172 def Copy(*args, **kwargs): function
/external/v8/src/crankshaft/
H A Dhydrogen-flow-engine.h39 inline NoState* Copy(HBasicBlock* succ, Zone* zone) { function in class:v8::internal::NoState
H A Dhydrogen-removable-simulates.cc94 ? pred_state->Copy(succ_block, pred_block, zone)
139 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) { function in class:v8::internal::State
/external/webrtc/webrtc/p2p/base/
H A Dsessiondescription.cc73 SessionDescription* SessionDescription::Copy() const { function in class:cricket::SessionDescription
75 // Copy all ContentDescriptions.
78 content->description = content->description->Copy();
/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dcloud_storage.py211 def Copy(bucket_from, bucket_to, remote_path_from, remote_path_to): function
212 """Copy a file from one location in CloudStorage to another.
/external/google-breakpad/src/processor/
H A Dbasic_source_line_resolver_unittest.cc71 virtual const CodeModule* Copy() const { function in class:__anon7538::TestCodeModule
H A Dfast_source_line_resolver_unittest.cc82 virtual const CodeModule* Copy() const { function in class:__anon7545::TestCodeModule
H A Dstackwalker_unittest_utils.h117 const google_breakpad::CodeModule *Copy() const { function in class:MockCodeModule
160 const CodeModules *Copy() const { abort(); } // Tests won't use this. function in class:MockCodeModules
/external/google-breakpad/src/testing/include/gmock/internal/
H A Dgmock-internal-utils.h374 // - Copy(raw_container) returns an STL-style container view of a
391 static type Copy(const RawContainer& container) { return container; } function in class:testing::internal::StlContainerView
429 static type Copy(const Element (&array)[N]) {
453 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) { function in class:testing::internal::StlContainerView
/external/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h399 // - Copy(raw_container) returns an STL-style container view of a
416 static type Copy(const RawContainer& container) { return container; } function in class:testing::internal::StlContainerView
455 static type Copy(const Element (&array)[N]) {
478 static type Copy(const ::testing::tuple<ElementPointer, Size>& array) { function in class:testing::internal::StlContainerView
/external/libtextclassifier/util/utf8/
H A Dunicodetext.cc48 void UnicodeText::Repr::Copy(const char* data, int size) { function in class:libtextclassifier2::UnicodeText::Repr
100 UnicodeText::UnicodeText(const UnicodeText& src) { Copy(src); }
107 UnicodeText& UnicodeText::Copy(const UnicodeText& src) { function in class:libtextclassifier2::UnicodeText
108 repr_.Copy(src.repr_.data_, src.repr_.size_);
118 repr_.Copy(buffer, byte_length);
/external/llvm/include/llvm/ADT/
H A DBitVector.h173 BitWord Copy = Bits[WordPos]; local
175 Copy &= ~0UL << BitPos;
177 if (Copy != 0)
178 return WordPos * BITWORD_SIZE + countTrailingZeros(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/llvm/unittests/ADT/
H A DStringMapTest.cpp392 static unsigned Copy; member in struct:__anon14950::__anon14951::CountCtorCopyAndMove
397 CountCtorCopyAndMove(const CountCtorCopyAndMove &) { Copy++; }
399 Copy++;
408 unsigned CountCtorCopyAndMove::Copy = 0; member in class:__anon14950::__anon14951::CountCtorCopyAndMove
423 CountCtorCopyAndMove::Copy = 0; member in class:__anon14950::CountCtorCopyAndMove
431 EXPECT_EQ(0u, CountCtorCopyAndMove::Copy);
/external/skia/src/gpu/
H A DGrSurfaceProxy.cpp292 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context, function in class:GrSurfaceProxy
330 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context, GrSurfaceProxy* src, function in class:GrSurfaceProxy
333 return Copy(context, src, mipMapped, SkIRect::MakeWH(src->width(), src->height()), budgeted);
/external/skqp/src/gpu/
H A DGrSurfaceProxy.cpp264 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context, function in class:GrSurfaceProxy
296 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context, GrSurfaceProxy* src, function in class:GrSurfaceProxy
299 return Copy(context, src, mipMapped, SkIRect::MakeWH(src->width(), src->height()), budgeted);
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DBitVector.h166 BitWord Copy = Bits[WordPos]; local
168 Copy &= ~0L << BitPos;
170 if (Copy != 0) {
172 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
174 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXISelLowering.cpp327 SDValue Copy = DAG.getCopyToReg(Chain, dl, Reg, OutVals[i]/*, Flag*/); local
330 Chain = DAG.getNode(PTXISD::WRITE_PARAM, dl, MVT::Other, Copy, OutReg);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DBitVector.h173 BitWord Copy = Bits[WordPos]; local
175 Copy &= ~0UL << BitPos;
177 if (Copy != 0)
178 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
/external/tensorflow/tensorflow/core/kernels/
H A Dquantized_concat_op.cc40 inline void Copy(T* dst, const T* src, int input_index, size_t n) { function in struct:tensorflow::__anon26554::RequantizeCopier
57 // RequantizeCopier::Copy is called from within a shard of computation, so
H A Dstrided_slice_op.cc47 bool Copy(const Tensor& input, const gtl::InlinedVector<int64, 4>& begin, function in struct:tensorflow::__anon26618::MemCpyFunctor
70 bool Copy(const Tensor& input, const gtl::InlinedVector<int64, 4>& begin, function in struct:tensorflow::__anon26618::MemCpyFunctor
143 if (functor.Copy(input, begin, end, result)) {
/external/v8/src/compiler/
H A Dredundancy-elimination.cc61 RedundancyElimination::EffectPathChecks::Copy(Zone* zone, function in class:v8::internal::compiler::RedundancyElimination::EffectPathChecks
241 EffectPathChecks* checks = EffectPathChecks::Copy(

Completed in 804 milliseconds

123456