/external/iptables/extensions/ |
libipt_DNAT.man | 8 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.
|
libipt_REDIRECT.man | 9 destination IP to the primary address of the incoming interface 13 This specifies a destination port or range of ports to use: without 14 this, the destination port is never altered. This is only valid
|
libxt_udp.man | 10 [\fB!\fP] \fB\-\-destination\-port\fP,\fB\-\-dport\fP \fIport\fP[\fB:\fP\fIport\fP] 11 Destination port or port range specification. 13 \fB\-\-destination\-port\fP
|
/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/clang/tools/clang-check/ |
CMakeLists.txt | 20 RUNTIME DESTINATION bin)
|
/external/eigen/unsupported/Eigen/ |
CMakeLists.txt | 8 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen COMPONENT Devel
|
/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/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...] |
/packages/apps/Gallery2/jni/filters/ |
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);
|
vibrance.c | 22 char* destination = 0; local 23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination); 38 int r = destination[RED]; 39 int g = destination[GREEN]; 40 int b = destination[BLUE]; 57 destination[RED] = CLAMP(Rc); 58 destination[GREEN] = CLAMP(Gc); 59 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);
|
redeye.c | 22 char* destination = 0; local 23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination); 24 unsigned char * rgb = (unsigned char * )destination;
|
/external/clang/test/Sema/ |
warn-strlcpycat-size.c | 22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 25 strlcpy(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} [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/skia/legacy/src/animator/ |
SkMatrixParts.cpp | 161 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/skia/src/animator/ |
SkMatrixParts.cpp | 161 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/webkit/Source/WebKit2/Platform/cg/ |
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);
|
/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/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...] |
/external/tcpdump/ |
ipx.h | 22 u_int16_t dstNet[2]; /* destination net */ 23 u_int8_t dstNode[6]; /* destination node */ 24 u_int16_t dstSkt; /* destination socket */
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
RecipientEntry.java | 53 /** Destination for this contact entry. Would be an email address or a phone number. */ 55 /** Type of the destination like {@link Email#TYPE_HOME} */ 58 * Label of the destination which will be used when type was {@link Email#TYPE_CUSTOM}. 64 /** ID for the destination */ 77 private RecipientEntry(int entryType, String displayName, String destination, 83 mDestination = destination; 134 * to avoid confusion and just use the destination instead. 137 String destination) { 138 return (displayNameSource > DisplayNameSources.PHONE) ? displayName : destination; 153 String destination, int destinationType, String destinationLabel, long contactId [all...] |
/frameworks/base/core/java/android/net/ |
RouteInfo.java | 32 * In order to be used, a route must have a destination prefix and: 47 * The IP destination address for this route. 68 * If destination is null, then gateway must be specified and the 74 * destination and gateway may not both be null. 76 * @param destination the destination prefix 80 public RouteInfo(LinkAddress destination, InetAddress gateway, String iface) { 81 if (destination == null) { 84 destination = new LinkAddress(Inet4Address.ANY, 0); 86 destination = new LinkAddress(Inet6Address.ANY, 0) [all...] |
/external/eigen/Eigen/ |
CMakeLists.txt | 16 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen COMPONENT Devel
|