Searched refs:length (Results 1 - 25 of 12787) sorted by path

1234567891011>>

/external/aac/libAACdec/include/
H A Daacdecoder_lib.h122 the length of individual frames is not restricted to a fixed number of bytes, but can take on
123 any length between 1 and 768 bytes.
617 * \param size Pointer to a buffer receiving the length of the requested ancillary data element.
666 * \param length Length of the configuration buffer in bytes.
672 const UINT length[] );
/external/aac/libAACdec/src/
H A Daacdec_tns.cpp134 UCHAR length,coef_res,coef_compress; local
165 length = (UCHAR)FDKreadBits(bs, isLongFlag ? 6 : 4);
167 if (length > nextstopband){
168 length = nextstopband;
171 filter->StartBand = nextstopband - length;
H A Daacdecoder_lib.cpp157 const UINT length[] )
164 if(length[layer] > 0){
165 errTp = transportDec_OutOfBandConfig(self->hInput, conf[layer], length[layer], layer);
746 that the total frame length does not match the sum of sub frame length.
969 /* Apply upsampling factor to both the core frame length and the core delay */
H A Dblock.cpp664 int getWindow2Nr(int length, int shape) argument
670 nr = (length * 3)>>2;
686 /* Determine left slope length (fl), right slope length (fr) and transform length (tl).
687 USAC: The slope length may mismatch with the previous frame in case of LPD / FD
/external/aac/libAACenc/src/
H A Daacenc_tns.cpp773 tnsInfo->length[subBlockNumber][HIFILT] = tnsInfo->length[subBlockNumber][LOFILT] = 0;
815 tnsInfo->length[subBlockNumber][HIFILT] = sfbCnt - tC->lpcStartBand[HIFILT];
853 tnsInfo->length[subBlockNumber][LOFILT] = tC->lpcStartBand[HIFILT] - tC->lpcStartBand[LOFILT];
868 tnsInfo->length[subBlockNumber][HIFILT] = sfbCnt - tC->lpcStartBand[LOFILT];
969 tnsInfoDest->length [w][HIFILT] = tnsInfoSrc->length [w][HIFILT];
H A Daacenc_tns.h181 INT length[TRANS_FAC][MAX_NUM_OF_FILTERS]; member in struct:__anon85
185 /* for Long: length TNS_MAX_ORDER (12 for LC) is required -> 12 */
186 /* for Short: length TRANS_FAC*TNS_MAX_ORDER (only 5 for short LC) is required -> 8*5=40 */
H A Dbitenc.cpp510 FDKwriteBits(hBitStream,tnsInfo->length[i][j],(blockType==SHORT_WINDOW?4:6));
786 /* write length field(s) */
H A Dmetadata_compressor.cpp168 INT blockLength; /*!< Block length in samples. */
344 const UINT length
348 for(ldN=1;(((UINT)1)<<ldN) < length;ldN++);
/external/aac/libFDK/include/
H A DFDK_tools_rom.h141 * \brief Window slope access helper. Obtain a window of given length and shape.
142 * \param length Length of the window slope.
147 const FIXP_WTP * FDKgetWindowSlope(int length, int shape);
H A Dfft.h97 * \brief Perform an inplace complex valued FFT of length 2^n
99 * \param length Length of the FFT to be calculated.
105 void fft(int length, FIXP_DBL *pInput, INT *scalefactor);
108 * \brief Perform an inplace complex valued IFFT of length 2^n
110 * \param length Length of the FFT to be calculated.
116 void ifft(int length, FIXP_DBL *pInput, INT *scalefactor);
120 * Frequently used and fixed short length FFTs.
243 * \brief FFT of fixed length 16
248 * \brief FFT of fixed length 32
/external/aac/libFDK/src/
H A DFDK_tools_rom.cpp1142 * \brief Helper table containing the length, rasterand shape mapping to individual window slope tables.
1143 * [0: sine ][0: radix2 raster ][ceil(log2(length)) length 4 .. 1024 ]
1144 * [1: 10ms raster ][ceil(log2(length)) length 3.25 .. 960 ]
1145 * [2: 3/4 of radix 2 raster][ceil(log2(length)) length 3 .. 768 ]
1146 * [1: KBD ][0: radix2 raster ][ceil(log2(length)) length 128 .. 1024 ]
1147 * [1: 10ms raster ][ceil(log2(length)) lengt
1213 FDKgetWindowSlope(int length, int shape) argument
[all...]
H A Ddct.cpp268 void getTables(const FIXP_WTP **twiddle, const FIXP_STP **sin_twiddle, int *sin_step, int length) argument
272 /* Get ld2 of length - 2 + 1
274 +1: because we already include +1 because of ceil(log2(length)) */
275 ld2_length = DFRACT_BITS-1-fNormz((FIXP_DBL)length) - 1;
277 /* Extract sort of "eigenvalue" (the 4 left most bits) of length. */
278 switch ( (length) >> (ld2_length-1) ) {
H A Dfft.cpp104 /* Performs the FFT of length 3 according to the algorithm after winograd.
138 /* performs the FFT of length 5 according to the algorithm after winograd */
203 /* Performs the FFT of length 15. It is split into FFTs of length 3 and length 5. */
210 /* Sort input vector for fft's of length 3
263 /* Sort input vector for fft's of length 5
287 /* Sort output vector of length 15
1042 * \param cl length of each row of input data.
1043 * \param l total length o
1159 fftN2( FIXP_DBL *pInput, const int length, const int dim1, const int dim2, void (* const fft1)(FIXP_DBL *), void (* const fft2)(FIXP_DBL *), const FIXP_STB *RotVectorReal, const FIXP_STB *RotVectorImag ) argument
1332 fft(int length, FIXP_DBL *pInput, INT *pScalefactor) argument
1394 ifft(int length, FIXP_DBL *pInput, INT *scalefactor) argument
[all...]
/external/aac/libMpegTPDec/include/
H A Dtpdec_lib.h247 * \param elListSize The length of the table array.
310 * \param length The length in bytes of the conf buffer.
316 const UINT length,
424 * \param length On return, this value is overwritten with the actual access unit length in bits.
425 * Set to -1 if length is unknown.
/external/aac/libMpegTPDec/src/
H A DmpegFileFormat.h101 * \param length pointer to the length of the buffer fileData. Return length of first AU.
104 FILE_FORMAT GetFileFormat(UCHAR *fileData, UCHAR **pAu, UINT *length);
H A Dtpdec_adts.cpp366 int length; local
369 length = (pAdts->bs.frame_length - 7) << 3; /* aac_frame_length subtracted by the header size (7 bytes). */
371 length -= 16; /* substract 16 bit CRC */
374 length = -1; /* raw data block length is unknown */
377 length = -1;
379 length = (pAdts->rawDataBlockDist[blockNum] << 3) - 16;
382 if (blockNum == 0 && length > 0) {
383 length -= pAdts->bs.num_pce_bits;
385 return length;
[all...]
H A Dtpdec_lib.cpp217 TRANSPORTDEC_ERROR transportDec_OutOfBandConfig(HANDLE_TRANSPORTDEC hTp, UCHAR *conf, const UINT length, UINT layer ) argument
224 FDKinitBitStream(hBs, conf, 0x10000000, length<<3, BS_READER);
390 /* Check global frame length */
425 /* Check global frame length */
1082 hTp->auLength[layer] = -1; /* Access Unit data length is unknown. */
1087 So get the length out of the buffer. */
/external/aac/libSBRdec/src/
H A Dpsbitdec.cpp104 int *length) /*!< length of huffman codeword (or NULL) */
115 if (length) {
116 *length = bitCount;
102 decode_huff_cw(Huffman h, HANDLE_FDK_BITSTREAM hBitBuf, int *length) argument
H A Dpsdec.cpp957 INT i,k,length; local
967 length = (usb-FIRST_DELAY_SB)*sizeof(FIXP_DBL);
968 if(length>0) {
969 FDKmemclear(h_ps_d->specificTo.mpeg.pAaRealDelayBufferQmf[0], length);
970 FDKmemclear(h_ps_d->specificTo.mpeg.pAaImagDelayBufferQmf[0], length);
972 length = (fixMin(NO_DELAY_BUFFER_BANDS,(INT)usb)-FIRST_DELAY_SB)*sizeof(FIXP_DBL);
973 if(length>0) {
975 FDKmemclear(h_ps_d->specificTo.mpeg.pAaRealDelayBufferQmf[k], length);
976 FDKmemclear(h_ps_d->specificTo.mpeg.pAaImagDelayBufferQmf[k], length);
1042 /* invL = 1/(length o
[all...]
H A Dsbrdec_freq_sca.cpp103 static SBR_ERROR modifyBands(UCHAR max_band, UCHAR * diff, UCHAR length);
104 static void cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress);
562 cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress) argument
566 for(i=1; i<=length; i++)
579 modifyBands(UCHAR max_band_previous, UCHAR * diff, UCHAR length) argument
584 if ( change > (diff[length-1]-diff[0])>>1 )
585 change = (diff[length-1]-diff[0])>>1;
588 diff[length-1] -= change;
589 shellsort(diff, length);
/external/aac/libSBRenc/src/
H A Dsbrenc_freq_sca.cpp103 static INT modifyBands(INT max_band, INT * diff, INT length);
104 static void cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress);
583 cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress) argument
587 for(i=1;i<=length;i++)
593 modifyBands(INT max_band_previous, INT * diff, INT length) argument
598 if ( change > (diff[length-1] - diff[0]) / 2 )
599 change = (diff[length-1] - diff[0]) / 2;
602 diff[length-1] -= change;
603 FDKsbrEnc_Shellsort_int(diff, length);
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java138 int patIdxEnd = patDirs.length - 1;
140 int strIdxEnd = strDirs.length - 1;
223 int patIdxEnd = tokenizedPattern.length - 1;
225 int strIdxEnd = strDirs.length - 1;
365 int patIdxEnd = patArr.length - 1;
367 int strIdxEnd = strArr.length - 1;
371 for (int i = 0; i < patArr.length; i++) {
554 int len = path.length();
/external/ant-glob/src/org/apache/tools/ant/util/
H A DFileUtils.java117 int len = filename.length();
138 && filename.length() > 2 && filename.charAt(2) == sep)
170 for (int i = next; i < ca.length; i++) {
176 } else if (path.length() > 1 && path.charAt(1) == sep) {
181 path = path.substring(root.length());
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
H A DANTLR3.java702 if (parts.length <= 1) {
711 b = s.substring(to + ": ".length());
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DMain.java37 if (args.length > 0)
49 for (int i=s; i<args.length; i++)
81 for (int i=0; i<files.length; i++)
95 if (sourceFile.length() > 3)
97 String suffix = sourceFile.substring(sourceFile.length()-4).toLowerCase();
210 source = source.substring(0, source.length()-3);

Completed in 2093 milliseconds

1234567891011>>