/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/ |
omxSP_FFTGetBufSize_C_FC32.c | 22 * required for the length 2^order complex FFT and IFFT functions. The function 28 * order - base-2 logarithm of the desired block length; valid in the range 43 OMXResult omxSP_FFTGetBufSize_C_FC32(OMX_INT order, OMX_INT *pSize) { 44 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER)) 51 return omxSP_FFTGetBufSize_C_SC32(order, pSize);
|
omxSP_FFTGetBufSize_R_F32.c | 22 * 2^order real FFT and IFFT functions. 29 * [in] order base-2 logarithm of the length; valid in the range 39 OMXResult omxSP_FFTGetBufSize_R_F32(OMX_INT order, OMX_INT *pSize) { 40 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER)) 48 return omxSP_FFTGetBufSize_R_S32(order, pSize);
|
omxSP_FFTGetBufSize_C_SC16.c | 39 * required for the length 2^order complex FFT and IFFT functions. The function 45 * order - base-2 logarithm of the desired block length; valid in the range 63 OMX_INT order, 69 /* Check for order zero */ 70 if (order == 0) 77 N = 1 << order;
|
omxSP_FFTGetBufSize_C_SC32.c | 39 * required for the length 2^order complex FFT and IFFT functions. The function 45 * order - base-2 logarithm of the desired block length; valid in the range 62 OMX_INT order, 68 /* Check for order zero */ 69 if (order == 0) 76 N = 1 << order;
|
omxSP_FFTGetBufSize_R_S16.c | 31 * 2^order real FFT and IFFT functions. 38 * [in] order base-2 logarithm of the length; valid in the range 48 OMXResult omxSP_FFTGetBufSize_R_S16(OMX_INT order, OMX_INT *pSize) { 51 /* Order zero not allowed */ 52 if (order == 0) { 56 NBy2 = 1 << (order - 1);
|
omxSP_FFTGetBufSize_R_S16S32.c | 38 * 2^order real FFT and IFFT functions. 45 * [in] order base-2 logarithm of the length; valid in the range 56 OMX_INT order, 63 /* Check for order zero */ 64 if (order == 0) 72 NBy2 = 1 << (order - 1);
|
omxSP_FFTGetBufSize_R_S32.c | 38 * 2^order real FFT and IFFT functions. 45 * [in] order base-2 logarithm of the length; valid in the range 56 OMX_INT order, 63 /* Check for order zero */ 64 if (order == 0) 72 NBy2 = 1 << (order - 1);
|
/external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/ |
omxSP_FFTGetBufSize_R_F32.c | 16 OMXResult omxSP_FFTGetBufSize_R_F32(OMX_INT order, OMX_INT* pSize) { 19 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER)) 22 /* For order larger than 4, compute Real FFT as Complex FFT of (order - 1). */ 23 if (order > 4) { 24 fft_size = 1 << (order - 1); 25 offset_lut_size = (SUBTRANSFORM_CONST >> (16 - order)) | 1; 27 fft_size = 1 << order; 28 offset_lut_size = (SUBTRANSFORM_CONST >> (17 - order)) | 1 [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
coleitr.h | 66 * The key of a character, is an integer composed of primary order(short), 67 * secondary order(char), and tertiary order(char). Java strictly defines the 82 * int32_t order = c->next(success); 84 * order = c->previous(success); 91 * The method next() returns the collation order of the next character based on 93 * collation order of the previous character based on the comparison level of 100 * Hence at the next call of next() or previous(), the first or last collation order, 101 * or collation order at the spefcifieid position will be returned. If a change of 107 * Character based on the comparison level of the collator. A collation order [all...] |
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/ |
omxSP_FFTGetBufSize_R_F32.c | 21 * 2^order real FFT and IFFT functions. 28 * [in] order base-2 logarithm of the length; valid in the range 38 OMXResult omxSP_FFTGetBufSize_R_F32(OMX_INT order, OMX_INT *pSize) { 42 if (!pSize || (order < 1) || (order > TWIDDLE_TABLE_ORDER)) 45 n_by_2 = 1 << (order - 1);
|
/external/chromium_org/third_party/opus/src/silk/float/ |
schur_FLP.c | 35 silk_float refl_coef[], /* O reflection coefficients (length order) */ 36 const silk_float auto_corr[], /* I autocorrelation sequence (length order+1) */ 37 opus_int order /* I order */ 44 silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ) [all...] |
warped_autocorrelation_FLP.c | 36 silk_float *corr, /* O Result [order + 1] */ 40 const opus_int order /* I Correlation order (even) */ 48 /* Order must be even */ 49 silk_assert( ( order & 1 ) == 0 ); 55 for( i = 0; i < order; i += 2 ) { 65 state[ order ] = tmp1; 66 C[ order ] += state[ 0 ] * tmp1; 70 for( i = 0; i < order + 1; i++ ) {
|
/external/libopus/silk/float/ |
schur_FLP.c | 35 silk_float refl_coef[], /* O reflection coefficients (length order) */ 36 const silk_float auto_corr[], /* I autocorrelation sequence (length order+1) */ 37 opus_int order /* I order */ 44 silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ) [all...] |
/external/libexif/libexif/ |
exif-byte-order.h | 1 /*! \file exif-byte-order.h 30 /*! Which byte order to use */ 32 /*! Big-endian byte order */ 34 /*! Little-endian byte order */ 38 /*! Return a short, localized, textual name for the given byte order. 39 * \param[in] order byte order 40 * \return localized textual name of the byte order 42 const char *exif_byte_order_get_name (ExifByteOrder order);
|
exif-byte-order.c | 1 /* exif-byte-order.c 23 #include <libexif/exif-byte-order.h> 29 exif_byte_order_get_name (ExifByteOrder order) 31 switch (order) {
|
exif-utils.h | 30 #include <libexif/exif-byte-order.h> 71 * \param[in] order byte order of raw value 74 ExifShort exif_get_short (const unsigned char *b, ExifByteOrder order); 79 * \param[in] order byte order of raw value 82 ExifSShort exif_get_sshort (const unsigned char *b, ExifByteOrder order); 87 * \param[in] order byte order of raw value 90 ExifLong exif_get_long (const unsigned char *b, ExifByteOrder order); [all...] |
/external/chromium_org/third_party/opus/src/silk/fixed/ |
schur64_FIX.c | 37 opus_int32 rc_Q16[], /* O Reflection coefficients [order] Q16 */ 38 const opus_int32 c[], /* I Correlations [order+1] */ 39 opus_int32 order /* I Prediction order */ 46 silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ) [all...] |
schur_FIX.c | 37 opus_int16 *rc_Q15, /* O reflection coefficients [order] Q15 */ 38 const opus_int32 *c, /* I correlations [order+1] */ 39 const opus_int32 order /* I prediction order */ 46 silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ) [all...] |
corrMatrix_FIX.c | 40 const opus_int16 *x, /* I x vector [L + order - 1] used to form data matrix X */ 43 const opus_int order, /* I Max lag for correlation */ 44 opus_int32 *Xt, /* O Pointer to X'*t correlation vector [order] */ 52 ptr1 = &x[ order - 1 ]; /* Points to first sample of column 0 of X: X[:,0] */ 57 for( lag = 0; lag < order; lag++ ) { 67 for( lag = 0; lag < order; lag++ ) { 76 const opus_int16 *x, /* I x vector [L + order - 1] used to form data matrix X */ 78 const opus_int order, /* I Max lag for correlation */ 80 opus_int32 *XX, /* O Pointer to X'*X correlation matrix [ order x order ] */ [all...] |
/external/libopus/silk/fixed/ |
schur64_FIX.c | 37 opus_int32 rc_Q16[], /* O Reflection coefficients [order] Q16 */ 38 const opus_int32 c[], /* I Correlations [order+1] */ 39 opus_int32 order /* I Prediction order */ 46 silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ) [all...] |
schur_FIX.c | 37 opus_int16 *rc_Q15, /* O reflection coefficients [order] Q15 */ 38 const opus_int32 *c, /* I correlations [order+1] */ 39 const opus_int32 order /* I prediction order */ 46 silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ) [all...] |
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/ |
real_fft.c | 18 int order; member in struct:RealFFT 21 struct RealFFT* WebRtcSpl_CreateRealFFTC(int order) { 24 if (order > kMaxFFTOrder || order < 0) { 32 self->order = order; 53 int n = 1 << self->order; 54 // The complex-value FFT implementation needs a buffer to hold 2^order 64 WebRtcSpl_ComplexBitReverse(complex_buffer, self->order); 65 result = WebRtcSpl_ComplexFFT(complex_buffer, self->order, 1) [all...] |
/external/chromium_org/base/message_loop/ |
message_loop_test.cc | 144 // Test that two tasks with different delays run in the right order. 169 // Test that two tasks with the same delay run in the order in which they 454 void RecursiveFunc(TaskList* order, int cookie, int depth, 456 order->RecordStart(RECURSIVE, cookie); 462 Bind(&RecursiveFunc, order, cookie, depth - 1, is_reentrant)); 464 order->RecordEnd(RECURSIVE, cookie); 467 void QuitFunc(TaskList* order, int cookie) { 468 order->RecordStart(QUITMESSAGELOOP, cookie); 470 order->RecordEnd(QUITMESSAGELOOP, cookie); 477 TaskList order; local 524 TaskList order; local 564 TaskList order; local 597 TaskList order; local 639 TaskList order; local 707 TaskList order; local 742 TaskList order; local 772 TaskList order; local 802 TaskList order; local 835 TaskList order; local 904 TaskList order; local 925 TaskList order; local 952 TaskList order; local [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
coleitr.h | 66 * The key of a character, is an integer composed of primary order(short), 67 * secondary order(char), and tertiary order(char). Java strictly defines the 82 * int32_t order = c->next(success); 84 * order = c->previous(success); 91 * The method next() returns the collation order of the next character based on 93 * collation order of the previous character based on the comparison level of 100 * Hence at the next call of next() or previous(), the first or last collation order, 101 * or collation order at the spefcifieid position will be returned. If a change of 107 * Character based on the comparison level of the collator. A collation order [all...] |
/external/chromium_org/third_party/speex/libspeex/ |
quant_lsp.h | 57 void lsp_quant_nb(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits); 60 void lsp_unquant_nb(spx_lsp_t *lsp, int order, SpeexBits *bits); 63 void lsp_quant_lbr(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits); 66 void lsp_unquant_lbr(spx_lsp_t *lsp, int order, SpeexBits *bits); 69 void lsp_quant_high(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits); 72 void lsp_unquant_high(spx_lsp_t *lsp, int order, SpeexBits *bits);
|