HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 76 - 100 of 659) sorted by null

1 2 34 5 6 7 8 91011>>

  /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...]
  /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/core/platform/graphics/cpu/arm/filters/
FECompositeArithmeticNEON.h 38 inline void FEComposite::computeArithmeticPixelsNeon(unsigned char* source, unsigned char* destination,
48 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(destination);
75 inline void FEComposite::platformArithmeticNeon(unsigned char* source, unsigned char* destination,
80 computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
84 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
89 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
92 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
  /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...]
audio_mirroring_manager.h 81 // |destination|. |destination| must live until after StopMirroring() is
84 MirroringDestination* destination);
86 MirroringDestination* destination);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringOperators.h 54 void writeTo(LChar* destination)
59 adapter1.writeTo(destination);
60 adapter2.writeTo(destination + adapter1.length());
63 void writeTo(UChar* destination)
67 adapter1.writeTo(destination);
68 adapter2.writeTo(destination + adapter1.length());
95 void writeTo(LChar* destination) { m_buffer.writeTo(destination); }
96 void writeTo(UChar* destination) { m_buffer.writeTo(destination); }
    [all...]
TextCodecUTF8.h 50 bool handlePartialSequence(CharType*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError);
51 void handleError(UChar*& destination, bool stopOnError, bool& sawError);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtils.java 260 static int writeSInt24ToStream(final OutputStream destination, final int value)
263 destination.write((byte)(((value < 0 ? 0x80 : 0) | (absValue >> 16)) & 0xFF));
264 destination.write((byte)((absValue >> 8) & 0xFF));
265 destination.write((byte)(absValue & 0xFF));
272 private static int writeVariableAddress(final OutputStream destination, final int value)
276 destination.write((byte)value);
279 destination.write((byte)(0xFF & (value >> 8)));
280 destination.write((byte)(0xFF & value));
283 destination.write((byte)(0xFF & (value >> 16)));
284 destination.write((byte)(0xFF & (value >> 8)))
    [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/chromium_org/media/base/
audio_fifo.cc 96 void AudioFifo::Consume(AudioBus* destination,
99 DCHECK(destination);
100 DCHECK_EQ(destination->channels(), audio_bus_->channels());
105 // A copy from the FIFO to |destination| will only be performed if the
106 // allocated memory in |destination| is sufficient.
107 CHECK_LE(frames_to_consume + start_frame, destination->frames());
117 // and copy the content to the destination. Wrap around if needed.
118 for (int ch = 0; ch < destination->channels(); ++ch) {
119 float* dest = destination->channel(ch);
122 // Copy a selected part of the FIFO to the destination
    [all...]
audio_fifo.h 31 // them to |destination| starting at position |start_frame|.
33 // frames or if there is insufficient space in |destination| to store the
35 void Consume(AudioBus* destination, int start_frame, int frames_to_consume);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEComposite.cpp 184 static inline void computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength,
196 unsigned char i2 = *destination;
204 *destination = 0;
206 *destination = 255;
208 *destination = result;
210 ++destination;
217 static inline void computeArithmeticPixelsUnclamped(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4)
228 unsigned char i2 = *destination;
235 *destination = result;
237 ++destination;
    [all...]
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 38 public boolean open(String destination) {
40 message.set(AdbMessage.A_OPEN, mId, 0, destination);
  /external/chromium_org/chrome/browser/printing/
print_job_manager.h 35 // Sets the print destination to be set on the next print job.
36 void SetPrintDestination(PrintDestinationInterface* destination);
52 // May return NULL when no destination was set.
53 PrintDestinationInterface* destination() const { return destination_.get(); } function in class:printing::PrintJobManager
  /external/chromium_org/net/disk_cache/
cache_util_posix.cc 23 LOG(ERROR) << "Unable to create destination cache directory.";
30 base::FilePath destination = to_path.Append(name.BaseName()); local
31 if (!base::Move(name, destination)) {
  /external/chromium_org/base/
task_runner_util_unittest.cc 20 void StoreValue(int* destination, int value) {
21 *destination = value;
24 void StoreDoubleValue(double* destination, double value) {
25 *destination = value;
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioDSPKernel.h 57 virtual void process(const float* source, float* destination, size_t framesToProcess) = 0;
AudioDSPKernelProcessor.h 63 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess);
AudioProcessor.h 57 // Processes the source to destination bus. The number of channels must match in source and destination.
58 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) = 0;
ReverbAccumulationBuffer.h 44 void readAndClear(float* destination, size_t numberOfFrames);
  /external/chromium/chrome/browser/debugger/
debugger_remote_service.h 54 // Detaches the remote debugger from the tab specified by |destination|.
60 void DetachFromTab(const std::string& destination,
89 // Attaches a remote debugger to the tab specified by |destination|.
91 void AttachToTab(const std::string& destination,
100 // |tool| and |destination| are used as the respective header values.
103 const std::string& destination);
  /external/chromium_org/net/tools/gdig/
file_net_log.cc 15 FileNetLogObserver::FileNetLogObserver(FILE* destination)
16 : destination_(destination) {
17 DCHECK(destination != NULL);
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup.cc 50 logging::LoggingDestination destination = logging::LOG_TO_FILE; local
52 logging::LoggingDestination destination = local
62 settings.logging_dest = destination;

Completed in 1569 milliseconds

1 2 34 5 6 7 8 91011>>