HomeSort by relevance Sort by last modified time
    Searched refs:outputBuffer (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/Source/WebCore/webaudio/
AudioProcessingEvent.cpp 36 PassRefPtr<AudioProcessingEvent> AudioProcessingEvent::create(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer)
38 return adoptRef(new AudioProcessingEvent(inputBuffer, outputBuffer));
41 AudioProcessingEvent::AudioProcessingEvent(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer)
44 , m_outputBuffer(outputBuffer)
AudioProcessingEvent.idl 31 readonly attribute AudioBuffer outputBuffer;
AudioProcessingEvent.h 39 static PassRefPtr<AudioProcessingEvent> create(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer);
46 AudioBuffer* outputBuffer() { return m_outputBuffer.get(); }
49 AudioProcessingEvent(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer);
JavaScriptAudioNode.cpp 131 // 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 = m_outputBuffers[m_doubleBufferIndexForEvent].get()
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
Base64InputStream.java 39 private final int[] outputBuffer = new int[3];
66 return outputBuffer[outIndex++];
84 // No more input - just return, let outputBuffer drain out, and be done
114 outputBuffer[0] = (accum >> 16) & 0xFF;
115 outputBuffer[1] = (accum >> 8) & 0xFF;
116 outputBuffer[2] = (accum) & 0xFF;
120 outputBuffer[0] = (accum >> 16) & 0xFF;
121 outputBuffer[1] = (accum >> 8) & 0xFF;
125 outputBuffer[0] = (accum >> 16) & 0xFF;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Base64InputStream.java 47 private final int[] outputBuffer = new int[3];
77 return outputBuffer[outIndex++];
102 // No more input - just return, let outputBuffer drain out, and be done
140 outputBuffer[0] = (accum >> 16) & 0xFF;
141 outputBuffer[1] = (accum >> 8) & 0xFF;
142 outputBuffer[2] = (accum) & 0xFF;
146 outputBuffer[0] = (accum >> 16) & 0xFF;
147 outputBuffer[1] = (accum >> 8) & 0xFF;
151 outputBuffer[0] = (accum >> 16) & 0xFF;
  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 42 private byte[] outputBuffer;
43 private int outputIndex; // index of the first byte to return from outputBuffer
44 private int outputLength; // count of the bytes to return from outputBuffer
88 return (outputIndex == outputLength) ? -1 : outputBuffer[outputIndex++] & 0xFF;
91 return outputBuffer[outputIndex++] & 0xFF;
99 if ((outputBuffer == null) || (outputBuffer.length < outputSize)) {
100 this.outputBuffer = new byte[outputSize];
105 outputLength = cipher.doFinal(outputBuffer, 0);
113 outputLength = cipher.update(inputBuffer, 0, byteCount, outputBuffer, 0)
    [all...]
  /external/skia/legacy/src/core/
SkFlate.cpp 36 uint8_t outputBuffer[kBufferSize];
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/skia/src/core/
SkFlate.cpp 40 uint8_t outputBuffer[kBufferSize];
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/icu4c/layout/
ThaiShaping.cpp 146 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[outputIndex++] = currChar
    [all...]
ThaiShaping.h 83 LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSignatureRawRSA.java 148 byte[] outputBuffer = new byte[inputBuffer.length];
150 NativeCrypto.RSA_private_encrypt(inputOffset, inputBuffer, outputBuffer,
152 return outputBuffer;
171 byte[] outputBuffer = new byte[inputBuffer.length];
176 outputBuffer, key.getPkeyContext(), NativeCrypto.RSA_PKCS1_PADDING);
185 if (inputBuffer[i] != outputBuffer[i]) {
  /external/webkit/Source/WebCore/xml/
XSLTProcessorQt.cpp 154 QBuffer outputBuffer;
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/
TextCodecMac.h 51 void* outputBuffer, int outputBufferLength, int& outputLength);
TextCodecMac.cpp 133 void *outputBuffer, int outputBufferLength, int& outputLength)
151 reinterpret_cast<unsigned char*>(outputBuffer), outputBufferLength, &bytesWritten);
185 static_cast<unsigned char*>(outputBuffer), outputBufferLength, &bytesWritten);
  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_CameraTests.cpp 197 uint8_t *outputBuffer;
201 reinterpret_cast<void**>(&outputBuffer) );
207 memcpy(outputBuffer, outputImage, outputWidth * outputHeight * 4);
  /frameworks/base/services/java/com/android/server/
PackageManagerBackupAgent.java 125 ByteArrayOutputStream outputBuffer = new ByteArrayOutputStream(); // we'll reuse these
126 DataOutputStream outputBufferStream = new DataOutputStream(outputBuffer);
153 writeEntity(data, GLOBAL_METADATA_KEY, outputBuffer.toByteArray());
207 outputBuffer.reset();
214 + " entityLen=" + outputBuffer.size());
218 writeEntity(data, packName, outputBuffer.toByteArray());
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoEncoder.cpp 316 MediaBuffer* outputBuffer = NULL;
360 result = encoder->read(&outputBuffer, NULL);
362 VIDEOEDITOR_CHECK(outputBuffer->meta_data()->findInt32(
371 (const uint8_t*)outputBuffer->data() + outputBuffer->range_offset(),
372 outputBuffer->range_length(), encoder->getFormat().get());
373 outputBuffer->release();
378 (M4OSA_UInt32)outputBuffer->range_length();
382 (void *)((M4OSA_MemAddr8)(outputBuffer->data())+outputBuffer->range_offset())
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
FilterPostProcessor.java 69 private FrameBuffer outputBuffer;
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/
director-ant.jar 
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
FlyweightMapStorage.java 195 * @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());
  /external/aac/libFDK/src/
FDK_bitbuffer.cpp 454 UCHAR *RESTRICT outputBuffer = outBuf;
466 /* copy 'bToWrite' bytes from bitbuffer to outputbuffer */
467 FDKmemcpy(outputBuffer, &hBitBuf->Buffer[hBitBuf->WriteOffset], bToWrite*sizeof(UCHAR));
472 outputBuffer += bToWrite ;
  /external/aac/libFDK/include/
FDK_bitstream.h 603 * \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)
614 FDK_Fetch(&hBitStream->hBitBuf, outputBuffer, writeBytes);
  /frameworks/av/libvideoeditor/vss/src/
M4VSS3GPP_Clip.c     [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp     [all...]

Completed in 1016 milliseconds

1 2