HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 1 - 25 of 351) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/text/
TextCodecASCIIFastPath.h 52 static void copy(UChar* destination, const uint8_t* source)
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)
63 destination[0] = source[0];
64 destination[1] = source[1];
65 destination[2] = source[2];
66 destination[3] = source[3]
    [all...]
TextCodecUTF8.cpp 140 static inline UChar* appendCharacter(UChar* destination, int character)
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)
165 *destination++ = replacementCharacter;
169 void TextCodecUTF8::handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError)
174 *destination++ = m_partialSequence[0];
180 handleError(destination, stopOnError, sawError)
226 UChar* destination = buffer.characters(); local
    [all...]
TextCodecUTF8.h 45 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/
CGUtilities.h 31 void paintImage(CGContextRef, CGImageRef, CGPoint destination, CGRect source);
32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGPoint destination, CGRect source);
CGUtilities.cpp 33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source)
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)
53 paintImage(context, image.get(), destination, source);
  /libcore/luni/src/main/java/java/io/
PipedWriter.java 31 private PipedReader destination; field in class:PipedWriter
45 * Constructs a new {@code PipedWriter} connected to {@code destination}.
46 * Any data written to this writer can be read from {@code destination}.
48 * @param destination
51 * if {@code destination} is already connected.
53 public PipedWriter(PipedReader destination) throws IOException {
54 super(destination);
55 connect(destination);
68 PipedReader reader = destination;
72 destination = null
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.cpp 353 void unpackRGBA8ToRGBA8(const uint8_t* source, uint8_t* destination)
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)
363 destination[0] = convertColor16LittleTo8(source[0]);
364 destination[1] = convertColor16LittleTo8(source[1]);
365 destination[2] = convertColor16LittleTo8(source[2]);
366 destination[3] = convertColor16LittleTo8(source[3])
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/x64/
lithium-gap-resolver-x64.cc 72 // 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
241 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
HexNumber.h 44 inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
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)
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
61 inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
69 inline void appendUnsignedAsHex(unsigned number, T& destination, HexConversionMode mode = Uppercase
    [all...]
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 77 // 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
342 LOperand* destination = moves_[index].destination(); local
    [all...]
  /system/core/include/cutils/
mq.h 31 /** A destination to which messages can be sent. */
40 * @param destination to which the message was sent
43 typedef void MqMessageListener(MqDestination* destination, MqMessage* message);
46 * Hears a destination close.
48 * @param destination that closed
50 typedef void MqCloseListener(MqDestination* destination);
59 * @param replyTo destination to which replies should be sent, NULL if none
64 /** Sends a message to a destination. */
65 void mqSendMessage(MqMessage* message, MqDestination* destination);
67 /** Destination functions. *
    [all...]
  /external/v8/src/arm/
lithium-gap-resolver-arm.cc 78 // 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/
RepatchBuffer.h 60 void relink(CodeLocationJump jump, CodeLocationLabel destination)
62 MacroAssembler::repatchJump(jump, destination);
65 void relink(CodeLocationCall call, CodeLocationLabel destination)
67 MacroAssembler::repatchCall(call, destination);
70 void relink(CodeLocationCall call, FunctionPtr destination)
72 MacroAssembler::repatchCall(call, destination);
75 void relink(CodeLocationNearCall nearCall, CodePtr destination)
77 MacroAssembler::repatchNearCall(nearCall, CodeLocationLabel(destination));
80 void relink(CodeLocationNearCall nearCall, CodeLocationLabel destination)
82 MacroAssembler::repatchNearCall(nearCall, destination);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 16 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,
MessageLog.java 51 private String destination; field in class:MessageLog
85 String destination,
96 this.destination = destination;
118 String destination,
129 this.destination = destination;
153 + destination
  /external/webkit/Source/WebCore/webaudio/
AudioChannelSplitter.cpp 64 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();
BiquadDSPKernel.cpp 35 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess)
37 ASSERT(source && destination && biquadProcessor());
72 m_biquad.process(source, destination, framesToProcess);
  /external/webkit/Source/WebCore/platform/audio/
ReverbAccumulationBuffer.cpp 48 void ReverbAccumulationBuffer::readAndClear(float* destination, size_t numberOfFrames)
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);
AudioDSPKernelProcessor.cpp 73 void AudioDSPKernelProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProcess)
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);
AudioProcessor.h 56 // Processes the source to destination bus. The number of channels must match in source and destination.
57 virtual void process(AudioBus* source, AudioBus* destination, size_t framesToProcess) = 0;
  /external/valgrind/main/memcheck/tests/
overlap.stderr.exp 1 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/dnsmasq/contrib/port-forward/
dnsmasq-portforward 55 ${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/
socketaddresspair.h 35 // 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/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 20 * @param destination -- host:port of the destination of the message.
34 String destination, long timeStamp, boolean isSender,
  /external/skia/src/animator/
SkMatrixParts.cpp 169 SK_MEMBER(destination, Rect),
178 source(NULL), destination(NULL) {
185 if (source == NULL || destination == NULL)
188 temp.setRectToRect(source->fRect, destination->fRect,
206 if (destination) {
207 SkDebugf("%*s<destination>\n", SkDisplayList::fIndent, "");
209 destination->dump(maker);
211 SkDebugf("%*s</destination>\n", SkDisplayList::fIndent, "");
222 SkASSERT(destination == NULL);
223 return getMember("destination");
    [all...]

Completed in 1925 milliseconds

1 2 3 4 5 6 7 8 91011>>