Home
last modified time | relevance | path

Searched refs:coefficient (Results 1 – 25 of 205) 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/
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()
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()
/external/syslinux/gpxe/src/crypto/
Dmd5.c33 u8 coefficient; member
60 .coefficient = 1,
65 .coefficient = 5,
70 .coefficient = 3,
75 .coefficient = 7,
120 g = ( ( i * step->coefficient + step->constant ) & 0xf ); in md5_transform()
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DUtilities.java32 double coefficient; in hanningWindow() local
34 coefficient = (Constant.TWO_PI * i) / (length - 1); in hanningWindow()
35 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/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()
279 return(exp((double)(-resize_filter->coefficient[1]*x*x))); in Gaussian()
338 return(resize_filter->coefficient[1]*I0(resize_filter->coefficient[0]* in Kaiser()
1005 resize_filter->coefficient[0]=value; /* note sigma too */ in AcquireResizeFilter()
1006 resize_filter->coefficient[1]=PerceptibleReciprocal(2.0*value*value); /* sigma scaling */ in AcquireResizeFilter()
1007 resize_filter->coefficient[2]=PerceptibleReciprocal(Magick2PI*value*value); in AcquireResizeFilter()
[all …]
/external/adhd/cras/src/server/
Dcras_dbus_control.c662 float *coefficient; in handle_set_global_output_channel_remix() local
678 coefficient = (float *)calloc(count, sizeof(*coefficient)); in handle_set_global_output_channel_remix()
679 if (!coefficient) in handle_set_global_output_channel_remix()
683 coefficient[i] = coeff_array[i]; in handle_set_global_output_channel_remix()
688 coefficient); in handle_set_global_output_channel_remix()
691 free(coefficient); in handle_set_global_output_channel_remix()
/external/scapy/scapy/layers/tls/
Dcert.py449 prime1=None, prime2=None, coefficient=None, argument
452 if None in [modulus, prime1, prime2, coefficient, privExp,
469 iqmp=coefficient, d=privExp,
488 coefficient = privkey.coefficient.val
492 coefficient=coefficient)
/external/adhd/cras/
DREADME.dbus-api149 array:double coefficient)
152 remixing. The coefficient array represents an N * N
154 M[i][j] = coefficient[i * N + j].
157 For example, coefficient [0.1, 0.9, 0.4, 0.6] will
/external/deqp/modules/gles2/functional/
Des2fFlushFinishTests.cpp362 …const float normWaitCoef = waitLine.coefficient * float(calibrationParams.maxDrawCalls) / float… in analyzeResults()
363 …const float normReadCoef = readLine.coefficient * float(calibrationParams.maxDrawCalls) / float… in analyzeResults()
376 …TestLog::Float("WaitCoefficient", "Wait coefficient", "", QP_KEY_TAG_NONE, waitLine.coefficient) in analyzeResults()
377 …TestLog::Float("ReadCoefficient", "Read coefficient", "", QP_KEY_TAG_NONE, readLine.coefficient) in analyzeResults()
/external/python/cpython3/Lib/test/decimaltestdata/
DddCanonical.decTest56 -- Finites: declets in coefficient
121 -- Inf: coefficient continuation bits (first, last, and a few others)
168 -- Inf: coefficient continuation bits
278 -- Inf: coefficient continuation bits
325 -- Inf: coefficient continuation bits
DdqCanonical.decTest57 -- Finites: declets in coefficient
136 -- Inf: coefficient continuation bits (first, last, and a few others)
199 -- Inf: coefficient continuation bits
301 -- Inf: coefficient continuation bits
344 -- Inf: coefficient continuation bits
/external/python/cpython2/Lib/test/decimaltestdata/
DddCanonical.decTest56 -- Finites: declets in coefficient
121 -- Inf: coefficient continuation bits (first, last, and a few others)
168 -- Inf: coefficient continuation bits
278 -- Inf: coefficient continuation bits
325 -- Inf: coefficient continuation bits

123456789