HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 1 - 25 of 476) 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...]
  /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/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
360 LOperand* destination = moves_[index].destination(); 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
243 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...]
  /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/skia/src/opts/
SkBlitRect_opts_SSE2.cpp 17 static void BlitRect32_OpaqueNarrow_SSE2(SkPMColor* SK_RESTRICT destination,
25 SkPMColor* dst = destination;
41 destination = (uint32_t*)((char*)destination + rowBytes);
51 static void BlitRect32_OpaqueWide_SSE2(SkPMColor* SK_RESTRICT destination,
62 SkPMColor* dst = destination;
110 destination = (uint32_t*)((char*)destination + rowBytes);
114 void ColorRect32_SSE2(SkPMColor* destination,
123 BlitRect32_OpaqueNarrow_SSE2(destination, width, height
    [all...]
  /packages/apps/Gallery2/jni/filters/
negative.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
26 char * dst = destination;
redeye.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
geometry.c 20 __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
30 memcpy(destination + temp - i, source + i, bytes_to_copy);
34 __inline__ void flipHorizontal(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
46 memcpy(destination + temp - j, source + i + j, cpy_bytes);
51 __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
58 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight);
63 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
67 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
73 __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
84 memcpy(destination + column_disp + row_disp , source + j * srcWidth + i, cpy_bytes)
131 char* destination = 0; local
144 char* destination = 0; local
155 char* destination = 0; local
166 char* destination = 0; local
    [all...]
gradient.c 22 char* destination = 0; local
33 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
40 int r = destination[RED];
42 destination[RED] = r;
46 int g = destination[GREEN];
48 destination[GREEN] = g;
52 int b = destination[BLUE];
54 destination[BLUE] = b;
saturated.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
36 int r = destination[RED];
37 int g = destination[GREEN];
38 int b = destination[BLUE];
48 destination[RED] = CLAMP(Rc);
49 destination[GREEN] = CLAMP(Gc);
50 destination[BLUE] = CLAMP(Bc);
vignette.c 26 char* destination = 0; local
27 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
44 destination[RED] = CLAMP(destination[RED] - vignette);
45 destination[GREEN] = CLAMP(destination[GREEN] - vignette);
46 destination[BLUE] = CLAMP(destination[BLUE] - vignette);
exposure.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
highlight.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CoordinateUtils.java 45 public static void copy(final int[] destination, final int[] source) {
46 destination[INDEX_X] = source[INDEX_X];
47 destination[INDEX_Y] = source[INDEX_Y];
  /external/android-clat/
setroute.h 25 int if_route(const char *ifname, int family, const void *destination, int cidr, const void *gateway, int metric, int mtu, int change_type);
  /external/v8/src/arm/
lithium-gap-resolver-arm.cc 77 // 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/
lithium-gap-resolver-mips.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,
  /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();

Completed in 471 milliseconds

1 2 3 4 5 6 7 8 91011>>