Searched refs:bufferSize (Results 1 - 25 of 279) sorted by path

1234567891011>>

/external/aac/libAACdec/include/
H A Daacdecoder_lib.h684 * \param bufferSize Size of external input buffer. This argument is required because decoder-internally
697 const UINT bufferSize[],
/external/aac/libAACdec/src/
H A Daacdecoder.cpp239 ancData->bufferSize = size;
300 if ((offset + ancBytes) > ancData->bufferSize)
H A Daacdecoder.h146 int bufferSize; member in struct:__anon27
H A Daacdecoder_lib.cpp705 const UINT bufferSize[],
718 tpErr = transportDec_FillData( self->hInput, pBuffer[layer], bufferSize[layer], &pBytesValid[layer], layer );
702 aacDecoder_Fill( HANDLE_AACDECODER self, UCHAR *pBuffer[], const UINT bufferSize[], UINT *pBytesValid ) argument
/external/aac/libFDK/include/
H A DFDK_bitbuffer.h154 const UINT bufferSize, UINT *bytesValid) ;
H A DFDK_bitstream.h575 * \param bufferSize Total size of inputBuffer array.
579 FDK_INLINE void FDKfeedBuffer (HANDLE_FDK_BITSTREAM hBitStream, const UCHAR inputBuffer [], const UINT bufferSize, UINT *bytesValid) argument
582 FDK_Feed(&hBitStream->hBitBuf, (UCHAR*)inputBuffer, bufferSize, bytesValid ) ;
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp366 const UINT bufferSize,
369 inputBuffer = &inputBuffer [bufferSize - *bytesValid] ;
364 FDK_Feed(HANDLE_FDK_BITBUF hBitBuf, UCHAR *RESTRICT inputBuffer, const UINT bufferSize, UINT *bytesValid) argument
/external/aac/libMpegTPDec/include/
H A DmpegFileRead.h154 * \param bufferSize Size of input buffer.
160 UINT bufferSize,
H A Dtpdec_lib.h373 * \param bufferSize Size of external input buffer. This argument is required because decoder-internally
387 const UINT bufferSize,
/external/aac/libMpegTPDec/src/
H A Dtpdec_lib.cpp298 const UINT bufferSize,
329 FDKfeedBuffer (hBs, pBuffer, bufferSize, pBytesValid) ;
295 transportDec_FillData( const HANDLE_TRANSPORTDEC hTp, UCHAR *pBuffer, const UINT bufferSize, UINT *pBytesValid, const INT layer ) argument
/external/aac/libMpegTPEnc/include/
H A DmpegFileWrite.h122 * \param bufferSize Size of buffer to write in bytes.
127 int bufferSize
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBufferedTreeNodeStream.h105 - (id) initWithTreeAdaptor:(ANTLRCommonTreeAdaptor *)anAdaptor Tree:(id<ANTLRTree>)tree WithBufferSize:(NSInteger)bufferSize;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBufferedTreeNodeStream.h105 - (id) initWithTreeAdaptor:(ANTLRCommonTreeAdaptor *)anAdaptor Tree:(id<ANTLRTree>)tree WithBufferSize:(NSInteger)bufferSize;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBufferedTreeNodeStream.h105 - (id) initWithTreeAdaptor:(ANTLRCommonTreeAdaptor *)anAdaptor Tree:(id<ANTLRTree>)tree WithBufferSize:(NSInteger)bufferSize;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBufferedTreeNodeStream.h106 - (id) initWithTreeAdaptor:(ANTLRCommonTreeAdaptor *)anAdaptor Tree:(ANTLRCommonTree *)tree WithBufferSize:(NSInteger)bufferSize;
/external/apache-http/src/org/apache/http/impl/io/
H A DChunkedOutputStream.java73 * @param bufferSize minimum chunk size (excluding last chunk)
76 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize) argument
79 this.cache = new byte[bufferSize];
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_hh.c1469 static bt_status_t get_report (bt_bdaddr_t *bd_addr, bthh_report_type_t reportType, uint8_t reportId, int bufferSize) argument
1476 reportType, reportId, bufferSize);
1500 reportId, bufferSize);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSUtils.java172 int tagNo, boolean isExplicit, int bufferSize) throws IOException
176 if (bufferSize != 0)
178 return octGen.getOctetOutputStream(new byte[bufferSize]);
171 createBEROctetOutputStream(OutputStream s, int tagNo, boolean isExplicit, int bufferSize) argument
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/
H A Ddevice_id_win.cc93 ULONG bufferSize = 15 * 1024; local
98 std::vector<unsigned char> buffer(bufferSize);
103 adapterAddresses, &bufferSize);
105 buffer.resize(bufferSize);
109 adapterAddresses, &bufferSize);
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DChunkedWritableByteChannel.java105 int bufferSize = buffer.remaining();
106 buffer.get(bytes, offset, bufferSize);
108 offset += bufferSize;
/external/chromium_org/extensions/renderer/resources/
H A Ddata_receiver.js91 * @param {number} bufferSize How large a buffer the data pipe should use.
97 function DataReceiver(handle, bufferSize, fatalErrorValue) {
101 capacityNumBytes: bufferSize,
H A Ddata_sender.js167 * @param {number} bufferSize How large a buffer the data pipe should use.
173 function DataSender(handle, bufferSize, fatalErrorValue) {
177 capacityNumBytes: bufferSize,
H A Dserial_service.js50 bufferSize: 4096,
140 this.options_.bufferSize,
143 sendPipe, this.options_.bufferSize, serialMojom.SendError.DISCONNECTED);
246 if ('bufferSize' in options)
247 this.options_.bufferSize = options.bufferSize;
/external/chromium_org/extensions/test/data/
H A Dserial_unittest.js28 bufferSize: BUFFER_SIZE,
84 test.assertEq(BUFFER_SIZE, connectionInfo.bufferSize);
206 test.assertEq(4096, connectionInfo.bufferSize);
325 {bufferSize: 1},
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DEncoder.java54 * @param bufferSize A hint on the size of the message. Used to build the initial byte
57 private EncoderState(Core core, int bufferSize) { argument
58 assert bufferSize % BindingsHelper.ALIGNMENT == 0;
61 bufferSize > 0 ? bufferSize : INITIAL_BUFFER_SIZE);

Completed in 9451 milliseconds

1234567891011>>