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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/base/
task_runner.cc 20 explicit PostTaskAndReplyTaskRunner(TaskRunner* destination);
31 TaskRunner* destination) : destination_(destination) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioPullFIFO.cpp 45 void AudioPullFIFO::consume(AudioBus* destination, size_t framesToConsume)
47 if (!destination)
55 m_fifo.consume(destination, framesToConsume);
ZeroPole.cpp 39 void ZeroPole::process(const float *source, float *destination, unsigned framesToProcess)
63 *destination++ = output2;
AudioPullFIFO.h 51 // Read |framesToConsume| frames from the FIFO into the destination. If the FIFO does not have
53 void consume(AudioBus* destination, size_t framesToConsume);
AudioResamplerKernel.h 47 // process() resamples framesToProcess frames from the source into destination.
50 void process(float* destination, size_t framesToProcess);
ZeroPole.h 46 void process(const float *source, float *destination, unsigned framesToProcess);
  /packages/apps/Gallery2/jni/filters/
contrast.c 41 char* destination = 0; local
42 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
43 unsigned char * rgb = (unsigned char * )destination;
shadows.c 29 char* destination = 0; local
30 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
31 unsigned char * rgb = (unsigned char * )destination;
  /external/chromium_org/sandbox/win/src/
policy_engine_params.h 64 bool Get(unsigned long* destination) const {
68 *destination = Void2TypePointerCopy<unsigned long>();
73 bool Get(const void** destination) const {
77 *destination = Void2TypePointerCopy<void*>();
82 bool Get(const wchar_t** destination) const {
86 *destination = Void2TypePointerCopy<const wchar_t*>();
  /external/chromium_org/sandbox/win/src/sidestep/
preamble_patcher_with_stub.cpp 21 inline void* RawMemcpy(void* destination, const void* source, size_t bytes) {
23 char* to = reinterpret_cast<char*>(destination);
28 return destination;
34 inline void* RawMemset(void* destination, int value, size_t bytes) {
35 char* to = reinterpret_cast<char*>(destination);
40 return destination;
  /external/chromium_org/content/browser/renderer_host/media/
audio_mirroring_manager_unittest.cc 123 MockMirroringDestination* const destination = local
125 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
129 MockMirroringDestination* const destination = local
131 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
140 MockMirroringDestination* const destination = local
144 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
150 MockMirroringDestination* const destination = local
152 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
157 MockMirroringDestination* const destination = local
161 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
166 MockMirroringDestination* const destination = local
176 MockMirroringDestination* const destination = local
189 MockMirroringDestination* const destination = local
206 MockMirroringDestination* const destination = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cpu/arm/filters/
NEONHelpers.h 44 inline void storeFloatAsRGBA8(float32x4_t data, uint32_t* destination)
48 *destination = vget_lane_u32(vreinterpret_u32_u8(temporary2), 0);
  /external/dnsmasq/contrib/port-forward/
dnsmasq-portforward 55 ${IPTABLES} -t nat -D PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
57 ${IPTABLES} -t nat -A PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cpu/arm/
GraphicsContext3DNEON.h 37 ALWAYS_INLINE void unpackOneRowOfRGBA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
46 vst1q_u8(destination + i, components.val[1]);
50 destination += componentsSize;
54 ALWAYS_INLINE void unpackOneRowOfRGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
67 vst4_u8(destination, RGBA8);
68 destination += 32;
75 ALWAYS_INLINE void unpackOneRowOfARGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
88 vst4_u8(destination + i, RGBA8);
92 destination += componentsSize;
96 ALWAYS_INLINE void unpackOneRowOfBGRA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow
    [all...]
  /external/bison/src/
graphviz.h 43 * \param destination id of the target node
49 void output_edge (int source, int destination, char const *label,
  /external/chromium/third_party/libjingle/source/talk/base/
socketaddresspair.h 35 // Records a pair (source,destination) of socket addresses. The two addresses
44 const SocketAddress& destination() const { return dest_; } function in class:talk_base::SocketAddressPair
  /external/chromium_org/chrome/installer/mini_installer/
decompress.h 17 // |source| is the full path of the file to decompress and |destination|
19 bool Expand(const wchar_t* source, const wchar_t* destination);
  /external/chromium_org/net/tools/gdig/
file_net_log.h 22 explicit FileNetLogObserver(FILE* destination);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.idl 39 [RaisesException] void connect(AudioNode? destination, [Default=Undefined] optional unsigned long output, [Default=Undefined] optional unsigned long input);
41 [RaisesException] void connect(AudioParam? destination, [Default=Undefined] optional unsigned long output);
ChannelSplitterNode.cpp 68 AudioBus* destination = output(i)->bus(); local
69 ASSERT(destination);
74 destination->channel(0)->copyFrom(source->channel(i));
76 // Only bother zeroing out the destination if it's connected to anything
77 destination->zero();
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketaddresspair.h 35 // Records a pair (source,destination) of socket addresses. The two addresses
44 const SocketAddress& destination() const { return dest_; } function in class:talk_base::SocketAddressPair
  /external/chromium_org/third_party/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
helpbase-ant.jar 
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 20 * @param destination -- host:port of the destination of the message.
34 String destination, long timeStamp, boolean isSender,
  /external/pixman/demos/
checkerboard.c 14 pixman_image_t *destination; local
27 destination = pixman_image_create_bits (PIXMAN_a8r8g8b8,
64 checkerboard, NULL, destination,
68 show_image (destination);

Completed in 992 milliseconds

1 23 4 5 6 7 8 91011>>