/packages/apps/Gallery2/jni/filters/ |
kmeans.cc | 37 char* destination = 0; local 40 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination); 43 unsigned char * dst = (unsigned char *) destination;
|
edge.c | 22 char* destination = 0; local 23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination); 35 char * dst = destination; 38 char * ptr = destination;
|
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);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/ |
helpbase-ant.jar | |
/external/chromium/chrome/browser/debugger/ |
devtools_remote_message.h | 21 // The destination (inspected) object identifier (if any), like a TabID. 58 const std::string destination() const { function in class:DevToolsRemoteMessage 90 const std::string& destination,
|
/external/chromium_org/content/browser/renderer_host/media/ |
audio_mirroring_manager.cc | 97 MirroringDestination* destination) { 100 DCHECK(destination); 110 sessions_.insert(std::make_pair(target, destination)); 114 << " --> MirroringDestination@" << destination; local 117 session_it->second = destination; 122 << " --> MirroringDestination@" << destination; local 125 // Divert audio streams coming from |target| to |destination|. If streams 133 destination->AddInput(diverter->GetAudioParameters())); 139 MirroringDestination* destination) { 143 // Stop mirroring if there is an active session *and* the destination 152 << " --> MirroringDestination@" << destination; local [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
OfflineAudioDestinationNode.cpp | 132 float* destination = m_renderTarget->getChannelData(channelIndex)->data(); local 133 memcpy(destination + n, source, sizeof(float) * framesAvailableToCopy);
|
/external/v8/src/ |
lithium.cc | 136 LOperand* destination = move_operands_[i].destination(); local 139 if (source->Equals(destination)) { 140 destination->PrintTo(stream); 142 destination->PrintTo(stream);
|
/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...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
bpqether.h | 16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
bpqether.h | 16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
bpqether.h | 16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
|
/external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/ |
JPEGImageEncoder.cpp | 122 JPEGOutputBuffer destination; local 123 destination.output = output; 139 cinfo.dest = &destination;
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecLatin1.cpp | 131 LChar* destination = characters; local 143 copyASCIIMachineWord(destination, source); 145 destination += sizeof(MachineWord); 151 *destination = *source; 157 *destination = table[*source]; 161 ++destination; 174 LChar* endPtr8 = destination;
|
TextCodecUTF8.cpp | 145 static inline UChar* appendCharacter(UChar* destination, int character) 150 *destination++ = character; 152 *destination++ = U16_LEAD(character); 153 *destination++ = U16_TRAIL(character); 155 return destination; 164 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) 170 *destination++ = replacementCharacter; 175 bool TextCodecUTF8::handlePartialSequence<LChar>(LChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool, bool&) 180 *destination++ = m_partialSequence[0]; 211 *destination++ = character 278 LChar* destination = buffer.characters(); local [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkMatrixParts.h | 99 SkDrawRect* destination; member in class:SkRectToRect 114 SkPolygon* destination; member in class:SkPolyToPoly
|
/external/chromium_org/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/chromium_org/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/chromium_org/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 257 LOperand* destination = moves_[index].destination(); local [all...] |
/external/iproute2/doc/ |
api-ip6-flowlabels.tex | 57 destination address and not-fragmentable extensions headers (i.e.\ 168 \paragraph{Note about IPv6 options and destination address.} 169 \addcontentsline{toc}{subsection}{IPv6 options and destination address} 171 destination address in \verb|sin6_addr| and non-fragmentable 285 \item \verb|dst| is IPv6 destination address associated with the label. 321 label, it will not be reused with different destination and options at least 401 \item \verb|Dst| is IPv6 destination address.
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
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/skia/src/animator/ |
SkMatrixParts.h | 99 SkDrawRect* destination; member in class:SkRectToRect 114 SkPolygon* destination; member in class:SkPolyToPoly
|
/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/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...] |