Home
last modified time | relevance | path

Searched refs:coefficient (Results 1 – 25 of 217) sorted by relevance

123456789

/external/libxcam/modules/isp/
Daiq3a_utils.cpp83 double coefficient = 0.0; in translate_atomisp_parameters() local
93 coefficient = pow (2, (16 - atomisp_params.wb_config->integer_bits)); in translate_atomisp_parameters()
94 wb->r_gain = atomisp_params.wb_config->r / coefficient; in translate_atomisp_parameters()
95 wb->gr_gain = atomisp_params.wb_config->gr / coefficient; in translate_atomisp_parameters()
96 wb->gb_gain = atomisp_params.wb_config->gb / coefficient; in translate_atomisp_parameters()
97 wb->b_gain = atomisp_params.wb_config->b / coefficient; in translate_atomisp_parameters()
139 coefficient = pow (2, atomisp_params.yuv2rgb_cc_config->fraction_bits); in translate_atomisp_parameters()
141 tmp_matrix [i] = atomisp_params.yuv2rgb_cc_config->matrix [i] / coefficient; in translate_atomisp_parameters()
171 coefficient = pow (2, (13 - atomisp_params.macc_config->color_effect)); in translate_atomisp_parameters()
173 macc->table[i] = (double)atomisp_params.macc_table->data[i] / coefficient; in translate_atomisp_parameters()
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dfilterbanks.c94 const int16_t *coefficient, in WebRtcIsacfix_HighpassFilterFixDec32C() argument
125 :[coeff]"r"(coefficient), in WebRtcIsacfix_HighpassFilterFixDec32C()
132 a1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[5], state0) + in WebRtcIsacfix_HighpassFilterFixDec32C()
133 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[4], state0) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C()
134 b1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[7], state1) + in WebRtcIsacfix_HighpassFilterFixDec32C()
135 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[6], state1) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C()
138 a2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[1], state0) + in WebRtcIsacfix_HighpassFilterFixDec32C()
139 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[0], state0) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C()
140 b2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[3], state1) + in WebRtcIsacfix_HighpassFilterFixDec32C()
141 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[2], state1) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C()
Dpitch_filter_mips.c19 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()
Dfilterbank_internal.h28 const int16_t* coefficient,
34 const int16_t* coefficient,
40 const int16_t* coefficient,
Dpitch_filter_armv6.S28 @ 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].
Dpitch_filter_c.c25 const int16_t* coefficient, in WebRtcIsacfix_PitchFilterCore() argument
38 tmpW32 += ubufQQpos2[*index2 + j] * coefficient[j]; in WebRtcIsacfix_PitchFilterCore()
Dfilterbanks_mips.c108 const int16_t* coefficient, in WebRtcIsacfix_HighpassFilterFixDec32MIPS() argument
140 : [coeff_ptr] "r" (coefficient), [state0] "r" (state0), in WebRtcIsacfix_HighpassFilterFixDec32MIPS()
/external/eigen/doc/
DTutorialArrayClass.dox3 /** \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 …]
DTutorialReductionsVisitorsBroadcasting.dox35 If you want other coefficient-wise \f$\ell^p\f$ norms, use the \link MatrixBase::lpNorm lpNorm<p>()…
66coefficient-wise comparison and equality operators provided by Array. For instance, <tt>array > 0<…
84 Visitors are useful when one wants to obtain the location of a coefficient inside
88 the location of the greatest or smallest coefficient in a Matrix or
104 Both functions also return the value of the minimum or maximum coefficient.
198 … use the operators <tt>*=</tt>, <tt>/=</tt>, <tt>*</tt> and <tt>/</tt> to perform coefficient-wise
254 this operation is a row vector where each coefficient is the squared Euclidean distance between eac…
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
DRSAPrivateKeyStructure.java28 private BigInteger coefficient; field in RSAPrivateKeyStructure
61 BigInteger coefficient) in RSAPrivateKeyStructure() argument
71 this.coefficient = coefficient; in RSAPrivateKeyStructure()
93 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure()
143 return coefficient; in getCoefficient()
DRSAPrivateKey.java25 private BigInteger coefficient; field in RSAPrivateKey
59 BigInteger coefficient) in RSAPrivateKey() argument
69 this.coefficient = coefficient; in RSAPrivateKey()
91 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKey()
141 return coefficient; in getCoefficient()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/pkcs/
DRSAPrivateKey.java29 private BigInteger coefficient; field in RSAPrivateKey
63 BigInteger coefficient) in RSAPrivateKey() argument
73 this.coefficient = coefficient; in RSAPrivateKey()
95 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKey()
145 return coefficient; in getCoefficient()
DRSAPrivateKeyStructure.java30 private BigInteger coefficient; field in RSAPrivateKeyStructure
63 BigInteger coefficient) in RSAPrivateKeyStructure() argument
73 this.coefficient = coefficient; in RSAPrivateKeyStructure()
95 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure()
145 return coefficient; in getCoefficient()
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DUtilities.java33 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/deqp/modules/glshared/
DglsCalibration.cpp86 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()
DglsCalibration.hpp42 float coefficient; member
44 LineParameters (float offset_, float coefficient_) : offset(offset_), coefficient(coefficient_) {} in LineParameters()
57 float coefficient; member
/external/pdfium/fxbarcode/common/reedsolomon/
DBC_ReedSolomonGF256.cpp79 int32_t coefficient, in BuildMonomial() argument
85 if (coefficient == 0) { in BuildMonomial()
92 coefficients[0] = coefficient; in BuildMonomial()
DBC_ReedSolomonGF256Poly.cpp184 int32_t coefficient) const { in MultiplyByMonomial()
187 if (coefficient == 0) in MultiplyByMonomial()
193 product[i] = m_field->Multiply(m_coefficients[i], coefficient); in MultiplyByMonomial()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dloop_dependence.cpp155 auto coefficient = recurrence->GetCoefficient()->AsSEConstantNode(); in CalculateGCDFromCoefficients() local
158 running_gcd, std::abs(coefficient->FoldToSingleValue())); in CalculateGCDFromCoefficients()
512 SENode* coefficient, in StrongSIVTest() argument
527 return SymbolicStrongSIVTest(source, destination, coefficient, in StrongSIVTest()
562 SEConstantNode* coefficient_constant = coefficient->AsSEConstantNode(); in StrongSIVTest()
666 SENode* source, SENode* destination, SENode* coefficient, in SymbolicStrongSIVTest() argument
679 coefficient)) { in SymbolicStrongSIVTest()
697 SENode* source, SERecurrentNode* destination, SENode* coefficient, in WeakZeroSourceSIVTest() argument
713 SEConstantNode* coefficient_constant = coefficient->AsSEConstantNode(); in WeakZeroSourceSIVTest()
813 GetFinalTripInductionNode(subscript_loop, coefficient), in WeakZeroSourceSIVTest()
[all …]
Dloop_dependence.h365 SENode* coefficient);
486 SENode* coefficient,
494 SENode* coefficient,
502 SENode* coefficient,
510 SENode* coefficient, DistanceEntry* distance_entry);
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dloop_dependence.cpp155 auto coefficient = recurrence->GetCoefficient()->AsSEConstantNode(); in CalculateGCDFromCoefficients() local
158 running_gcd, std::abs(coefficient->FoldToSingleValue())); in CalculateGCDFromCoefficients()
512 SENode* coefficient, in StrongSIVTest() argument
527 return SymbolicStrongSIVTest(source, destination, coefficient, in StrongSIVTest()
562 SEConstantNode* coefficient_constant = coefficient->AsSEConstantNode(); in StrongSIVTest()
666 SENode* source, SENode* destination, SENode* coefficient, in SymbolicStrongSIVTest() argument
679 coefficient)) { in SymbolicStrongSIVTest()
697 SENode* source, SERecurrentNode* destination, SENode* coefficient, in WeakZeroSourceSIVTest() argument
713 SEConstantNode* coefficient_constant = coefficient->AsSEConstantNode(); in WeakZeroSourceSIVTest()
813 GetFinalTripInductionNode(subscript_loop, coefficient), in WeakZeroSourceSIVTest()
[all …]
Dloop_dependence.h365 SENode* coefficient);
486 SENode* coefficient,
494 SENode* coefficient,
502 SENode* coefficient,
510 SENode* coefficient, DistanceEntry* distance_entry);
/external/ImageMagick/MagickCore/
Dresize.c98 coefficient[7]; /* cubic coefficents for BC-cubic filters */ member
239 return(resize_filter->coefficient[0]+x*(x* in CubicBC()
240 (resize_filter->coefficient[1]+x*resize_filter->coefficient[2]))); in CubicBC()
242 return(resize_filter->coefficient[3]+x*(resize_filter->coefficient[4]+x* in CubicBC()
243 (resize_filter->coefficient[5]+x*resize_filter->coefficient[6]))); in CubicBC()
319 return(exp((double)(-resize_filter->coefficient[1]*x*x))); in Gaussian()
378 return(resize_filter->coefficient[1]*I0(resize_filter->coefficient[0]* in Kaiser()
1046 resize_filter->coefficient[0]=value; /* note sigma too */ in AcquireResizeFilter()
1047 resize_filter->coefficient[1]=PerceptibleReciprocal(2.0*value*value); /* sigma scaling */ in AcquireResizeFilter()
1048 resize_filter->coefficient[2]=PerceptibleReciprocal(Magick2PI*value*value); in AcquireResizeFilter()
[all …]
/external/python/pyasn1/docs/source/
Dexample-use-case.rst34 coefficient INTEGER
82 NamedType('coefficient', Integer())
123 coefficient=10207364473358910343346707141115...
162 … 'exponent2': 9240965721817961178848297404494811, 'coefficient': 10207364473358910343346707141115}
/external/adhd/cras/src/server/
Dcras_dbus_control.c717 float *coefficient; in handle_set_global_output_channel_remix() local
733 coefficient = (float *)calloc(count, sizeof(*coefficient)); in handle_set_global_output_channel_remix()
734 if (!coefficient) in handle_set_global_output_channel_remix()
738 coefficient[i] = coeff_array[i]; in handle_set_global_output_channel_remix()
743 coefficient); in handle_set_global_output_channel_remix()
746 free(coefficient); in handle_set_global_output_channel_remix()

123456789