Searched refs:buffer (Results 1 - 25 of 9657) sorted by path

1234567891011>>

/external/aac/libAACdec/include/
H A Daacdecoder_lib.h160 -# Read data from bitstream file or stream into a client-supplied input buffer ("inBuffer" in main.cpp).
163 when this buffer has completely been processed and is then empty. For file-based input execute
165 -# Call aacDecoder_Fill() to fill the decoder's internal bitstream input buffer with the client-supplied
166 external bitstream input buffer.
168 -# Call aacDecoder_DecodeFrame() which writes decoded PCM audio data to a client-supplied buffer. It is the
169 client's responsibility to allocate a buffer which is large enough to hold this output data.
184 There are three main buffers in an AAC decoder application. One external input buffer to hold bitstream
185 data from file I/O or elsewhere, one decoder-internal input buffer, and one to hold the decoded output
186 PCM sample data, whereas this output buffer may overlap with the external input buffer
[all...]
/external/aac/libAACdec/src/
H A Daacdecoder.cpp227 \brief Initialize ancillary buffer
230 \buffer Pointer to (external) anc data buffer
231 \size Size of the buffer pointed on by buffer in bytes
235 AAC_DECODER_ERROR CAacDecoder_AncDataInit(CAncData *ancData, unsigned char *buffer, int size) argument
238 ancData->buffer = buffer;
254 \ptr Pointer to a buffer receiving a pointer to the requested anc data element
255 \size Pointer to a buffer receivin
[all...]
H A Daacdecoder.h145 unsigned char *buffer; member in struct:__anon27
265 \brief Initialize ancillary buffer
268 \buffer Pointer to (external) anc data buffer
269 \size Size of the buffer pointed on by buffer
273 AAC_DECODER_ERROR CAacDecoder_AncDataInit(CAncData *ancData, unsigned char *buffer, int size);
280 \ptr Pointer to a buffer receiving a pointer to the requested anc data element
281 \size Pointer to a buffer receiving the length of the requested anc data element
H A Daacdecoder_lib.cpp234 UCHAR *buffer,
239 return CAacDecoder_AncDataInit(ancData, buffer, size);
853 /* Empty bit buffer in case of flush request. */
233 aacDecoder_AncDataInit( HANDLE_AACDECODER self, UCHAR *buffer, int size ) argument
/external/aac/libSYS/src/
H A Dwav_file.cpp251 * \buffer Pointer to store read data.
253 * \nBits sample size in bits to be used for the buffer
259 INT WAV_InputRead (HANDLE_WAV wav, void *buffer, UINT numSamples, int nBits) argument
263 SCHAR *bptr = (SCHAR*)buffer;
264 LONG *lptr = (LONG*)buffer;
265 SHORT *sptr = (SHORT*)buffer;
271 result = FDKfread_EL(buffer, wav->header.bitsPerSample >> 3, numSamples, wav->fp) ;
497 /* Correct alignment difference between 32 bit data buffer "tmp" and 24 bits to be written. */
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as88 * the input char buffer. Use setText() or can set this instance var.
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3debughandlers.c332 // Local buffer to read the next character in to
334 char buffer; local
339 // to buffer the input or anything.
343 rCount = recv(delboy->socket, &buffer, 1, 0);
345 while (rCount == 1 && buffer != '\n');
355 ANTLR3_PRINTF("Received char count was %d, and last char received was %02X\n", rCount, buffer);
360 // Given a buffer string and a source string, serialize the
365 serializeText(pANTLR3_STRING buffer, pANTLR3_STRING text) argument
372 buffer->append(buffer, "\
550 char buffer[512]; local
561 char buffer[512]; local
572 char buffer[512]; local
583 char buffer[512]; local
594 char buffer[512]; local
605 char buffer[512]; local
617 char buffer[512]; local
698 char buffer[128]; local
710 char buffer[128]; local
729 char buffer[128]; local
741 char buffer[128]; local
753 char buffer[128]; local
765 char buffer[256]; local
789 unsigned char * buffer; local
874 pANTLR3_STRING buffer; local
891 pANTLR3_STRING buffer; local
910 char buffer[128]; local
1005 char buffer[128]; local
1015 char buffer[128]; local
1027 char buffer[128]; local
1038 char buffer[128]; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DANTLRxxxxStreamFixture.cs136 byte[] buffer = encoding.GetBytes("One\r\nTwo");
137 MemoryStream grammarStream = new MemoryStream(buffer);
199 byte[] buffer = encoding.GetBytes("One\r\nTwo");
200 MemoryStream grammarStream = new MemoryStream(buffer);
237 byte[] buffer = encoding.GetBytes("One\r\nTwo\r\nThree");
238 MemoryStream grammarStream = new MemoryStream(buffer);
257 byte[] buffer = encoding.GetBytes("One\r\nTwo\r\nThree");
258 MemoryStream grammarStream = new MemoryStream(buffer);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs81 public static int read( this TextReader reader, char[] buffer, int index, int count ) argument
83 return reader.Read( buffer, index, count );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs79 public static int read( this TextReader reader, char[] buffer, int index, int count ) argument
81 return reader.Read( buffer, index, count );
H A DStringBuilderExtensions.cs44 public static void append<T>( this StringBuilder buffer, T value ) argument
46 buffer.Append( value );
50 public static char charAt( this StringBuilder buffer, int index ) argument
52 return buffer[index];
56 public static int length( this StringBuilder buffer )
58 return buffer.Length;
62 public static void setCharAt( this StringBuilder buffer, int index, char c ) argument
64 buffer[index] = c;
68 public static void setLength( this StringBuilder buffer, int length ) argument
70 buffer
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas717 /// Test what happens when tail hits the end of the buffer, but there
722 /// advanced somewhere to the middle of the lookahead buffer.
726 /// buffer has to wrap.
753 // now use LT to lookahead past end of buffer
758 // wrap past end of buffer
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas344 /// If you don't want to buffer up nodes, then this method makes no
364 /// If the stream does not buffer all the nodes then it can still
721 /// Walk tree with depth-first-search and fill nodes buffer.
1065 /// No new nodes should be created in tree during the walk. A small buffer
1353 /// The complete mapping from stream index to tree node. This buffer
1358 /// the buffer so we can set token types of interest for reverseIndexing.
1433 /// Walk tree with depth-first-search and fill nodes buffer.
1985 /// buffer.
1994 /// end of the lookahead buffer so tail could be less than head.
2059 /// buffer a
[all...]
H A DAntlr.Runtime.pas170 /// Only makes sense for streams that buffer everything up probably,
270 /// which doesn't have string pointers, just indexes into a char buffer.
335 /// If you don't want to buffer up tokens, then this method makes no
343 /// If the stream does not buffer all the tokens then it can just
382 /// <summary>What line number is the scanner at before processing buffer[P]? </summary>
385 /// <summary>What char position 0..N-1 in line is scanner before processing buffer[P]? </summary>
414 /// load, we can avoid lots of data copying and buffer resizing.
625 /// the input char buffer. Use setText() or can set this instance var.
1085 /// char buffer start..stop. If there is a text override in 'text',
1217 /// operations are done lazily--only if you convert the buffer t
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRPtrBuffer.h42 NSMutableData *buffer; variable
49 @property (retain, getter=getBuffer, setter=setBuffer:) NSMutableData *buffer; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRPtrBuffer.h42 NSMutableData *buffer; variable
49 @property (retain, getter=getBuffer, setter=setBuffer:) NSMutableData *buffer; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRPtrBuffer.h42 NSMutableData *buffer; variable
49 @property (retain, getter=getBuffer, setter=setBuffer:) NSMutableData *buffer; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DAMutableArray.h17 __strong NSMutableData *buffer; variable
47 @property (retain) NSMutableData *buffer; variable
H A DANTLRHashMap.h46 __strong NSMutableData *buffer; variable
108 @property (retain, getter=getBuffer, setter=setBuffer:) NSMutableData *buffer; variable
H A DANTLRIntArray.h39 NSMutableData *buffer; variable
70 @property (retain) NSMutableData *buffer; variable
H A DANTLRPtrBuffer.h43 __strong NSMutableData *buffer; variable
50 @property (retain, getter=getBuffer, setter=setBuffer:) NSMutableData *buffer; variable
/external/antlr/antlr-3.4/runtime/Python/
H A Dxmlrunner.py340 def write(self, buffer):
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb277 @buffer = StringIO.new
335 @buffer.string = string
336 @buffer.rewind
338 until @buffer.eof?
339 case c = @buffer.getc
341 nc = @buffer.getc
344 @buffer.ungetc( nc )
345 @buffer.read( 3 ).to_i( 8 ).chr
347 @buffer.read( 2 ).to_i( 16 ).chr

Completed in 1755 milliseconds

1234567891011>>