/external/oboe/src/flowgraph/resampler/ |
D | PolyphaseResamplerStereo.cpp | 57 float coefficient = *coefficients++; in readFrame() local 58 left += *xFrame++ * coefficient; in readFrame() 59 right += *xFrame++ * coefficient; in readFrame() 61 coefficient = *coefficients++; // next tap in readFrame() 62 left += *xFrame++ * coefficient; in readFrame() 63 right += *xFrame++ * coefficient; in readFrame() 65 coefficient = *coefficients++; // next tap in readFrame() 66 left += *xFrame++ * coefficient; in readFrame() 67 right += *xFrame++ * coefficient; in readFrame() 69 coefficient = *coefficients++; // next tap in readFrame() [all …]
|
D | MultiChannelResampler.cpp | 155 float coefficient = sinc(radians * cutoffScaler) * window; in generateCoefficients() local 156 mCoefficients.at(coefficientIndex++) = coefficient; in generateCoefficients() 157 gain += coefficient; in generateCoefficients()
|
/external/pigweed/pw_tokenizer/public/pw_tokenizer/ |
D | hash.h | 57 uint32_t coefficient = k65599HashConstant; in Hash() local 63 hash += coefficient * ch; in Hash() 64 coefficient *= k65599HashConstant; in Hash() 85 uint32_t coefficient = k65599HashConstant; variable 88 hash += coefficient * ch; 89 coefficient *= k65599HashConstant;
|
/external/pigweed/pw_rpc/py/pw_rpc/ |
D | ids.py | 24 coefficient = HASH_CONSTANT 27 hash_value = (hash_value + coefficient * ord(char)) % 2**32 28 coefficient = (coefficient * HASH_CONSTANT) % 2**32
|
/external/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | filterbanks.c | 97 const int16_t *coefficient, in WebRtcIsacfix_HighpassFilterFixDec32C() argument 128 :[coeff]"r"(coefficient), in WebRtcIsacfix_HighpassFilterFixDec32C() 135 a1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[5], state0) + in WebRtcIsacfix_HighpassFilterFixDec32C() 136 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[4], state0) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C() 137 b1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[7], state1) + in WebRtcIsacfix_HighpassFilterFixDec32C() 138 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[6], state1) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C() 141 a2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[1], state0) + in WebRtcIsacfix_HighpassFilterFixDec32C() 142 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[0], state0) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C() 143 b2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[3], state1) + in WebRtcIsacfix_HighpassFilterFixDec32C() 144 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[2], state1) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C()
|
D | pitch_filter_mips.c | 19 const int16_t* coefficient, in WebRtcIsacfix_PitchFilterCore() argument 55 : [coefficient] "r" (coefficient), [gain] "r" (gain), in WebRtcIsacfix_PitchFilterCore() 124 : [coefficient] "r" (coefficient), [inputState] "r" (inputState), in WebRtcIsacfix_PitchFilterCore()
|
D | filterbank_internal.h | 28 const int16_t* coefficient, 34 const int16_t* coefficient, 40 const int16_t* coefficient,
|
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/ |
D | RSAPrivateKeyStructure.java | 28 private BigInteger coefficient; field in RSAPrivateKeyStructure 61 BigInteger coefficient) in RSAPrivateKeyStructure() argument 71 this.coefficient = coefficient; in RSAPrivateKeyStructure() 94 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure() 144 return coefficient; in getCoefficient()
|
D | RSAPrivateKey.java | 25 private BigInteger coefficient; field in RSAPrivateKey 59 BigInteger coefficient) in RSAPrivateKey() argument 69 this.coefficient = coefficient; in RSAPrivateKey() 92 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKey() 142 return coefficient; in getCoefficient()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/pkcs/ |
D | RSAPrivateKeyStructure.java | 30 private BigInteger coefficient; field in RSAPrivateKeyStructure 63 BigInteger coefficient) in RSAPrivateKeyStructure() argument 73 this.coefficient = coefficient; in RSAPrivateKeyStructure() 96 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure() 146 return coefficient; in getCoefficient()
|
D | RSAPrivateKey.java | 29 private BigInteger coefficient; field in RSAPrivateKey 63 BigInteger coefficient) in RSAPrivateKey() argument 73 this.coefficient = coefficient; in RSAPrivateKey() 96 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKey() 146 return coefficient; in getCoefficient()
|
/external/eigen/doc/ |
D | TutorialArrayClass.dox | 3 /** \eigenManualPage TutorialArrayClass The Array class and coefficient-wise operations 14 perform coefficient-wise operations, which might not have a linear algebraic meaning, 15 such as adding a constant to every coefficient in the array or multiplying two arrays coefficient-w… 77 … valid if both arrays have the same size, and the addition or subtraction is done coefficient-wise. 79 …xpressions of the form <tt>array + scalar</tt> which add a scalar to each coefficient in the array. 96 multiplication as matrix product and arrays interpret multiplication as coefficient-wise product. T… 109 \section TutorialArrayClassCwiseOther Other coefficient-wise operations 111 The Array class defines other coefficient-wise operations besides the addition, subtraction and mul… 113 value of each coefficient, while \link ArrayBase::sqrt() .sqrt() \endlink computes the square root … 127 More coefficient-wise operations can be found in the \ref QuickRefPage. [all …]
|
/external/pigweed/pw_kvs/public/pw_kvs/internal/ |
D | hash.h | 27 uint32_t coefficient = 65599u; in Hash() local 30 hash += coefficient * uint32_t(ch); in Hash() 31 coefficient *= 65599u; in Hash()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/pkcs/ |
D | RSAPrivateKey.java | 29 private BigInteger coefficient; field in RSAPrivateKey 63 BigInteger coefficient) in RSAPrivateKey() argument 73 this.coefficient = coefficient; in RSAPrivateKey() 96 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKey() 146 return coefficient; in getCoefficient()
|
D | RSAPrivateKeyStructure.java | 30 private BigInteger coefficient; field in RSAPrivateKeyStructure 63 BigInteger coefficient) in RSAPrivateKeyStructure() argument 73 this.coefficient = coefficient; in RSAPrivateKeyStructure() 96 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure() 146 return coefficient; in getCoefficient()
|
/external/pigweed/pw_tokenizer/py/ |
D | generate_hash_macro.py | 119 coefficient=coefficient_format, 123 coefficient = HASH_CONSTANT**(i + 1) % 2**32 124 term = term_format.format(index=i, coefficient=coefficient)
|
/external/pigweed/pw_rpc/public/pw_rpc/internal/ |
D | hash.h | 34 uint32_t coefficient = kHashConstant; in Hash() local 40 hash += coefficient * ch; in Hash() 41 coefficient *= kHashConstant; in Hash()
|
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/ |
D | Utilities.java | 33 double coefficient; in hanningWindow() local 35 coefficient = (Constant.TWO_PI * i) / (length - 1); in hanningWindow() 36 samples[i] *= alpha - beta * Math.cos(coefficient); in hanningWindow()
|
/external/adhd/cras/src/server/ |
D | cras_control_rclient.c | 476 float *coefficient; in ccr_handle_message_from_client() local 485 coefficient_len * sizeof(m->coefficient[0]); in ccr_handle_message_from_client() 489 coefficient = in ccr_handle_message_from_client() 490 (float *)calloc(coefficient_len, sizeof(coefficient)); in ccr_handle_message_from_client() 491 if (!coefficient) { in ccr_handle_message_from_client() 496 memcpy(coefficient, m->coefficient, in ccr_handle_message_from_client() 497 coefficient_len * sizeof(coefficient)); in ccr_handle_message_from_client() 501 coefficient); in ccr_handle_message_from_client() 502 free(coefficient); in ccr_handle_message_from_client()
|
/external/pdfium/fxbarcode/common/reedsolomon/ |
D | BC_ReedSolomonGF256.cpp | 56 int32_t coefficient) { in BuildMonomial() argument 60 if (coefficient == 0) in BuildMonomial() 64 coefficients[0] = coefficient; in BuildMonomial()
|
/external/llvm-project/flang/runtime/ |
D | descriptor.cpp | 187 std::size_t coefficient{1}; in ZeroBasedElementNumber() local 191 result += coefficient * (subscript[k] - dim.LowerBound()); in ZeroBasedElementNumber() 192 coefficient *= dim.Extent(); in ZeroBasedElementNumber() 199 std::size_t coefficient{1}; in SubscriptsForZeroBasedElementNumber() local 204 dimCoefficient[j] = coefficient; in SubscriptsForZeroBasedElementNumber() 205 coefficient *= dim.Extent(); in SubscriptsForZeroBasedElementNumber() 207 if (elementNumber >= coefficient) { in SubscriptsForZeroBasedElementNumber()
|
/external/deqp/modules/glshared/ |
D | glsCalibration.hpp | 42 float coefficient; member 44 LineParameters (float offset_, float coefficient_) : offset(offset_), coefficient(coefficient_) {} in LineParameters() 57 float coefficient; member
|
D | glsCalibration.cpp | 86 result.coefficient = destructiveMedian(pairwiseCoefficients); in theilSenLinearRegression() 90 pointwiseOffsets.push_back(dataPoints[i].y() - result.coefficient*dataPoints[i].x()); in theilSenLinearRegression() 156 result.coefficient = linearSample(medianSlopes, 0.5f); in theilSenSiegelLinearRegression() 160 pointwiseOffsets.push_back(dataPoints[i].y() - result.coefficient*dataPoints[i].x()); in theilSenSiegelLinearRegression() 373 …if (estimatorLine.coefficient < coeffEpsilon) // Coefficient not good for sensible estimation; inc… in recomputeParameters() 378 …newCallCount = (int)((targetFrameTimeUs - estimatorLine.offset) / estimatorLine.coefficient + 0.5f… in recomputeParameters() 381 if (estimatorLine.offset + estimatorLine.coefficient*(float)newCallCount < minGoodFrameTimeUs) in recomputeParameters()
|
/external/oboe/apps/OboeTester/app/src/main/cpp/analyzer/ |
D | BaseSineAnalyzer.h | 146 const double coefficient = 0.1; in transformSample() local 149 setMagnitude((mMagnitude * (1.0 - coefficient)) + (magnitude * coefficient)); in transformSample()
|