Searched defs:destination (Results 26 - 50 of 251) sorted by relevance

1234567891011

/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];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jar ... tools.ant.Task { private String manifest private String destination private org.eclipse.help.search.HelpIndexBuilder
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwPrintDocumentAdapter.java66 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
68 mPdfExporter.exportToPdf(destination, mAttributes, new ValueCallback<Boolean>() {
/external/chromium_org/base/
H A Dtask_runner.cc20 explicit PostTaskAndReplyTaskRunner(TaskRunner* destination);
31 TaskRunner* destination) : destination_(destination) {
30 PostTaskAndReplyTaskRunner( TaskRunner* destination) argument
H A Dtask_runner_util_unittest.cc20 void StoreValue(int* destination, int value) { argument
21 *destination = value;
24 void StoreDoubleValue(double* destination, double value) { argument
25 *destination = value;
/external/chromium_org/chrome/browser/notifications/sync_notifier/
H A Dchrome_notifier_delegate.cc39 GURL destination = GetClickDestination(); local
40 NavigateToUrl(destination);
51 GURL destination = notification->GetButtonUrl(button_index); local
52 NavigateToUrl(destination);
76 void ChromeNotifierDelegate::NavigateToUrl(const GURL& destination) const {
77 if (!destination.is_valid())
81 content::OpenURLParams open_params(destination, content::Referrer(),
/external/chromium_org/content/browser/media/capture/
H A Daudio_mirroring_manager.cc97 MirroringDestination* destination) {
100 DCHECK(destination);
110 sessions_.insert(std::make_pair(target, destination));
114 << " --> MirroringDestination@" << destination; local
117 session_it->second = destination;
122 << " --> MirroringDestination@" << destination; local
125 // Divert audio streams coming from |target| to |destination|. If streams
133 destination->AddInput(diverter->GetAudioParameters()));
139 MirroringDestination* destination) {
143 // Stop mirroring if there is an active session *and* the destination
95 StartMirroring( int render_process_id, int render_view_id, MirroringDestination* destination) argument
137 StopMirroring( int render_process_id, int render_view_id, MirroringDestination* destination) argument
152 << " --> MirroringDestination@" << destination; local
[all...]
/external/chromium_org/media/base/
H A Daudio_pull_fifo.cc21 void AudioPullFifo::Consume(AudioBus* destination, int frames_to_consume) { argument
22 DCHECK_LE(frames_to_consume, destination->frames());
27 int frames_read = ReadFromFifo(destination, remaining_frames_to_provide, 0);
41 ReadFromFifo(destination, remaining_frames_to_provide, write_pos);
49 int AudioPullFifo::ReadFromFifo(AudioBus* destination, argument
58 float* dest = destination->channel(ch) + write_pos;
H A Dmulti_channel_resampler.cc33 // |destination| provided to ProvideInput() directly.
83 float* destination) {
88 wrapped_resampler_audio_bus_->SetChannelData(0, destination);
96 memcpy(destination, wrapped_resampler_audio_bus_->channel(channel),
81 ProvideInput(int channel, int frames, float* destination) argument
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioBasicInspectorNode.cpp54 void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState) argument
60 AudioNode::connect(destination, outputIndex, inputIndex, exceptionState);
H A DWaveShaperProcessor.cpp75 void WaveShaperProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
78 destination->zero();
82 bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size();
92 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
95 destination->zero();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioChannel.cpp92 float* destination = mutableData(); local
98 memset(destination, 0, sizeof(float) * rangeLength);
100 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
H A DAudioFIFO.cpp46 void AudioFIFO::consume(AudioBus* destination, size_t framesToConsume) argument
48 bool isGood = destination && (framesToConsume <= m_fifoLength) && (framesToConsume <= m_framesInFifo) && (destination->length() >= framesToConsume);
53 // Copy the requested number of samples to the destination.
62 float* destinationData = destination->channel(channelIndex)->mutableData();
67 && (part1Length <= destination->length())
68 && (part1Length + part2Length) <= destination->length());
99 float* destination = m_fifoAudioBus->channel(channelIndex)->mutableData(); local
110 memcpy(destination + m_writeIndex, source, part1Length * sizeof(*destination));
[all...]
H A DAudioResampler.cpp102 // Now that we have the source data, resample each channel into the destination bus.
105 float* destination = destinationBus->channel(i)->mutableData(); local
106 m_kernels[i]->process(destination, framesToProcess);
H A DMultiChannelResampler.cpp103 void MultiChannelResampler::process(AudioSourceProvider* provider, AudioBus* destination, size_t framesToProcess) argument
116 destination->channel(channelIndex)->mutableData(),
H A DReverbAccumulationBuffer.cpp48 void ReverbAccumulationBuffer::readAndClear(float* destination, size_t numberOfFrames) argument
62 memcpy(destination, source + m_readIndex, sizeof(float) * numberOfFrames1);
67 memcpy(destination + numberOfFrames1, source, sizeof(float) * numberOfFrames2);
94 float* destination = m_buffer.data(); local
101 vadd(source, 1, destination + writeIndex, 1, destination + writeIndex, 1, numberOfFrames1);
105 vadd(source + numberOfFrames1, 1, destination, 1, destination, 1, numberOfFrames2);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringOperators.h53 void writeTo(LChar* destination) argument
58 adapter1.writeTo(destination);
59 adapter2.writeTo(destination + adapter1.length());
62 void writeTo(UChar* destination) argument
66 adapter1.writeTo(destination);
67 adapter2.writeTo(destination + adapter1.length());
94 void writeTo(LChar* destination) { m_buffer.writeTo(destination); } argument
95 void writeTo(UChar* destination) { m_buffer.writeTo(destination); } argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dbpqether.h16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
15 createLogRecord(String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long tsHeaderValue) argument
22 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DMessageLog.java51 private String destination; field in class:MessageLog
85 String destination,
96 this.destination = destination;
118 String destination,
129 this.destination = destination;
153 + destination
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/pixman/demos/
H A Dcheckerboard.c14 pixman_image_t *destination; local
27 destination = pixman_image_create_bits (PIXMAN_a8r8g8b8,
64 checkerboard, NULL, destination,
68 show_image (destination);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DCommonResources.java109 public static String makeHtmlPageWithSimpleLinkTo(String headers, String destination) { argument
111 "<a href=\"" + destination + "\" id=\"link\">" +
116 public static String makeHtmlPageWithSimpleLinkTo(String destination) { argument
117 return makeHtmlPageWithSimpleLinkTo("", destination);
120 public static String makeHtmlPageWithSimplePostFormTo(String destination) { argument
122 "<form action=\"" + destination + "\" method=\"post\">" +
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_history_provider_service.cc126 int destination,
136 current_pos, destination);
123 MoveStatement( history::AndroidStatement* statement, int current_pos, int destination, CancelableRequestConsumerBase* consumer, const MoveStatementCallback& callback) argument
/external/chromium_org/chrome/browser/history/
H A Dhistory_backend_android.cc97 int destination) {
99 DCHECK_LE(-1, destination);
102 if (current_pos > destination) {
106 for (; cur < destination; ++cur) {
93 MoveStatement( scoped_refptr<MoveStatementRequest> request, history::AndroidStatement* statement, int current_pos, int destination) argument

Completed in 823 milliseconds

1234567891011