Searched defs:length (Results 1 - 25 of 4032) sorted by path

1234567891011>>

/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 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.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 */
/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/src/
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/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/C/include/
H A Dantlr3bitset.h83 ANTLR3_UINT32 length; member in struct:ANTLR3_BITSET_LIST_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c277 * This must be called with the length pre-determined by the first byte.
278 * If not calling this from ConvertUTF8to*, then the length can be set by:
279 * length = trailingBytesForUTF8[*source]+1;
282 * If presented with a length > 4, this returns false. The Unicode
287 isLegalUTF8(const UTF8 *source, int length) { argument
289 const UTF8 *srcptr = source+length;
290 switch (length) {
320 int length = trailingBytesForUTF8[*source]+1; local
321 if (source+length > sourceEnd) {
324 return isLegalUTF8(source, length);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs90 public static int length( string str ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRStringStream.cs185 //System.out.println("LA("+i+"); p="+p+" n="+n+" data.length="+data.length);
261 public virtual string Substring(int start, int length) { argument
264 if (length < 0)
266 if (start + length > data.Length)
269 if (length == 0)
272 return new string(data, start, length);
H A DICharStream.cs44 string Substring(int start, int length); argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringBuilderExtensions.cs56 public static int length( this StringBuilder buffer ) method in class:Antlr.Runtime.JavaExtensions.StringBuilderExtensions
68 public static void setLength( this StringBuilder buffer, int length )
70 buffer.Length = length;
H A DStringExtensions.cs91 public static int length( this string str ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
H A DMyMacSpi.java38 private int length = 0; field in class:MyMacSpi
42 return length;
62 length = len;
68 return new byte[length];
73 length++;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DArrayRegion.java30 private int length; field in class:ArrayRegion
36 public ArrayRegion(byte tag, int length) { argument
38 this.length = length;
39 values = new Value[length];
59 * @return Returns the length.
62 return length;
65 * @param length The length to set.
67 public void setLength(int length) { argument
[all...]
H A DFrame.java211 private int length; field in class:Frame.Variable
227 length = -1;
340 * Gets variable length.
345 return length;
349 * Sets new variable length.
351 * @param length
352 * new variable length
354 public void setLength(int length) { argument
355 this.length = length;
[all...]
H A DPacket.java73 private int length; field in class:Packet
95 length = (int) readFromByteArray(p, LENGTH_INDEX, INT_SIZE);
96 if (length < HEADER_SIZE) {
98 "Packet creation error: size of packet = " + length
103 data = new byte[p.length - HEADER_SIZE];
104 System.arraycopy(p, HEADER_SIZE, data, 0, p.length - HEADER_SIZE);
109 * Gets the length value of the header of the Packet.
111 * @return the length value of the header of the Packet.
114 return length;
228 int new_data_size = data.length
[all...]

Completed in 1415 milliseconds

1234567891011>>