Searched refs:outputBuffer (Results 1 - 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/webaudio/
H A DAudioProcessingEvent.cpp36 PassRefPtr<AudioProcessingEvent> AudioProcessingEvent::create(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer) argument
38 return adoptRef(new AudioProcessingEvent(inputBuffer, outputBuffer));
41 AudioProcessingEvent::AudioProcessingEvent(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer) argument
44 , m_outputBuffer(outputBuffer)
H A DAudioProcessingEvent.idl31 readonly attribute AudioBuffer outputBuffer;
H A DAudioProcessingEvent.h39 static PassRefPtr<AudioProcessingEvent> create(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer);
46 AudioBuffer* outputBuffer() { return m_outputBuffer.get(); } function in class:WebCore::AudioProcessingEvent
49 AudioProcessingEvent(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer);
H A DJavaScriptAudioNode.cpp131 // Additionally, there is a double-buffering for input and output which is exposed directly to JavaScript (see inputBuffer and outputBuffer below).
132 // This node is the producer for inputBuffer and the consumer for outputBuffer.
133 // The JavaScript code is the consumer of inputBuffer and the producer for outputBuffer.
147 AudioBuffer* outputBuffer = m_outputBuffers[doubleBufferIndex].get();
150 bool buffersAreGood = inputBuffer && outputBuffer && bufferSize() == inputBuffer->length() && bufferSize() == outputBuffer->length()
187 memcpy(destinationL, outputBuffer->getChannelData(0)->data() + m_bufferReadWriteIndex, bytesToCopy);
188 memcpy(destinationR, outputBuffer->getChannelData(1)->data() + m_bufferReadWriteIndex, bytesToCopy);
201 outputBuffer->zero();
239 AudioBuffer* outputBuffer
[all...]
/external/skia/src/core/
H A DSkFlate.cpp36 uint8_t outputBuffer[kBufferSize]; local
42 flateData.next_out = outputBuffer;
66 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
70 flateData.next_out = outputBuffer;
95 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out))
97 flateData.next_out = outputBuffer;
/external/icu4c/layout/
H A DThaiShaping.cpp146 LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex)
153 outputBuffer[outputIndex++] = currChar;
158 outputBuffer[outputIndex++] = currChar;
163 outputBuffer[outputIndex++] = leftAboveVowel(currChar, glyphSet);
168 outputBuffer[outputIndex++] = lowerRightTone(currChar, glyphSet);
173 outputBuffer[outputIndex++] = lowerLeftTone(currChar, glyphSet);
178 outputBuffer[outputIndex++] = upperLeftTone(currChar, glyphSet);
183 LEUnicode cod = outputBuffer[outputIndex - 1];
187 outputBuffer[outputIndex - 1] = coa;
190 outputBuffer[outputInde
145 doTransition(StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex) argument
[all...]
H A DThaiShaping.h83 LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex);
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessorQt.cpp154 QBuffer outputBuffer; local
161 outputBuffer.open(QIODevice::ReadWrite);
168 success = query.evaluateTo(&outputBuffer);
169 outputBuffer.reset();
170 resultString = QString::fromUtf8(outputBuffer.readAll()).trimmed();
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.h51 void* outputBuffer, int outputBufferLength, int& outputLength);
H A DTextCodecMac.cpp133 void *outputBuffer, int outputBufferLength, int& outputLength)
151 reinterpret_cast<unsigned char*>(outputBuffer), outputBufferLength, &bytesWritten);
185 static_cast<unsigned char*>(outputBuffer), outputBufferLength, &bytesWritten);
132 decode(const unsigned char* inputBuffer, int inputBufferLength, int& inputLength, void *outputBuffer, int outputBufferLength, int& outputLength) argument
/external/jmonkeyengine/engine/src/core/com/jme3/post/
H A DFilterPostProcessor.java69 private FrameBuffer outputBuffer; field in class:FilterPostProcessor
171 if (buff == outputBuffer) {
267 buff = outputBuffer;
287 renderer.setFrameBuffer(outputBuffer);
302 viewPort.setOutputFrameBuffer(outputBuffer);
361 viewPort.setOutputFrameBuffer(outputBuffer);
394 outputBuffer = viewPort.getOutputFrameBuffer();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
H A Ddirector-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
H A DFlyweightMapStorage.java195 * @param outputBuffer the byte buffer to which the value is stored
200 ByteBuffer outputBuffer, int index) throws IOException {
203 outputBuffer.putShort(wordIndex, objectInput.readShort());
205 outputBuffer.putInt(wordIndex, objectInput.readInt());
199 readExternalWord(ObjectInput objectInput, int wordSize, ByteBuffer outputBuffer, int index) argument
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp454 UCHAR *RESTRICT outputBuffer = outBuf; local
467 FDKmemcpy(outputBuffer, &hBitBuf->Buffer[hBitBuf->WriteOffset], bToWrite*sizeof(UCHAR));
472 outputBuffer += bToWrite ;
/external/aac/libFDK/include/
H A DFDK_bitstream.h603 * \brief fill the outputBuffer with all valid bytes hold in BitBuffer. The WriteBytes
607 * \param outputBuffer Pointer to output buffer.
611 FDK_INLINE void FDKfetchBuffer(HANDLE_FDK_BITSTREAM hBitStream, UCHAR *outputBuffer, UINT *writeBytes) argument
614 FDK_Fetch(&hBitStream->hBitBuf, outputBuffer, writeBytes);
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginViewGtk.cpp564 NPError PluginView::handlePostReadFile(Vector<char>& outputBuffer, uint32_t filenameLength, const char* filenameBuffer) argument
586 outputBuffer.resize(g_file_info_get_size(fileInfo.get()));
589 outputBuffer.data(), outputBuffer.size(), &bytesRead, 0, 0))
/external/libvpx/examples/includes/HTML-Toc-0.91/
H A DTocInsertor.pm488 $self->{outputBuffer} = "";
510 #$self->_writeOrBufferOutput($self->{outputBuffer});
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserLibxml2.cpp354 int readOutBytes(char* outputBuffer, unsigned askedToRead) argument
359 memcpy(outputBuffer, m_buffer.data() + m_currentOffset, lenToCopy);
/external/libxml2/
H A Dschematron.c167 xmlBufferPtr outputBuffer; /* if using XML_SCHEMATRON_OUT_BUFFER */ member in struct:_xmlSchematronValidCtxt
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 466 milliseconds