/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
H A D | pitch_filter_mips.c | 19 const int16_t* coefficient, 40 "lwl %[coef1], 3(%[coefficient]) \n\t" 41 "lwl %[coef2], 7(%[coefficient]) \n\t" 42 "lwl %[coef3], 11(%[coefficient]) \n\t" 43 "lwl %[coef4], 15(%[coefficient]) \n\t" 44 "lwr %[coef1], 0(%[coefficient]) \n\t" 45 "lwr %[coef2], 4(%[coefficient]) \n\t" 46 "lwr %[coef3], 8(%[coefficient]) \n\t" 47 "lwr %[coef4], 12(%[coefficient]) \n\t" 48 "lhu %[coef5], 16(%[coefficient]) \ 13 WebRtcIsacfix_PitchFilterCore(int loopNumber, int16_t gain, size_t index, int16_t sign, int16_t* inputState, int16_t* outputBuf2, const int16_t* coefficient, int16_t* inputBuf, int16_t* outputBuf, int* index2) argument [all...] |
H A D | filterbank_internal.h | 23 * coefficient: Input. 28 const int16_t* coefficient, 34 const int16_t* coefficient, 40 const int16_t* coefficient,
|
H A D | pitch_filter_c.c | 25 const int16_t* coefficient, 38 tmpW32 += ubufQQpos2[*index2 + j] * coefficient[j]; 19 WebRtcIsacfix_PitchFilterCore(int loopNumber, int16_t gain, size_t index, int16_t sign, int16_t* inputState, int16_t* outputBuf2, const int16_t* coefficient, int16_t* inputBuf, int16_t* outputBuf, int* index2) argument
|
H A D | filterbanks.c | 94 const int16_t *coefficient, 125 :[coeff]"r"(coefficient), 132 a1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[5], state0) + 133 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[4], state0) >> 16); 134 b1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[7], state1) + 135 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[6], state1) >> 16); 138 a2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[1], state0) + 139 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[0], state0) >> 16); 140 b2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[3], state1) + 141 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[ 92 WebRtcIsacfix_HighpassFilterFixDec32C(int16_t *io, int16_t len, const int16_t *coefficient, int32_t *state) argument [all...] |
H A D | pitch_estimator.h | 46 const int16_t* coefficient,
|
H A D | filterbanks_mips.c | 108 const int16_t* coefficient, 140 : [coeff_ptr] "r" (coefficient), [state0] "r" (state0), 106 WebRtcIsacfix_HighpassFilterFixDec32MIPS(int16_t* io, int16_t len, const int16_t* coefficient, int32_t* state) argument
|
H A D | pitch_filter_armv6.S | 28 @ const int16_t* coefficient, 56 ldr r9, [sp, #48] @ coefficient 66 @ r9: &coefficient[] 74 ldr r4, [r9], #4 @ coefficient[0, 1] 86 ldrh r4, [r9], #-16 @ r9 back to &coefficient[0].
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
H A D | RSAPrivateKey.java | 25 private BigInteger coefficient; field in class:RSAPrivateKey 59 BigInteger coefficient) 69 this.coefficient = coefficient; 91 coefficient = ((ASN1Integer)e.nextElement()).getValue(); 141 return coefficient; 156 * coefficient INTEGER, -- (inverse of q) mod p 51 RSAPrivateKey( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient) argument
|
H A D | RSAPrivateKeyStructure.java | 28 private BigInteger coefficient; field in class:RSAPrivateKeyStructure 61 BigInteger coefficient) 71 this.coefficient = coefficient; 93 coefficient = ((ASN1Integer)e.nextElement()).getValue(); 143 return coefficient; 158 * coefficient INTEGER, -- (inverse of q) mod p 53 RSAPrivateKeyStructure( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient) argument
|
/external/deqp/modules/glshared/ |
H A D | glsCalibration.hpp | 42 float coefficient; member in struct:deqp::gls::LineParameters 44 LineParameters (float offset_, float coefficient_) : offset(offset_), coefficient(coefficient_) {} 57 float coefficient; member in struct:deqp::gls::LineParametersWithConfidence
|
H A D | glsCalibration.cpp | 84 // \note If there are no data point pairs with differing x values, the coefficient variable will stay zero as initialized. 86 result.coefficient = destructiveMedian(pairwiseCoefficients); 88 // Compute the offsets corresponding to the median coefficient, for all data points. 90 pointwiseOffsets.push_back(dataPoints[i].y() - result.coefficient*dataPoints[i].x()); 156 result.coefficient = linearSample(medianSlopes, 0.5f); 158 // Compute the offsets corresponding to the median coefficient, for all data points. 160 pointwiseOffsets.push_back(dataPoints[i].y() - result.coefficient*dataPoints[i].x()); 373 if (estimatorLine.coefficient < coeffEpsilon) // Coefficient not good for sensible estimation; increase call count enough to get a reasonably different value. 377 // Solve newCallCount such that approximately targetFrameTime = offset + coefficient*newCallCount. 378 newCallCount = (int)((targetFrameTimeUs - estimatorLine.offset) / estimatorLine.coefficient [all...] |
/external/pdfium/xfa/src/fxbarcode/common/reedsolomon/ |
H A D | BC_ReedSolomonGF256.cpp | 80 int32_t coefficient,
86 if (coefficient == 0) {
93 coefficients[0] = coefficient;
78 BuildMonomial( int32_t degree, int32_t coefficient, int32_t& e) argument
|
H A D | BC_ReedSolomonGF256.h | 21 int32_t coefficient,
|
H A D | BC_ReedSolomonGF256Poly.h | 26 int32_t coefficient,
|
H A D | BC_ReedSolomonGF256Poly.cpp | 191 int32_t coefficient,
197 if (coefficient == 0) {
206 product[i] = (m_field->Multiply(m_coefficients[i], coefficient));
189 MultiplyByMonomial( int32_t degree, int32_t coefficient, int32_t& e) argument
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
H A D | BC_PDF417ECModulusGF.cpp | 68 int32_t coefficient,
75 if (coefficient == 0) {
83 coefficients[0] = coefficient;
66 buildMonomial( int32_t degree, int32_t coefficient, int32_t& e) argument
|
H A D | BC_PDF417ECModulusPoly.cpp | 80 int32_t coefficient = m_coefficients.GetAt(l);
local 81 result = m_field->add(result, coefficient);
216 int32_t coefficient,
223 if (coefficient == 0) {
233 product[i] = m_field->multiply(m_coefficients[i], coefficient);
307 int32_t coefficient = getCoefficient(degree);
local 308 if (coefficient != 0) {
309 if (coefficient < 0) {
311 coefficient = -coefficient;
214 multiplyByMonomial( int32_t degree, int32_t coefficient, int32_t& e) argument [all...] |
H A D | BC_PDF417ECModulusPoly.h | 28 int32_t coefficient,
|
H A D | BC_PDF417ECModulusGF.h | 20 int32_t coefficient,
|
/external/autotest/client/deps/glbench/src/ |
H A D | testbase.h | 27 // coefficient is multiplied (if inverse is false) or divided (if inverse is 31 // coefficient = width * height (measured in pixels), inverse = true 34 // coefficient = 1, inverse = false 38 double coefficient,
|
H A D | testbase.cc | 119 void RunTest(TestBase* test, const char* testname, const double coefficient, argument 137 value = coefficient * (inverse ? 1.0 / value : value);
|
/external/ceres-solver/examples/ |
H A D | denoising.cc | 95 const double coefficient = 1 / (2.0 * FLAGS_sigma * FLAGS_sigma); local 98 new QuadraticCostFunction(coefficient,
|
/external/ImageMagick/MagickCore/ |
H A D | resize.c | 100 coefficient[7]; /* cubic coefficents for BC-cubic filters */ 243 return(resize_filter->coefficient[0]+x*(x* 244 (resize_filter->coefficient[1]+x*resize_filter->coefficient[2]))); 246 return(resize_filter->coefficient[3]+x*(resize_filter->coefficient[4]+x* 247 (resize_filter->coefficient[5]+x*resize_filter->coefficient[6]))); 283 return(exp((double)(-resize_filter->coefficient[1]*x*x))); 342 return(resize_filter->coefficient[ 98 coefficient[7]; /* cubic coefficents for BC-cubic filters */ member in struct:_ResizeFilter [all...] |
/external/deqp/modules/gles2/functional/ |
H A D | es2fFlushFinishTests.cpp | 362 const float normWaitCoef = waitLine.coefficient * float(calibrationParams.maxDrawCalls) / float(MAX_SAMPLE_DURATION_US); 363 const float normReadCoef = readLine.coefficient * float(calibrationParams.maxDrawCalls) / float(MAX_SAMPLE_DURATION_US); 376 m_testCtx.getLog() << TestLog::Float("WaitCoefficient", "Wait coefficient", "", QP_KEY_TAG_NONE, waitLine.coefficient) 377 << TestLog::Float("ReadCoefficient", "Read coefficient", "", QP_KEY_TAG_NONE, readLine.coefficient) 378 << TestLog::Float("NormalizedWaitCoefficient", "Normalized wait coefficient", "", QP_KEY_TAG_NONE, normWaitCoef) 379 << TestLog::Float("NormalizedReadCoefficient", "Normalized read coefficient", "", QP_KEY_TAG_NONE, normReadCoef); 411 m_testCtx.getLog() << TestLog::Message << "ERROR: Expected " << name << " coefficient to be " << cmpName << " " << threshold << TestLog::EndMessage;
|
/external/deqp/modules/gles3/functional/ |
H A D | es3fFlushFinishTests.cpp | 471 const float normWaitCoef = waitLine.coefficient * float(calibrationParams.maxDrawCalls) / float(MAX_SAMPLE_DURATION_US); 472 const float normReadCoef = readLine.coefficient * float(calibrationParams.maxDrawCalls) / float(MAX_SAMPLE_DURATION_US); 485 m_testCtx.getLog() << TestLog::Float("WaitCoefficient", "Wait coefficient", "", QP_KEY_TAG_NONE, waitLine.coefficient) 486 << TestLog::Float("ReadCoefficient", "Read coefficient", "", QP_KEY_TAG_NONE, readLine.coefficient) 487 << TestLog::Float("NormalizedWaitCoefficient", "Normalized wait coefficient", "", QP_KEY_TAG_NONE, normWaitCoef) 488 << TestLog::Float("NormalizedReadCoefficient", "Normalized read coefficient", "", QP_KEY_TAG_NONE, normReadCoef); 520 m_testCtx.getLog() << TestLog::Message << "ERROR: Expected " << name << " coefficient to be " << cmpName << " " << threshold << TestLog::EndMessage;
|