Searched defs:outputBuffer (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DSharedBufferReader.cpp53 int SharedBufferReader::readData(char* outputBuffer, unsigned askedToRead) argument
69 memcpy(outputBuffer + bytesCopied, data, segmentSize);
H A DSharedBufferReaderTest.cpp67 char outputBuffer[sizeof(testData) + extraBytes]; local
70 memset(outputBuffer, initializationByte, sizeof(outputBuffer));
72 static_cast<size_t>(reader.readData(outputBuffer, sizeof(outputBuffer))));
74 EXPECT_TRUE(std::equal(testData, testData + sizeof(testData), outputBuffer));
77 std::count(outputBuffer, outputBuffer + sizeof(outputBuffer), initializationByte));
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioProcessingEvent.cpp38 PassRefPtrWillBeRawPtr<AudioProcessingEvent> AudioProcessingEvent::create(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, double playbackTime) argument
40 return adoptRefWillBeNoop(new AudioProcessingEvent(inputBuffer, outputBuffer, playbackTime));
47 AudioProcessingEvent::AudioProcessingEvent(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, double playbackTime) argument
50 , m_outputBuffer(outputBuffer)
H A DAudioProcessingEvent.h41 static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, double playbackTime);
46 AudioBuffer* outputBuffer() { return m_outputBuffer.get(); } function in class:blink::FINAL
55 AudioProcessingEvent(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, double playbackTime);
H A DScriptProcessorNode.cpp136 AudioBuffer* outputBuffer = m_numberOfOutputChannels ? AudioBuffer::create(m_numberOfOutputChannels, bufferSize(), sampleRate) : 0; local
139 m_outputBuffers.append(outputBuffer);
160 // Additionally, there is a double-buffering for input and output which is exposed directly to JavaScript (see inputBuffer and outputBuffer below).
161 // This node is the producer for inputBuffer and the consumer for outputBuffer.
162 // The JavaScript code is the consumer of inputBuffer and the producer for outputBuffer.
176 AudioBuffer* outputBuffer = m_outputBuffers[doubleBufferIndex].get();
180 bool buffersAreGood = outputBuffer && bufferSize() == outputBuffer->length() && m_bufferReadWriteIndex + framesToProcess <= bufferSize();
211 memcpy(outputBus->channel(i)->mutableData(), outputBuffer->getChannelData(i)->data() + m_bufferReadWriteIndex, sizeof(float) * framesToProcess);
226 outputBuffer
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DDirectConvolver.cpp80 float* outputBuffer = m_buffer.data(); local
87 ippsConv_32f(static_cast<const Ipp32f*>(sourceP), framesToProcess, static_cast<Ipp32f*>(kernelP), kernelSize, static_cast<Ipp32f*>(outputBuffer));
89 vadd(outputBuffer, 1, overlayBuffer, 1, destP, 1, framesToProcess);
90 memcpy(overlayBuffer, outputBuffer + m_inputBlockSize, sizeof(float) * kernelSize);
/external/chromium_org/third_party/skia/src/core/
H A DSkFlate.cpp40 uint8_t outputBuffer[kBufferSize]; local
46 flateData.next_out = outputBuffer;
70 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
74 flateData.next_out = outputBuffer;
99 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out))
101 flateData.next_out = outputBuffer;
/external/skia/src/core/
H A DSkFlate.cpp40 uint8_t outputBuffer[kBufferSize]; local
46 flateData.next_out = outputBuffer;
70 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out)) {
74 flateData.next_out = outputBuffer;
99 if (!dst->write(outputBuffer, kBufferSize - flateData.avail_out))
101 flateData.next_out = outputBuffer;
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
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/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/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/icu/icu4c/source/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...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkTextureCompressor_LATC.cpp484 SkBlitter* CreateLATCBlitter(int width, int height, void* outputBuffer, argument
497 sk_bzero(outputBuffer, width * height / 2);
501 (width, height, outputBuffer);
H A DSkTextureCompressor_ASTC.cpp2057 SkBlitter* CreateASTCBlitter(int width, int height, void* outputBuffer, argument
2070 uint8_t *dst = reinterpret_cast<uint8_t *>(outputBuffer);
2077 (width, height, outputBuffer);
/external/chromium_org/third_party/libxml/src/
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/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/libxml2/
H A Dschematron.c167 xmlBufferPtr outputBuffer; /* if using XML_SCHEMATRON_OUT_BUFFER */ member in struct:_xmlSchematronValidCtxt
/external/robolectric/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/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/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1033 milliseconds