HomeSort by relevance Sort by last modified time
    Searched full:destination (Results 126 - 150 of 7124) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/autotest/client/site_tests/security_RootfsStatefulSymlinks/
security_RootfsStatefulSymlinks.py 36 destination = os.readlink(link)
37 if destination != expectations['destination']:
40 link, expectations['destination'], destination)
41 logging.error(utils.system_output("ls -ald '%s'" % destination))
45 # need to determine if the destination exists (and, if not, if
47 if not os.path.exists(destination):
49 link, destination)
53 s = os.stat(destination)
    [all...]
  /external/webrtc/webrtc/common_audio/resampler/
push_sinc_resampler.cc 36 int16_t* destination,
44 FloatS16ToS16(float_buffer_.get(), destination_frames_, destination);
51 float* destination,
74 resampler_->Resample(resampler_->ChunkSize(), destination);
76 resampler_->Resample(destination_frames_, destination);
81 void PushSincResampler::Run(size_t frames, float* destination) {
89 std::memset(destination, 0, frames * sizeof(*destination));
95 std::memcpy(destination, source_ptr_, frames * sizeof(*destination));
    [all...]
sinusoidal_linear_chirp_source.cc 34 void SinusoidalLinearChirpSource::Run(size_t frames, float* destination) {
38 destination[i] = 0;
42 destination[i] = 0;
46 destination[i] =
  /frameworks/base/telecomm/java/android/telecom/
ParcelableConference.java 167 public void writeToParcel(Parcel destination, int flags) {
168 destination.writeParcelable(mPhoneAccount, 0);
169 destination.writeInt(mState);
170 destination.writeInt(mConnectionCapabilities);
171 destination.writeList(mConnectionIds);
172 destination.writeLong(mConnectTimeMillis);
173 destination.writeStrongBinder(
175 destination.writeInt(mVideoState);
176 destination.writeParcelable(mStatusHints, 0);
177 destination.writeBundle(mExtras)
    [all...]
  /external/opencv3/samples/cpp/
cloning_demo.cpp 17 * The program takes as input a source and a destination image (for 1-3 methods)
62 Mat destination = imread(original_path2, IMREAD_COLOR); local
70 if(destination.empty())
72 cout << "Could not load destination image " << original_path2 << endl;
86 seamlessClone(source, destination, mask, p, result, 1);
99 Mat destination = imread(original_path2, IMREAD_COLOR); local
107 if(destination.empty())
109 cout << "Could not load destination image " << original_path2 << endl;
120 p.x = destination.size().width/2;
121 p.y = destination.size().height/2
136 Mat destination = imread(original_path2, IMREAD_COLOR); local
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/photo/seamless_cloning/
cloning_demo.cpp 17 * The program takes as input a source and a destination image (for 1-3 methods)
61 Mat destination = imread(original_path2, IMREAD_COLOR); local
69 if(destination.empty())
71 cout << "Could not load destination image " << original_path2 << endl;
85 seamlessClone(source, destination, mask, p, result, 1);
98 Mat destination = imread(original_path2, IMREAD_COLOR); local
106 if(destination.empty())
108 cout << "Could not load destination image " << original_path2 << endl;
119 p.x = destination.size().width/2;
120 p.y = destination.size().height/2
135 Mat destination = imread(original_path2, IMREAD_COLOR); local
    [all...]
  /external/ceres-solver/docs/source/
CMakeLists.txt 8 DESTINATION share/doc/ceres
  /external/dbus/test/data/valid-messages/
standard-hello.message 13 HEADER_FIELD DESTINATION
standard-list-services.message 13 HEADER_FIELD DESTINATION
  /external/eigen/Eigen/
CMakeLists.txt 16 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen COMPONENT Devel
  /external/google-benchmark/src/
CMakeLists.txt 43 ARCHIVE DESTINATION lib
44 LIBRARY DESTINATION lib
45 RUNTIME DESTINATION bin
50 DESTINATION include
  /external/iptables/extensions/
libxt_iprange.man 7 Match destination IP in the specified range.
  /external/iptables/include/linux/netfilter/
xt_iprange.h 8 IPRANGE_DST = 1 << 1, /* match destination IP address */
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_iprange.h 9 IPRANGE_DST = 1 << 1, /* match destination IP address */
  /external/libweave/src/
streams_unittest.cc 23 MemoryStream destination{{}, &task_runner};
28 [&test_data, &done, &destination](size_t size, ErrorPtr error) {
31 EXPECT_EQ(test_data, destination.GetData());
33 StreamCopier copier{&source, &destination};
  /external/skia/src/core/
SkImageGeneratorPriv.h 17 * the generator. If it succeeds, it will modify destination
23 * installed into destination is destroyed, it will call
27 * @param destination Upon success, this bitmap will be
37 SkBitmap* destination,
  /external/tcpdump/tests/
rpl-14-daovvv.out 1 IP6 (hlim 64, next-header ICMPv6 (58) payload length: 24) fe80::216:3eff:fe11:3424 > ff02::1: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object [dagid:pandora is fun0x0al,seq:1,instance:1,Dagid,40]
rpl-26-senddaovv.out 1 IP6 (hlim 64, next-header ICMPv6 (58) payload length: 24) fe80::216:3eff:fe11:3424 > ff02::1: [icmp6 sum ok] ICMP6, RPL, (CLR)Destination Advertisement Object Ack [dagid:thisismydicedag2,seq:11,instance:43,status:0]
  /external/v8/tools/gyp/test/copies/src/
copies-attribs.gyp 12 'destination': '<(PRODUCT_DIR)',
copies-updir.gyp 12 'destination': '<(PRODUCT_DIR)/../copies-out-updir',
  /external/vogar/src/vogar/tasks/
RetrieveFilesTask.java 43 private void retrieveFiles(File destination, File source, FileFilter filenameFilter)
47 run.log.info("Moving " + file + " to " + destination);
48 run.mkdir.mkdirs(destination);
49 run.target.pull(file, destination);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
resample_input_audio_file.cc 21 int16_t* destination) {
31 destination, samples, output_length),
37 bool ResampleInputAudioFile::Read(size_t samples, int16_t* destination) {
39 return Read(samples, output_rate_hz_, destination);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/
xt_iprange.h 8 IPRANGE_DST = 1 << 1, /* match destination IP address */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_iprange.h 9 IPRANGE_DST = 1 << 1, /* match destination IP address */
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/epiphany/
badpostmod.s 4 ldrd r0,[r1],r2 ; tricky because r1 is implied as destination

Completed in 590 milliseconds

1 2 3 4 56 7 8 91011>>