Searched refs:destination (Results 51 - 75 of 539) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DASCIIFastPath.h105 inline void copyLCharsFromUCharSource(LChar* destination, const UChar* source, size_t length) argument
114 destination[i] = static_cast<LChar>(source[i]);
129 _mm_storeu_si128(reinterpret_cast<__m128i*>(&destination[i]), packedChars);
135 destination[i] = static_cast<LChar>(source[i]);
138 const LChar* const end = destination + length;
144 while (!isAlignedTo<memoryAccessMask>(destination))
145 *destination++ = static_cast<LChar>(*source++);
148 const uintptr_t lengthLeft = end - destination;
153 : [SOURCE]"+r" (source), [DESTINATION]"+r" (destination)
156 } while (destination !
[all...]
H A DTextCodecUTF8.cpp145 static inline UChar* appendCharacter(UChar* destination, int character) argument
150 *destination++ = character;
152 *destination++ = U16_LEAD(character);
153 *destination++ = U16_TRAIL(character);
155 return destination;
164 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) argument
170 *destination++ = replacementCharacter;
175 bool TextCodecUTF8::handlePartialSequence<LChar>(LChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool, bool&) argument
180 *destination++ = m_partialSequence[0];
211 *destination
218 handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
278 LChar* destination = buffer.characters(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
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();
H A DAudioNode.idl43 [RaisesException] void connect(AudioNode? destination, [Default=Undefined] optional unsigned long output, [Default=Undefined] optional unsigned long input);
44 [RaisesException] void connect(AudioParam destination, [Default=Undefined] optional unsigned long output);
/external/chromium_org/base/
H A Dtask_runner.cc20 explicit PostTaskAndReplyTaskRunner(TaskRunner* destination);
31 TaskRunner* destination) : destination_(destination) {
30 PostTaskAndReplyTaskRunner( TaskRunner* destination) argument
/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;
H A DMultiChannelResampler.h46 void process(AudioSourceProvider*, AudioBus* destination, size_t framesToProcess);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dpacket.cc149 void Packet::CopyToHeader(RTPHeader* destination) const {
150 destination->markerBit = header_.markerBit;
151 destination->payloadType = header_.payloadType;
152 destination->sequenceNumber = header_.sequenceNumber;
153 destination->timestamp = header_.timestamp;
154 destination->ssrc = header_.ssrc;
155 destination->numCSRCs = header_.numCSRCs;
156 destination->paddingLength = header_.paddingLength;
157 destination->headerLength = header_.headerLength;
158 destination
[all...]
/external/chromium_org/sandbox/win/src/sidestep/
H A Dpreamble_patcher_with_stub.cpp21 inline void* RawMemcpy(void* destination, const void* source, size_t bytes) { argument
23 char* to = reinterpret_cast<char*>(destination);
28 return destination;
34 inline void* RawMemset(void* destination, int value, size_t bytes) { argument
35 char* to = reinterpret_cast<char*>(destination);
40 return destination;
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Ddestination_settings.js8 // TODO(rltoscano): This class needs a throbber while loading the destination
13 * Component used to render the print destination.
15 * the selected destination.
23 * Used to determine the selected destination.
30 * Current CSS class of the destination icon.
52 CHANGE_BUTTON: 'destination-settings-change-button',
53 ICON: 'destination-settings-icon',
54 ICON_CLOUD: 'destination-settings-icon-cloud',
55 ICON_CLOUD_SHARED: 'destination-settings-icon-cloud-shared',
56 ICON_GOOGLE_PROMOTED: 'destination
[all...]
/external/chromium_org/media/base/
H A Daudio_pull_fifo.h35 // them to |destination|. If the FIFO does not have enough data, we ask
38 void Consume(AudioBus* destination, int frames_to_consume);
45 // Append new data to the |destination| starting at |write_pos|.
46 int ReadFromFifo(AudioBus* destination, int frames_to_provide, int write_pos);
/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/libvpx/
H A Dcopy_obj.py9 be copied to the destination."""
18 parser.add_option('-d', '--destination')
22 if (not options.destination or not options.source):
23 parser.error('Must specify both a destination and one or more sources.')
28 shutil.copyfile(src, options.destination)
/external/chromium_org/v8/src/compiler/
H A Dgap-resolver.h23 InstructionOperand* destination) = 0;
26 InstructionOperand* destination) = 0;
/external/dnsmasq/contrib/port-forward/
H A Ddnsmasq-portforward55 ${IPTABLES} -t nat -D PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
57 ${IPTABLES} -t nat -A PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/
H A DWebGLImageConversionNEON.h37 ALWAYS_INLINE void unpackOneRowOfRGBA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
46 vst1q_u8(destination + i, components.val[1]);
50 destination += componentsSize;
54 ALWAYS_INLINE void unpackOneRowOfRGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
67 vst4_u8(destination, RGBA8);
68 destination += 32;
75 ALWAYS_INLINE void unpackOneRowOfARGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
88 vst4_u8(destination + i, RGBA8);
92 destination += componentsSize;
96 ALWAYS_INLINE void unpackOneRowOfBGRA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigne argument
117 unpackOneRowOfRGBA4444ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
145 packOneRowOfRGBA8ToUnsignedShort4444(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow) argument
173 unpackOneRowOfRGBA5551ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
205 packOneRowOfRGBA8ToUnsignedShort5551(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow) argument
237 unpackOneRowOfRGB565ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
269 packOneRowOfRGBA8ToUnsignedShort565(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow) argument
[all...]
/external/bison/src/
H A Dgraphviz.h43 * \param destination id of the target node
49 void output_edge (int source, int destination, char const *label,
/external/chromium_org/chrome/installer/mini_installer/
H A Ddecompress.h17 // |source| is the full path of the file to decompress and |destination|
19 bool Expand(const wchar_t* source, const wchar_t* destination);
/external/chromium_org/content/browser/media/capture/
H A Daudio_mirroring_manager.h27 // that are not correctly routed to the destination.
30 // destination.
101 // (Re-)Start/Stop mirroring to the given |destination|. |destination| must
104 // AudioMirroringManager to query |destination| and only re-route those
106 virtual void StartMirroring(MirroringDestination* destination);
107 virtual void StopMirroring(MirroringDestination* destination);
120 // destination.
121 MirroringDestination* destination; member in struct:content::AudioMirroringManager::StreamRoutingState
131 // Helper to find a destination othe
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkMatrixParts.cpp161 SK_MEMBER(destination, Rect),
170 source(NULL), destination(NULL) {
177 if (source == NULL || destination == NULL)
180 temp.setRectToRect(source->fRect, destination->fRect,
198 if (destination) {
199 SkDebugf("%*s<destination>\n", SkDisplayList::fIndent, "");
201 destination->dump(maker);
203 SkDebugf("%*s</destination>\n", SkDisplayList::fIndent, "");
214 SkASSERT(destination == NULL);
215 return getMember("destination");
[all...]
/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/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/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/
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

Completed in 1681 milliseconds

1234567891011>>