/external/chromium_org/third_party/WebKit/Source/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 | 48 // process() resamples framesToProcess frames from the source into destination. 51 void process(float* destination, size_t framesToProcess);
|
MultiChannelResampler.h | 46 void process(AudioSourceProvider*, AudioBus* destination, size_t 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/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/chromium_org/third_party/skia/src/images/ |
SkDecodingImageGenerator.h | 65 * Install the SkData into the destination bitmap, using a new 71 * @param destination Upon success, this bitmap will be 80 static bool Install(SkData* data, SkBitmap* destination, 83 * Install the stream into the destination bitmap, using a new 101 * @param destination Upon success, this bitmap will be 110 static bool Install(SkStreamRewindable* stream, SkBitmap* destination,
|
/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/skia/src/images/ |
SkDecodingImageGenerator.h | 65 * Install the SkData into the destination bitmap, using a new 71 * @param destination Upon success, this bitmap will be 80 static bool Install(SkData* data, SkBitmap* destination, 83 * Install the stream into the destination bitmap, using a new 101 * @param destination Upon success, this bitmap will be 110 static bool Install(SkStreamRewindable* stream, SkBitmap* destination,
|
/external/chromium_org/third_party/WebKit/Source/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/include/core/ |
SkImageGenerator.h | 21 * the generator. If it succeeds, it will modify destination 25 * installed into destination is destroyed, it will call 29 * @param destination Upon success, this bitmap will be 39 SkBitmap* destination,
|
/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 | |