Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 25 of 478) sorted by relevance

12345678910>>...20

/external/webkit/Source/WebCore/platform/graphics/
DGraphicsContext3D.cpp353 void unpackRGBA8ToRGBA8(const uint8_t* source, uint8_t* destination) in unpackRGBA8ToRGBA8() argument
355 destination[0] = source[0]; in unpackRGBA8ToRGBA8()
356 destination[1] = source[1]; in unpackRGBA8ToRGBA8()
357 destination[2] = source[2]; in unpackRGBA8ToRGBA8()
358 destination[3] = source[3]; in unpackRGBA8ToRGBA8()
361 void unpackRGBA16LittleToRGBA8(const uint16_t* source, uint8_t* destination) in unpackRGBA16LittleToRGBA8() argument
363 destination[0] = convertColor16LittleTo8(source[0]); in unpackRGBA16LittleToRGBA8()
364 destination[1] = convertColor16LittleTo8(source[1]); in unpackRGBA16LittleToRGBA8()
365 destination[2] = convertColor16LittleTo8(source[2]); in unpackRGBA16LittleToRGBA8()
366 destination[3] = convertColor16LittleTo8(source[3]); in unpackRGBA16LittleToRGBA8()
[all …]
/external/v8/src/x64/
Dlithium-gap-resolver-x64.cc98 LOperand* destination = moves_[index].destination(); in PerformMove() local
107 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove()
123 moves_[index].set_destination(destination); in PerformMove()
127 if (moves_[index].source()->Equals(destination)) { in PerformMove()
137 if (other_move.Blocks(destination)) { in PerformMove()
153 LOperand* destination = moves_[i].destination(); in Verify() local
155 SLOW_ASSERT(!destination->Equals(moves_[j].destination())); in Verify()
167 LOperand* destination = moves_[index].destination(); in EmitMove() local
173 if (destination->IsRegister()) { in EmitMove()
174 Register dst = cgen_->ToRegister(destination); in EmitMove()
[all …]
/external/v8/src/ia32/
Dlithium-gap-resolver-ia32.cc102 LOperand* destination = moves_[index].destination(); in PerformMove() local
111 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove()
127 moves_[index].set_destination(destination); in PerformMove()
131 if (moves_[index].source()->Equals(destination)) { in PerformMove()
141 if (other_move.Blocks(destination)) { in PerformMove()
157 LOperand* destination = move.destination(); in AddMove() local
158 if (destination->IsRegister()) ++destination_uses_[destination->index()]; in AddMove()
171 LOperand* destination = moves_[index].destination(); in RemoveMove() local
172 if (destination->IsRegister()) { in RemoveMove()
173 --destination_uses_[destination->index()]; in RemoveMove()
[all …]
/external/v8/src/arm/
Dlithium-gap-resolver-arm.cc111 LOperand* destination = moves_[index].destination(); in PerformMove() local
120 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove()
130 moves_[index].set_destination(destination); in PerformMove()
136 if (other_move.Blocks(destination)) { in PerformMove()
151 LOperand* destination = moves_[i].destination(); in Verify() local
153 SLOW_ASSERT(!destination->Equals(moves_[j].destination())); in Verify()
165 ASSERT(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle()
169 saved_destination_ = moves_[index].destination(); in BreakCycle()
212 LOperand* destination = moves_[index].destination(); in EmitMove() local
219 if (destination->IsRegister()) { in EmitMove()
[all …]
/external/webkit/Source/WebCore/platform/text/
DTextCodecASCIIFastPath.h52 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 …]
DTextCodecUTF8.cpp140 static inline UChar* appendCharacter(UChar* destination, int character) in appendCharacter() argument
145 *destination++ = character; in appendCharacter()
147 *destination++ = U16_LEAD(character); in appendCharacter()
148 *destination++ = U16_TRAIL(character); in appendCharacter()
150 return destination; in appendCharacter()
159 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) in handleError() argument
165 *destination++ = replacementCharacter; in handleError()
169 void TextCodecUTF8::handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_… in handlePartialSequence() argument
174 *destination++ = m_partialSequence[0]; in handlePartialSequence()
180 handleError(destination, stopOnError, sawError); in handlePartialSequence()
[all …]
DTextCodecLatin1.cpp127 UChar* destination = characters; in decode() local
139 copyASCIIMachineWord(destination, source); in decode()
141 destination += sizeof(MachineWord); in decode()
147 *destination = *source; in decode()
150 *destination = table[*source]; in decode()
154 ++destination; in decode()
/external/webkit/Source/JavaScriptCore/wtf/
DHexNumber.h44 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, H…
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/webkit/Source/JavaScriptCore/assembler/
DRepatchBuffer.h60 void relink(CodeLocationJump jump, CodeLocationLabel destination) in relink() argument
62 MacroAssembler::repatchJump(jump, destination); in relink()
65 void relink(CodeLocationCall call, CodeLocationLabel destination) in relink() argument
67 MacroAssembler::repatchCall(call, destination); in relink()
70 void relink(CodeLocationCall call, FunctionPtr destination) in relink() argument
72 MacroAssembler::repatchCall(call, destination); in relink()
75 void relink(CodeLocationNearCall nearCall, CodePtr destination) in relink() argument
77 MacroAssembler::repatchNearCall(nearCall, CodeLocationLabel(destination)); in relink()
80 void relink(CodeLocationNearCall nearCall, CodeLocationLabel destination) in relink() argument
82 MacroAssembler::repatchNearCall(nearCall, destination); in relink()
/external/skia/src/animator/
DSkMatrixParts.cpp169 SK_MEMBER(destination, Rect),
178 source(NULL), destination(NULL) { in SkRectToRect()
185 if (source == NULL || destination == NULL) in add()
188 temp.setRectToRect(source->fRect, destination->fRect, in add()
206 if (destination) { in dump()
209 destination->dump(maker); in dump()
222 SkASSERT(destination == NULL); in preferredChild()
231 SK_MEMBER(destination, Polygon),
239 SkPolyToPoly::SkPolyToPoly() : source(NULL), destination(NULL) { in SkPolyToPoly()
247 SkASSERT(destination); in add()
[all …]
/external/webkit/Source/WebKit2/Platform/cg/
DCGUtilities.cpp33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source) in paintImage() argument
37 …CGContextClipToRect(context, CGRectMake(destination.x, destination.y, source.size.width, source.si… in paintImage()
43 CGFloat destX = destination.x - source.origin.x; in paintImage()
44 CGFloat destY = -static_cast<CGFloat>(imageHeight) - destination.y + source.origin.y; in paintImage()
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRe… in paintBitmapContext() argument
53 paintImage(context, image.get(), destination, source); in paintBitmapContext()
/external/webkit/Source/WebCore/platform/audio/
DReverbAccumulationBuffer.cpp48 void ReverbAccumulationBuffer::readAndClear(float* destination, size_t numberOfFrames) in readAndClear() argument
62 memcpy(destination, source + m_readIndex, sizeof(float) * numberOfFrames1); in readAndClear()
67 memcpy(destination + numberOfFrames1, source, sizeof(float) * numberOfFrames2); in readAndClear()
94 float* destination = m_buffer.data(); in accumulate() local
101 vadd(source, 1, destination + writeIndex, 1, destination + writeIndex, 1, numberOfFrames1); in accumulate()
105 vadd(source + numberOfFrames1, 1, destination, 1, destination, 1, numberOfFrames2); in accumulate()
DAudioDSPKernelProcessor.cpp73 void AudioDSPKernelProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProce… in process() argument
75 ASSERT(source && destination); in process()
76 if (!source || !destination) in process()
80 destination->zero(); in process()
84 …bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source… in process()
90 …m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->data(), framesToProcess… in process()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageLog.java51 private String destination; field in MessageLog
85 String destination, in MessageLog() argument
96 this.destination = destination; in MessageLog()
118 String destination, in MessageLog() argument
129 this.destination = destination; in MessageLog()
153 + destination in toString()
DDefaultMessageLogFactory.java16 String destination, String timeStamp, boolean isSender, in createLogRecord() argument
18 return new MessageLog(message, source, destination, timeStamp, in createLogRecord()
23 String destination, long timeStamp, boolean isSender, in createLogRecord() argument
25 return new MessageLog(message, source, destination, timeStamp, in createLogRecord()
/external/valgrind/main/memcheck/tests/
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/chromium/chrome/browser/debugger/
Ddebugger_remote_service.cc58 const std::string destination = message.destination(); in HandleMessage() local
81 if (destination.empty()) { in HandleMessage()
85 SendResponse(response, message.tool(), message.destination()); in HandleMessage()
89 base::StringToInt(destination, &tab_uid); in HandleMessage()
94 AttachToTab(destination, &response); in HandleMessage()
97 DetachFromTab(destination, &response); in HandleMessage()
109 SendResponse(response, message.tool(), message.destination()); in HandleMessage()
121 const std::string& destination) { in SendResponse() argument
126 destination, in SendResponse()
195 void DebuggerRemoteService::AttachToTab(const std::string& destination, in AttachToTab() argument
[all …]
Dextension_ports_remote_service.cc142 const std::string destinationString = message.destination(); in HandleMessage()
170 SendResponse(response, message.tool(), message.destination()); in HandleMessage()
174 int destination = -1; in HandleMessage() local
176 base::StringToInt(destinationString, &destination); in HandleMessage()
179 if (destination != -1) // destination should be empty for this command. in HandleMessage()
184 if (destination == -1) // Destination required for this command. in HandleMessage()
187 DisconnectCommand(destination, &response); in HandleMessage()
189 if (destination == -1) // Destination required for this command. in HandleMessage()
192 PostMessageCommand(destination, content, &response); in HandleMessage()
198 SendResponse(response, message.tool(), message.destination()); in HandleMessage()
[all …]
/external/iptables/extensions/
Dlibipt_DNAT.man8 chains. It specifies that the destination address of the packet
13 \fB\-\-to\-destination\fP [\fIipaddr\fP[\fB\-\fP\fIipaddr\fP]][\fB:\fP\fIport\fP[\fB\-\fP\fIport\fP…
14 which can specify a single new destination IP address, an inclusive
20 If no port range is specified, then the destination port will never be
21 modified. If no IP address is specified then only the destination port
24 In Kernels up to 2.6.10 you can add several \-\-to\-destination options. For
25 those kernels, if you specify more than one destination address, either via an
26 address range or multiple \-\-to\-destination options, a simple round-robin (one
37 Gives a client the same source-/destination-address for each connection.
/external/webkit/Source/WebCore/platform/graphics/filters/
DFEComposite.cpp119 inline void computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArr… in computeArithmeticPixels() argument
131 unsigned char i2 = *destination; in computeArithmeticPixels()
143 *destination = 0; in computeArithmeticPixels()
145 *destination = 255; in computeArithmeticPixels()
147 *destination = result; in computeArithmeticPixels()
149 ++destination; in computeArithmeticPixels()
159 unsigned char* destination = srcPixelArrayB->data(); in arithmetic() local
163 … computeArithmeticPixels<0, 1, 1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmetic()
167 computeArithmeticPixels<1, 1, 1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmetic()
172 computeArithmeticPixels<0, 1, 1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmetic()
[all …]
/external/webkit/Source/WebCore/webaudio/
DRealtimeAnalyser.cpp188 float* destination = magnitudeBuffer().data(); in doFFTAnalysis() local
192 destination[i] = float(k * destination[i] + (1.0 - k) * scalarMagnitude); in doFFTAnalysis()
213 float* destination = destinationArray->data(); in getFloatFrequencyData() local
218 destination[i] = float(dbMag); in getFloatFrequencyData()
239 unsigned char* destination = destinationArray->data(); in getByteFrequencyData() local
254 destination[i] = static_cast<unsigned char>(scaledValue); in getByteFrequencyData()
275 unsigned char* destination = destinationArray->data(); in getByteTimeDomainData() local
292 destination[i] = static_cast<unsigned char>(scaledValue); in getByteTimeDomainData()
DAudioChannelSplitter.cpp64 AudioBus* destination = output(i)->bus(); in process() local
65 ASSERT(destination); in process()
70 destination->channel(0)->copyFrom(source->channel(i)); in process()
73 destination->zero(); in process()
/external/webkit/Source/WebKit2/WebProcess/Downloads/
DDownload.cpp102 String destination; in retrieveDestinationWithSuggestedFilename() local
104 …Messages::DownloadProxy::DecideDestinationWithSuggestedFilename::Reply(destination, allowOverwrite… in retrieveDestinationWithSuggestedFilename()
111 return destination; in retrieveDestinationWithSuggestedFilename()
116 String destination = retrieveDestinationWithSuggestedFilename(filename, allowOverwrite); in decideDestinationWithSuggestedFilename() local
118 didDecideDestination(destination, allowOverwrite); in decideDestinationWithSuggestedFilename()
120 return destination; in decideDestinationWithSuggestedFilename()
/external/protobuf/src/google/protobuf/
Dextension_set_unittest.cc190 unittest::TestAllTypes destination; in TEST() local
198 EXPECT_TRUE(destination.ParseFromString(data)); in TEST()
199 TestUtil::ExpectAllFieldsSet(destination); in TEST()
211 unittest::TestAllTypes destination; in TEST() local
222 EXPECT_TRUE(destination.ParseFromString(data)); in TEST()
223 TestUtil::ExpectAllFieldsSet(destination); in TEST()
234 unittest::TestPackedTypes destination; in TEST() local
242 EXPECT_TRUE(destination.ParseFromString(data)); in TEST()
243 TestUtil::ExpectPackedFieldsSet(destination); in TEST()
255 unittest::TestPackedTypes destination; in TEST() local
[all …]
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
DVideoSinkGStreamer.cpp192 guint8 *destination = GST_BUFFER_DATA(newBuffer); in webkit_video_sink_render() local
198 destination[0] = (source[0] * alpha + 128) / 255; in webkit_video_sink_render()
199 destination[1] = (source[1] * alpha + 128) / 255; in webkit_video_sink_render()
200 destination[2] = (source[2] * alpha + 128) / 255; in webkit_video_sink_render()
201 destination[3] = alpha; in webkit_video_sink_render()
204 destination[0] = alpha; in webkit_video_sink_render()
205 destination[1] = (source[1] * alpha + 128) / 255; in webkit_video_sink_render()
206 destination[2] = (source[2] * alpha + 128) / 255; in webkit_video_sink_render()
207 destination[3] = (source[3] * alpha + 128) / 255; in webkit_video_sink_render()
210 destination += 4; in webkit_video_sink_render()

12345678910>>...20