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

1 23 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXISelLowering.cpp 327 SDValue Copy = DAG.getCopyToReg(Chain, dl, Reg, OutVals[i]/*, Flag*/);
330 Chain = DAG.getNode(PTXISD::WRITE_PARAM, dl, MVT::Other, Copy, OutReg);
  /external/tensorflow/tensorflow/core/kernels/
strided_slice_op.cc 5 You may obtain a copy of the License at
46 // Returns true if the copy was made with memcpy, false otherwise.
47 bool Copy(const Tensor& input, const gtl::InlinedVector<int64, 4>& begin,
70 bool Copy(const Tensor& input, const gtl::InlinedVector<int64, 4>& begin,
143 if (functor.Copy(input, begin, end, result)) {
  /external/v8/src/compiler/
redundancy-elimination.cc 61 RedundancyElimination::EffectPathChecks::Copy(Zone* zone,
239 // Make a copy of the first input's checks and merge with the checks
241 EffectPathChecks* checks = EffectPathChecks::Copy(
  /external/v8/src/crankshaft/
hydrogen-flow-engine.h 39 inline NoState* Copy(HBasicBlock* succ, Zone* zone) {
  /external/v8/testing/gmock/include/gmock/internal/
gmock-internal-utils.h 352 // other types. Useful for saving a copy of a function argument.
400 // - Copy(raw_container) returns an STL-style container view of a
401 // copy of raw_container, which is a RawContainer.
417 static type Copy(const RawContainer& container) { return container; }
456 static type Copy(const Element (&array)[N]) {
479 static type Copy(const ::testing::tuple<ElementPointer, Size>& array) {
  /external/webrtc/talk/media/webrtc/
webrtcvideoframe.cc 151 VideoFrame* WebRtcVideoFrame::Copy() const {
164 // Not exclusive already, need to copy buffer.
269 // making a redundant copy.
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
profile.go 5 // You may obtain a copy of the License at
501 // Copy ignored units into more readable format
739 // Copy makes a fully independent copy of a profile.
740 func (p *Profile) Copy() *Profile {
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
profile.go 445 pb = pb.Copy()
528 // Copy makes a fully independent copy of a profile.
529 func (p *Profile) Copy() *Profile {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
profile.go 5 // You may obtain a copy of the License at
501 // Copy ignored units into more readable format
739 // Copy makes a fully independent copy of a profile.
740 func (p *Profile) Copy() *Profile {
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/
profile.go 445 pb = pb.Copy()
528 // Copy makes a fully independent copy of a profile.
529 func (p *Profile) Copy() *Profile {
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
Copy.java 52 public class Copy {
63 * Copy source file to target location. If {@code prompt} is true then
73 Files.copy(source, target, options);
75 System.err.format("Unable to copy: %s: %s%n", source, x);
98 // before visiting entries in a directory we copy the directory
105 Files.copy(dir, newdir, options);
131 System.err.format("Unable to copy all attributes to: %s: %s%n", newdir, x);
142 System.err.format("Unable to copy: %s: %s%n", file, exc);
149 System.err.println("java Copy [-ip] source... target");
150 System.err.println("java Copy -r [-ip] source-dir... target")
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
Copy.java 52 public class Copy {
63 * Copy source file to target location. If {@code prompt} is true then
73 Files.copy(source, target, options);
75 System.err.format("Unable to copy: %s: %s%n", source, x);
98 // before visiting entries in a directory we copy the directory
105 Files.copy(dir, newdir, options);
131 System.err.format("Unable to copy all attributes to: %s: %s%n", newdir, x);
142 System.err.format("Unable to copy: %s: %s%n", file, exc);
149 System.err.println("java Copy [-ip] source... target");
150 System.err.println("java Copy -r [-ip] source-dir... target")
    [all...]
  /art/compiler/driver/
compiled_method_storage.cc 6 * You may obtain a copy of the License at
41 std::copy(array.begin(), array.end(), array_copy->begin());
152 const LengthPrefixedArray<T>* Copy(const ArrayRef<const T>& array) {
  /art/compiler/utils/arm/
jni_macro_assembler_arm_vixl.cc 6 * You may obtain a copy of the License at
408 void ArmVIXLJNIMacroAssembler::Copy(FrameOffset dest,
428 void ArmVIXLJNIMacroAssembler::Copy(FrameOffset dest ATTRIBUTE_UNUSED,
436 void ArmVIXLJNIMacroAssembler::Copy(ManagedRegister dest_base ATTRIBUTE_UNUSED,
444 void ArmVIXLJNIMacroAssembler::Copy(FrameOffset dst ATTRIBUTE_UNUSED,
452 void ArmVIXLJNIMacroAssembler::Copy(ManagedRegister dest ATTRIBUTE_UNUSED,
461 void ArmVIXLJNIMacroAssembler::Copy(FrameOffset dst ATTRIBUTE_UNUSED,
  /art/compiler/utils/x86/
jni_macro_assembler_x86.cc 6 * You may obtain a copy of the License at
348 void X86JNIMacroAssembler::Copy(FrameOffset dest, FrameOffset src,
363 void X86JNIMacroAssembler::Copy(FrameOffset /*dst*/,
371 void X86JNIMacroAssembler::Copy(ManagedRegister dest_base,
382 void X86JNIMacroAssembler::Copy(FrameOffset dest,
394 void X86JNIMacroAssembler::Copy(ManagedRegister dest,
406 void X86JNIMacroAssembler::Copy(FrameOffset dest,
  /art/compiler/utils/x86_64/
jni_macro_assembler_x86_64.cc 6 * You may obtain a copy of the License at
398 void X86_64JNIMacroAssembler::Copy(FrameOffset dest,
414 void X86_64JNIMacroAssembler::Copy(FrameOffset /*dst*/,
422 void X86_64JNIMacroAssembler::Copy(ManagedRegister dest_base,
433 void X86_64JNIMacroAssembler::Copy(FrameOffset dest,
445 void X86_64JNIMacroAssembler::Copy(ManagedRegister dest,
457 void X86_64JNIMacroAssembler::Copy(FrameOffset dest,
  /art/libartbase/base/
bit_vector.cc 6 * You may obtain a copy of the License at
59 Copy(&src);
290 void BitVector::Copy(const BitVector *src) {
291 // Get highest bit set, we only need to copy till then.
300 // Set upper bit to ensure right size before copy.
  /art/libartbase/base/unix_file/
fd_file.cc 6 * You may obtain a copy of the License at
28 // Includes needed for FdFile::Copy().
309 bool FdFile::Copy(FdFile* input_file, int64_t offset, int64_t size) {
  /art/runtime/dex/
art_dex_file_loader_test.cc 6 * You may obtain a copy of the License at
40 static void Copy(const std::string& src, const std::string& dst) {
320 Copy(GetTestDexFileName("Main"), data_location_path);
348 Copy(GetTestDexFileName("Main"), system_location_path);
376 Copy(GetTestDexFileName("Main"), system_framework_location_path);
404 Copy(GetTestDexFileName("MultiDex"), data_multi_location_path);
433 Copy(GetTestDexFileName("MultiDex"), system_multi_location_path);
462 Copy(GetTestDexFileName("MultiDex"), system_framework_multi_location_path);
  /build/soong/cc/
builder.go 5 // You may obtain a copy of the License at
275 func (a Objects) Copy() Objects {
865 Description: "copy gcc library " + libName,
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellParametersProtocol.c 135 // Add a CHAR_NULL if we didnt get one via the copy
410 // copy from the existing ones
572 CHAR16 *Copy;
580 Copy = FileName+1;
581 if ((TempLocation = StrStr(Copy , L"\"")) != NULL) {
585 Copy = FileName;
586 while(Copy[0] == L' ') {
587 Copy++;
589 if ((TempLocation = StrStr(Copy , L" ")) != NULL) {
594 if (Copy[0] == CHAR_NULL) {
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 133 gsutil_env = os.environ.copy()
211 def Copy(bucket_from, bucket_to, remote_path_from, remote_path_to):
212 """Copy a file from one location in CloudStorage to another.
405 if there is no local copy of file_path, but there is a hash file for it.
465 there is no local copy.
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 175 auto Copy = *this;
176 Copy.SupportedKind = Kind;
177 Copy.RestrictKind =
179 return Copy;
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 233 char *Copy = (char *)COMPILER_RT_ALLOCA(Length + 1);
234 strncpy(Copy, Filename, Length + 1);
235 __llvm_profile_recursive_mkdir(Copy);
  /external/google-breakpad/src/processor/
basic_source_line_resolver_unittest.cc 71 virtual const CodeModule* Copy() const {

Completed in 1726 milliseconds

1 23 4 5 6 7 8 91011>>