Searched defs:destination (Results 1 - 25 of 263) sorted by relevance

1234567891011

/external/chromium_org/net/disk_cache/
H A Dcache_util_posix.cc23 LOG(ERROR) << "Unable to create destination cache directory.";
30 base::FilePath destination = to_path.Append(name.BaseName()); local
31 if (!base::Move(name, destination)) {
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecASCIIFastPath.h36 static void copy(LChar* destination, const uint8_t* source) argument
38 memcpy(destination, source, 4);
41 static void copy(UChar* destination, const uint8_t* source) argument
43 destination[0] = source[0];
44 destination[1] = source[1];
45 destination[2] = source[2];
46 destination[3] = source[3];
50 static void copy(LChar* destination, const uint8_t* source) argument
52 memcpy(destination, source, 8);
55 static void copy(UChar* destination, cons argument
68 copyASCIIMachineWord(LChar* destination, const uint8_t* source) argument
73 copyASCIIMachineWord(UChar* destination, const uint8_t* source) argument
[all...]
H A DStringConcatenate.cpp16 void WTF::StringTypeAdapter<char*>::writeTo(LChar* destination) argument
19 destination[i] = static_cast<LChar>(m_buffer[i]);
22 void WTF::StringTypeAdapter<char*>::writeTo(UChar* destination) argument
26 destination[i] = c;
36 void WTF::StringTypeAdapter<LChar*>::writeTo(LChar* destination) argument
38 memcpy(destination, m_buffer, m_length * sizeof(LChar));
41 void WTF::StringTypeAdapter<LChar*>::writeTo(UChar* destination) argument
43 StringImpl::copyChars(destination, m_buffer, m_length);
58 void WTF::StringTypeAdapter<const UChar*>::writeTo(UChar* destination) argument
60 memcpy(destination, m_buffe
69 writeTo(LChar* destination) argument
74 writeTo(UChar* destination) argument
88 writeTo(LChar* destination) argument
93 writeTo(UChar* destination) argument
98 writeTo(LChar* destination) argument
104 writeTo(UChar* destination) argument
110 writeTo(LChar* destination) argument
116 writeTo(UChar* destination) argument
122 writeTo(LChar* destination) argument
134 writeTo(UChar* destination) argument
[all...]
/external/chromium_org/cloud_print/service/win/
H A Dservice_utils.cc51 void CopyChromeSwitchesFromCurrentProcess(CommandLine* destination) { argument
61 destination->CopySwitchesFrom(*CommandLine::ForCurrentProcess(),
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup.cc50 logging::LoggingDestination destination = logging::LOG_TO_FILE; local
52 logging::LoggingDestination destination = local
62 settings.logging_dest = destination;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
H A DNEONHelpers.h44 inline void storeFloatAsRGBA8(float32x4_t data, uint32_t* destination) argument
48 *destination = vget_lane_u32(vreinterpret_u32_u8(temporary2), 0);
/external/chromium_org/third_party/webrtc/base/
H A Dsocketaddresspair.h18 // Records a pair (source,destination) of socket addresses. The two addresses
27 const SocketAddress& destination() const { return dest_; } function in class:rtc::SocketAddressPair
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_test_util.cc23 void ExternalDataFetchCallback(scoped_ptr<std::string>* destination, argument
26 *destination = data.Pass();
/external/chromium_org/chrome/utility/media_galleries/
H A Dipc_data_source.h50 uint8* destination; member in struct:metadata::IPCDataSource::Request
/external/chromium_org/media/base/
H A Dsinc_resampler_perftest.cc21 static void DoNothing(int frames, float* destination) {} argument
/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.cc15 FileNetLogObserver::FileNetLogObserver(FILE* destination) argument
16 : destination_(destination) {
17 DCHECK(destination != NULL);
/external/chromium_org/ppapi/thunk/
H A Dppb_video_destination_private_thunk.cc33 int32_t Open(PP_Resource destination, argument
36 EnterResource<PPB_VideoDestination_Private_API> enter(destination,
43 int32_t PutFrame(PP_Resource destination, argument
45 EnterResource<PPB_VideoDestination_Private_API> enter(destination, true);
51 void Close(PP_Resource destination) { argument
52 EnterResource<PPB_VideoDestination_Private_API> enter(destination, true);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DChannelSplitterNode.cpp67 AudioBus* destination = output(i)->bus(); local
68 ASSERT(destination);
73 destination->channel(0)->copyFrom(source->channel(i));
75 // Only bother zeroing out the destination if it's connected to anything
76 destination->zero();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioPullFIFO.cpp45 void AudioPullFIFO::consume(AudioBus* destination, size_t framesToConsume) argument
47 if (!destination)
55 m_fifo.consume(destination, framesToConsume);
H A DZeroPole.cpp39 void ZeroPole::process(const float *source, float *destination, unsigned framesToProcess) argument
63 *destination++ = output2;
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc56 WritableFontDataPtr destination = new WritableFontData(destination_array); local
58 int32_t length = source->CopyTo(destination);
/external/chromium_org/third_party/skia/src/opts/
H A DSkBlitRect_opts_SSE2.cpp16 static void BlitRect32_OpaqueNarrow_SSE2(SkPMColor* SK_RESTRICT destination, argument
24 SkPMColor* dst = destination;
40 destination = (uint32_t*)((char*)destination + rowBytes);
50 static void BlitRect32_OpaqueWide_SSE2(SkPMColor* SK_RESTRICT destination, argument
61 SkPMColor* dst = destination;
109 destination = (uint32_t*)((char*)destination + rowBytes);
113 void ColorRect32_SSE2(SkPMColor* destination, argument
123 BlitRect32_OpaqueNarrow_SSE2(destination, widt
[all...]
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dpush_sinc_resampler.cc35 int16_t* destination,
43 RoundToInt16(float_buffer_.get(), destination_frames_, destination);
50 float* destination,
73 resampler_->Resample(resampler_->ChunkSize(), destination);
75 resampler_->Resample(destination_frames_, destination);
80 void PushSincResampler::Run(int frames, float* destination) { argument
88 memset(destination, 0, frames * sizeof(float));
94 memcpy(destination, source_ptr_, frames * sizeof(float));
97 destination[i] = static_cast<float>(source_ptr_int_[i]);
33 Resample(const int16_t* source, int source_length, int16_t* destination, int destination_capacity) argument
48 Resample(const float* source, int source_length, float* destination, int destination_capacity) argument
H A Dsinusoidal_linear_chirp_source.cc32 void SinusoidalLinearChirpSource::Run(int frames, float* destination) { argument
36 destination[i] = 0;
42 destination[i] = 0;
45 destination[i] =
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dinput_audio_file.cc22 bool InputAudioFile::Read(size_t samples, int16_t* destination) { argument
26 size_t samples_read = fread(destination, sizeof(int16_t), samples, fp_);
31 if (fread(destination, sizeof(int16_t), missing_samples, fp_) <
42 int16_t* destination) {
43 // Start from the end of |source| and |destination|, and work towards the
45 // |source| and |destination| are the same array).
48 destination[i * channels + j] = source[i];
40 DuplicateInterleaved(const int16_t* source, size_t samples, size_t channels, int16_t* destination) argument
/external/chromium_org/tools/cygprofile/
H A Dcygprofile_unittest.cc20 void FlushEntries(std::vector<LogEntry>* destination, argument
22 CHECK_EQ(0U, destination->size());
23 // Move the provided |entries| vector to the provided |destination| so that
25 destination->swap(*entries);
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java20 * @param destination -- host:port of the destination of the message.
34 String destination, long timeStamp, boolean isSender,
33 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc56 WritableFontDataPtr destination = new WritableFontData(destination_array); local
58 int32_t length = source->CopyTo(destination);
/external/skia/src/opts/
H A DSkBlitRect_opts_SSE2.cpp16 static void BlitRect32_OpaqueNarrow_SSE2(SkPMColor* SK_RESTRICT destination, argument
24 SkPMColor* dst = destination;
40 destination = (uint32_t*)((char*)destination + rowBytes);
50 static void BlitRect32_OpaqueWide_SSE2(SkPMColor* SK_RESTRICT destination, argument
61 SkPMColor* dst = destination;
109 destination = (uint32_t*)((char*)destination + rowBytes);
113 void ColorRect32_SSE2(SkPMColor* destination, argument
123 BlitRect32_OpaqueNarrow_SSE2(destination, widt
[all...]
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs61 public int Get(byte[] destination, int offset, int count) argument
65 destination[offset + i] = _buffer[(_head+i) % _capacity];

Completed in 648 milliseconds

1234567891011