Searched refs:size (Results 1 - 25 of 26517) sorted by path

1234567891011>>

/external/aac/libAACdec/include/
H A Daacdecoder_lib.h171 If the bitstream's configuration (number of channels, sample rate, frame size) is not known in advance, you may
188 The external input buffer is set in the example framework main.cpp and its size is defined by ::IN_BUF_SIZE.
199 The size of the decoder-internal input buffer is set in tpdec_lib.h (see define ::TRANSPORTDEC_INBUF_SIZE).
200 You may choose a smaller size under the following considerations:
203 - the whole buffer must be of size 2^n
536 INT frameSize; /*!< The frame size of the decoded PCM audio signal. \n
603 * \param size Size of the buffer pointed to by buffer.
609 int size );
617 * \param size Pointer to a buffer receiving the length of the requested ancillary data element.
624 int *size );
[all...]
/external/aac/libAACdec/src/
H A Daacdec_pns.cpp253 * \param size amount of noise values to be generated.
258 int size,
269 for (i=0; i<size; i++)
281 for (i=size; i--; )
292 static void ScaleBand (FIXP_DBL *RESTRICT spec, int size, int scaleFactor, int specScale, int noise_e, int out_of_phase) argument
313 for (i = size ; i-- != 0; ) {
318 for (i = size ; i-- != 0; ) {
257 GenerateRandomVector(FIXP_DBL *RESTRICT spec, int size, int *pRandomState) argument
H A Daacdec_tns.cpp216 static void CTns_Filter (FIXP_DBL *spec, int size, int inc, FIXP_TCC coeff [], int order) argument
225 // - An input vector of "size" samples is processed and the index increment
237 for (i=0; i<size; i++) {
250 pSpec = &spec[size - 1];
283 for (i = size ; i != 0 ; i--)
299 for (i = size ; i != 0 ; i--)
313 for (i = size ; i != 0 ; i--)
341 int window,index,start,stop,size; local
397 size = stop - start;
399 if (size >
[all...]
H A Daacdecoder.cpp231 \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
237 if (size >= 0) {
239 ancData->bufferSize = size;
255 \size Pointer to a buffer receiving the length of the requested anc data element in bytes
259 AAC_DECODER_ERROR CAacDecoder_AncDataGet(CAncData *ancData, int index, unsigned char **ptr, int *size) argument
264 *size = 0;
269 *size = ancData->offset[index+1] - ancData->offset[index];
1045 self->pAacDecoderStaticChannelInfo[ch]->pOverlapBuffer = GetOverlapBuffer(ch); /* This area size depends on the AOT */
H A Daacdecoder.h269 \size Size of the buffer pointed on by buffer
273 AAC_DECODER_ERROR CAacDecoder_AncDataInit(CAncData *ancData, unsigned char *buffer, int size);
281 \size Pointer to a buffer receiving the length of the requested anc data element
285 AAC_DECODER_ERROR CAacDecoder_AncDataGet(CAncData *ancData, int index, unsigned char **ptr, int *size);
H A Daacdecoder_lib.cpp235 int size )
239 return CAacDecoder_AncDataInit(ancData, buffer, size);
247 int *size )
251 return CAacDecoder_AncDataGet(ancData, index, ptr, size);
/external/aac/libAACenc/src/
H A Daacenc_lib.cpp1300 { /* Get bitstream outputbuffer size */
1690 UINT *size,
1707 /* Check buffer size */
1708 if (FDKgetValidBits(&tmpConf) > ((*size)<<3))
1711 FDKfetchBuffer(&tmpConf, confBuffer, size);
1689 aacEncGetConf(HANDLE_AACENCODER hAacEncoder, UINT *size, UCHAR *confBuffer) argument
H A Dadj_thr.cpp273 INT size = 0; local
280 size = bits2PeConfigTab[i].nEntries;
284 if ( (peTab!=NULL) && (size!=0) ) {
291 for (i=0; i<size-1; i++)
293 if ((peTab[i].bitrate<=bitRate) && ((peTab[i+1].bitrate>bitRate) || ((i==size-2)) ))
2015 input: current pe, peMin, peMax, bitres size
H A Dpnsparam.cpp190 int hUsePns=0, size, i; local
195 size = sizeof(levelTable_lowComplexity);
199 size = (numChan > 1) ? sizeof(levelTable_stereo) : sizeof(levelTable_mono);
202 for(i = 0; i < (int) (size/sizeof(AUTO_PNS_TAB)); i++) {
H A Dpsy_configuration.cpp216 int size; local
225 size = (INT)(sizeof(sfbInfoTab)/sizeof(SFB_INFO_TAB));
229 size = sizeof(sfbInfoTabLD512);
233 size = sizeof(sfbInfoTabLD480);
239 for(i = 0; i < size; i++){
257 if (i == size) {
/external/aac/libFDK/include/
H A Ddct.h105 * \param size size of pDat.
109 void dct_II(FIXP_DBL *pDat, FIXP_DBL *tmp, int size, int *pDat_e);
117 * \param size size of pDat.
121 void dct_III(FIXP_DBL *pDat, FIXP_DBL *tmp, int size, int *pDat_e);
128 * \param size size of pDat.
132 void dct_IV(FIXP_DBL *pDat,int size, int *pDat_e);
139 * \param size siz
[all...]
/external/aac/libSBRdec/src/
H A Dsbr_dec.cpp142 /* Number of QMF timeslots in one half of a frame (size of Workbuffer1 or 2): */
274 dependend on the frame size. For mp3PRO, there are 18 slots per frame
886 int l, startBand, stopBand, startSlot, size; local
921 size = fixMax(0,stopBand-startBand);
926 FDKmemclear(&OverlapBufferReal[l][startBand], size*sizeof(FIXP_DBL));
927 FDKmemclear(&OverlapBufferImag[l][startBand], size*sizeof(FIXP_DBL));
931 FDKmemclear(&OverlapBufferReal[l][startBand], size*sizeof(FIXP_DBL));
940 size = fixMax(0,stopBand-startBand);
942 FDKmemclear(&hSbrDec->LppTrans.lpcFilterStatesReal[0][startBand], size*sizeof(FIXP_DBL));
943 FDKmemclear(&hSbrDec->LppTrans.lpcFilterStatesReal[1][startBand], size*sizeo
[all...]
/external/aac/libSYS/include/
H A DgenericStds.h259 void *FDKcalloc (const UINT n, const UINT size);
260 void *FDKmalloc (const UINT size);
266 * \param size Size of requested memory in bytes.
270 void *FDKaalloc (const UINT size, const UINT alignment);
290 * \param size See MSDN documentation on calloc().
294 void *FDKcalloc_L(const UINT n, const UINT size, MEMORY_SECTION s);
300 void *FDKaalloc_L(const UINT size, const UINT alignment, MEMORY_SECTION s);
321 void FDKmemcpy(void *dst, const void *src, const UINT size);
331 void FDKmemmove(void *dst, const void *src, const UINT size);
341 void FDKmemclear(void *memPtr, const UINT size);
[all...]
/external/aac/libSYS/src/
H A DgenericStds.cpp203 void *FDKcalloc (const UINT n, const UINT size) argument
207 ptr = calloc(n, size);
214 void *FDKmalloc (const UINT size) argument
218 ptr = malloc(size);
233 void *FDKaalloc(const UINT size, const UINT alignment) argument
236 addr = FDKcalloc(1, size + alignment + sizeof(void*)); /* Malloc and clear memory. */
269 void *FDKcalloc_L(const UINT dim, const UINT size, MEMORY_SECTION s) argument
276 a_size = ((dim*size+3)&0xfffffffc); /* force 4 byte alignment (1111 .... 1111 1100) */
285 return FDKcalloc(dim, size);
298 void *FDKaalloc_L(const UINT size, cons argument
330 FDKmemcpy(void *dst, const void *src, const UINT size) argument
337 FDKmemmove(void *dst, const void *src, const UINT size) argument
338 FDKmemset(void *memPtr, const INT value, const UINT size) argument
339 FDKmemclear(void *memPtr, const UINT size) argument
343 FDKmemcmp(const void *s1, const void *s2, const UINT size) argument
345 FDKstrncmp(const char *s1, const char *s2, const UINT size) argument
392 FDKfwrite(void *ptrf, INT size, UINT nmemb, FDKFILE *fp) argument
395 FDKfread(void *dst, INT size, UINT nmemb, FDKFILE *fp) argument
398 FDKfgets(void *dst, INT size, FDKFILE *fp) argument
405 FDKfwrite_EL(void *ptrf, INT size, UINT nmemb, FDKFILE *fp) argument
427 FDKfread_EL(void *dst, INT size, UINT nmemb, FDKFILE *fp) argument
[all...]
H A Dwav_file.cpp133 /* Read RIFF size. Ignored. */
253 * \nBits sample size in bits to be used for the buffer
388 UINT size = 0; local
425 size = sizeof(WAV_HEADER);
426 if (FDKfwrite(&wav->header, 1, size, wav->fp) != size)
459 * \param nBufBits size in bits of each audio sample in sampleBuffer
494 /* Adapt sample size */
529 UINT size = 0; local
544 size
[all...]
/external/aac/libSYS/src/linux/
H A DgenericStds_linux.cpp118 void __aeabi_memcpy(void *dest, void *src, int size) argument
120 memcpy(dest, src, size);
122 void __aeabi_memcpy4(void *dest, void *src, int size) argument
124 memcpy(dest, src, size);
126 void __aeabi_memmove4(void *dest, void *src, int size) argument
128 memmove(dest, src, size);
130 void __aeabi_memclr(void *ptr, int size) argument
132 memset(ptr, 0, size);
134 void __aeabi_memclr4(void *ptr, int size) argument
136 memset(ptr, 0, size);
[all...]
/external/android-clat/
H A Dclatd_test.cpp600 int count_onebits(const void *data, size_t size) { argument
602 for (size_t pos = 0; pos < size; pos++) {
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DMain.java194 if (makeDot && tokens.size() < 4096)
/external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DGUnitExecuteMojo.java251 return new URLClassLoader( classPathUrls.toArray( new URL[classPathUrls.size()] ), getClass().getClassLoader() );
331 System.out.println( " Found " + failureNames.size() + " failures" );
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DInterp.java79 System.exit(executer.failures.size() + executer.invalids.size());
H A DJUnitCodeGen.java395 for (int j=0; j<words.size(); j++) {
H A DgUnitBaseTest.java107 if ( currentIndex!=input.size() ) {
108 ps2.println("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'");
245 if ( tokens.index()!=tokens.size()-1 ) {
417 if ( tokens.index()!=tokens.size()-1 ) {
H A DgUnitExecutor.java261 if ( currentIndex!=input.size() ) {
262 ps2.print("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'");
380 if ( tokens.index()!=tokens.size()-1 ) {
548 if ( tokens.index()!=tokens.size()-1 ) {
H A DgUnitTestSuite.java75 expect.setTestCaseIndex(this.testSuites.size());
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DRule.java66 for(int i=0; i<this.size(); i++) {

Completed in 1686 milliseconds

1234567891011>>