Searched refs:destination (Results 1 - 25 of 321) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/text/
H A DTextCodecASCIIFastPath.h52 static void copy(UChar* destination, const uint8_t* source) argument
54 destination[0] = source[0];
55 destination[1] = source[1];
56 destination[2] = source[2];
57 destination[3] = source[3];
61 static void copy(UChar* destination, const uint8_t* source) argument
63 destination[0] = source[0];
64 destination[1] = source[1];
65 destination[2] = source[2];
66 destination[
79 copyASCIIMachineWord(UChar* destination, const uint8_t* source) argument
[all...]
H A DTextCodecUTF8.cpp140 static inline UChar* appendCharacter(UChar* destination, int character) argument
145 *destination++ = character;
147 *destination++ = U16_LEAD(character);
148 *destination++ = U16_TRAIL(character);
150 return destination;
159 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) argument
165 *destination++ = replacementCharacter;
169 void TextCodecUTF8::handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
174 *destination++ = m_partialSequence[0];
180 handleError(destination, stopOnErro
226 UChar* destination = buffer.characters(); local
[all...]
H A DTextCodecUTF8.h45 void handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError);
46 void handleError(UChar*& destination, bool stopOnError, bool& sawError);
/external/webkit/Source/WebKit2/Platform/cg/
H A DCGUtilities.h31 void paintImage(CGContextRef, CGImageRef, CGPoint destination, CGRect source);
32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGPoint destination, CGRect source);
H A DCGUtilities.cpp33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source) argument
37 CGContextClipToRect(context, CGRectMake(destination.x, destination.y, source.size.width, source.size.height));
43 CGFloat destX = destination.x - source.origin.x;
44 CGFloat destY = -static_cast<CGFloat>(imageHeight) - destination.y + source.origin.y;
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRect source) argument
53 paintImage(context, image.get(), destination, source);
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext3D.cpp353 void unpackRGBA8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
355 destination[0] = source[0];
356 destination[1] = source[1];
357 destination[2] = source[2];
358 destination[3] = source[3];
361 void unpackRGBA16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
363 destination[0] = convertColor16LittleTo8(source[0]);
364 destination[1] = convertColor16LittleTo8(source[1]);
365 destination[2] = convertColor16LittleTo8(source[2]);
366 destination[
369 unpackRGBA16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
377 unpackRGB8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
385 unpackRGB16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
393 unpackRGB16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
401 unpackBGR8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
409 unpackARGB8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
417 unpackARGB16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
425 unpackARGB16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
433 unpackABGR8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
441 unpackBGRA8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
449 unpackBGRA16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
457 unpackBGRA16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
465 unpackRGBA5551ToRGBA8(const uint16_t* source, uint8_t* destination) argument
477 unpackRGBA4444ToRGBA8(const uint16_t* source, uint8_t* destination) argument
490 unpackRGB565ToRGBA8(const uint16_t* source, uint8_t* destination) argument
502 unpackR8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
510 unpackR16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
518 unpackR16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
526 unpackRA8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
534 unpackRA16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
542 unpackRA16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
550 unpackAR8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
558 unpackAR16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
566 unpackAR16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
574 unpackA8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
582 unpackA16LittleToRGBA8(const uint16_t* source, uint8_t* destination) argument
590 unpackA16BigToRGBA8(const uint16_t* source, uint8_t* destination) argument
598 unpackRGB32FToRGBA32F(const float* source, float* destination) argument
606 unpackR32FToRGBA32F(const float* source, float* destination) argument
614 unpackRA32FToRGBA32F(const float* source, float* destination) argument
622 unpackA32FToRGBA32F(const float* source, float* destination) argument
634 packRGBA8ToA8(const uint8_t* source, uint8_t* destination) argument
639 packRGBA8ToR8(const uint8_t* source, uint8_t* destination) argument
644 packRGBA8ToR8Premultiply(const uint8_t* source, uint8_t* destination) argument
652 packRGBA8ToR8Unmultiply(const uint8_t* source, uint8_t* destination) argument
659 packRGBA8ToRA8(const uint8_t* source, uint8_t* destination) argument
665 packRGBA8ToRA8Premultiply(const uint8_t* source, uint8_t* destination) argument
674 packRGBA8ToRA8Unmultiply(const uint8_t* source, uint8_t* destination) argument
682 packRGBA8ToRGB8(const uint8_t* source, uint8_t* destination) argument
689 packRGBA8ToRGB8Premultiply(const uint8_t* source, uint8_t* destination) argument
701 packRGBA8ToRGB8Unmultiply(const uint8_t* source, uint8_t* destination) argument
713 packRGBA8ToRGBA8(const uint8_t* source, uint8_t* destination) argument
721 packRGBA8ToRGBA8Premultiply(const uint8_t* source, uint8_t* destination) argument
734 packRGBA8ToRGBA8Unmultiply(const uint8_t* source, uint8_t* destination) argument
746 packRGBA8ToUnsignedShort4444(const uint8_t* source, uint16_t* destination) argument
754 packRGBA8ToUnsignedShort4444Premultiply(const uint8_t* source, uint16_t* destination) argument
767 packRGBA8ToUnsignedShort4444Unmultiply(const uint8_t* source, uint16_t* destination) argument
779 packRGBA8ToUnsignedShort5551(const uint8_t* source, uint16_t* destination) argument
787 packRGBA8ToUnsignedShort5551Premultiply(const uint8_t* source, uint16_t* destination) argument
800 packRGBA8ToUnsignedShort5551Unmultiply(const uint8_t* source, uint16_t* destination) argument
812 packRGBA8ToUnsignedShort565(const uint8_t* source, uint16_t* destination) argument
819 packRGBA8ToUnsignedShort565Premultiply(const uint8_t* source, uint16_t* destination) argument
831 packRGBA8ToUnsignedShort565Unmultiply(const uint8_t* source, uint16_t* destination) argument
842 packRGBA32FToRGB32F(const float* source, float* destination) argument
849 packRGBA32FToRGB32FPremultiply(const float* source, float* destination) argument
857 packRGBA32FToRGBA32FPremultiply(const float* source, float* destination) argument
866 packRGBA32FToA32F(const float* source, float* destination) argument
871 packRGBA32FToR32F(const float* source, float* destination) argument
876 packRGBA32FToR32FPremultiply(const float* source, float* destination) argument
883 packRGBA32FToRA32F(const float* source, float* destination) argument
889 packRGBA32FToRA32FPremultiply(const float* source, float* destination) argument
1231 uint8_t* destination = static_cast<uint8_t*>(destinationData); local
1309 uint16_t* destination = static_cast<uint16_t*>(destinationData); local
1324 uint16_t* destination = static_cast<uint16_t*>(destinationData); local
1339 uint16_t* destination = static_cast<uint16_t*>(destinationData); local
1368 float* destination = static_cast<float*>(destinationData); local
[all...]
/external/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.cc77 // the same as the destination, the destination is ignored and
99 // Clear this move's destination to indicate a pending move. The actual
100 // destination is saved on the side.
102 LOperand* destination = moves_[index].destination(); local
107 // as this one's destination blocks this one so recursively perform all
111 if (other_move.Blocks(destination) && !other_move.IsPending()) {
117 // not be swapped). Since this move's destination is B and there is
126 // pending, so restore its destination
157 LOperand* destination = move.destination(); local
171 LOperand* destination = moves_[index].destination(); local
219 LOperand* destination = moves_[i].destination(); local
278 LOperand* destination = moves_[index].destination(); local
360 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/x64/
H A Dlithium-gap-resolver-x64.cc72 // the same as the destination, the destination is ignored and
94 // Clear this move's destination to indicate a pending move. The actual
95 // destination is saved in a stack-allocated local. Recursion may allow
98 LOperand* destination = moves_[index].destination(); local
103 // as this one's destination blocks this one so recursively perform all
107 if (other_move.Blocks(destination) && !other_move.IsPending()) {
113 // not be swapped). Since this move's destination is B and there is
122 // pending, so restore its destination
153 LOperand* destination = moves_[i].destination(); local
167 LOperand* destination = moves_[index].destination(); local
243 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/arm/
H A Dlithium-gap-resolver-arm.cc77 // the same as the destination, the destination is ignored and
98 // its destination. All other moves from the spilled source have been
106 // Clear this move's destination to indicate a pending move. The actual
107 // destination is saved in a stack allocated local. Multiple moves can
110 LOperand* destination = moves_[index].destination(); local
115 // as this one's destination blocks this one so recursively perform all
119 if (other_move.Blocks(destination) && !other_move.IsPending()) {
128 // pending, so restore its destination
150 LOperand* destination = moves_[i].destination(); local
209 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/mips/
H A Dlithium-gap-resolver-mips.cc78 // the same as the destination, the destination is ignored and
99 // its destination. All other moves from the spilled source have been
107 // Clear this move's destination to indicate a pending move. The actual
108 // destination is saved in a stack allocated local. Multiple moves can
111 LOperand* destination = moves_[index].destination(); local
116 // as this one's destination blocks this one so recursively perform all
120 if (other_move.Blocks(destination) && !other_move.IsPending()) {
129 // pending, so restore its destination
151 LOperand* destination = moves_[i].destination(); local
212 LOperand* destination = moves_[index].destination(); local
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DRepatchBuffer.h60 void relink(CodeLocationJump jump, CodeLocationLabel destination) argument
62 MacroAssembler::repatchJump(jump, destination);
65 void relink(CodeLocationCall call, CodeLocationLabel destination) argument
67 MacroAssembler::repatchCall(call, destination);
70 void relink(CodeLocationCall call, FunctionPtr destination) argument
72 MacroAssembler::repatchCall(call, destination);
75 void relink(CodeLocationNearCall nearCall, CodePtr destination) argument
77 MacroAssembler::repatchNearCall(nearCall, CodeLocationLabel(destination));
80 void relink(CodeLocationNearCall nearCall, CodeLocationLabel destination) argument
82 MacroAssembler::repatchNearCall(nearCall, destination);
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DHexNumber.h44 inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase) argument
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
52 inline void placeByteAsHexCompressIfPossible(unsigned char byte, T& destination, unsigned& index, HexConversionMode mode = Uppercase) argument
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
61 inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase) argument
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
69 inline void appendUnsignedAsHex(unsigned number, T& destination, HexConversionMod argument
83 appendUnsignedAsHexFixedSize(unsigned number, T& destination, unsigned desiredDigits, HexConversionMode mode = Uppercase) argument
[all...]
/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/webkit/Source/WebCore/webaudio/
H A DAudioChannelSplitter.cpp64 AudioBus* destination = output(i)->bus(); local
65 ASSERT(destination);
70 destination->channel(0)->copyFrom(source->channel(i));
72 // Only bother zeroing out the destination if it's connected to anything
73 destination->zero();
H A DBiquadDSPKernel.cpp35 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
37 ASSERT(source && destination && biquadProcessor());
72 m_biquad.process(source, destination, framesToProcess);
/external/webkit/Source/WebCore/platform/audio/
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);
H A DAudioDSPKernelProcessor.cpp73 void AudioDSPKernelProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
75 ASSERT(source && destination);
76 if (!source || !destination)
80 destination->zero();
84 bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size();
90 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->data(), framesToProcess);
/external/valgrind/main/memcheck/tests/
H A Doverlap.stderr.exp1 Source and destination overlap in memcpy(0x........, 0x........, 21)
5 Source and destination overlap in memcpy(0x........, 0x........, 21)
9 Source and destination overlap in strncpy(0x........, 0x........, 21)
13 Source and destination overlap in strncpy(0x........, 0x........, 21)
17 Source and destination overlap in strcpy(0x........, 0x........)
21 Source and destination overlap in strncat(0x........, 0x........, 21)
25 Source and destination overlap in strncat(0x........, 0x........, 21)
/external/webkit/Source/WebCore/platform/image-decoders/haiku/
H A DImageDecoderHaiku.cpp40 uint8* destination = reinterpret_cast<uint8*>(bitmap->Bits()); local
49 uint8* destinationHandle = destination;
66 destination += bytesPerRow;
/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/third_party/libjingle/source/talk/base/
H A Dsocketaddresspair.h35 // Records a pair (source,destination) of socket addresses. The two addresses
44 const SocketAddress& destination() const { return dest_; } function in class:talk_base::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/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/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...]

Completed in 852 milliseconds

1234567891011>>