Home
last modified time | relevance | path

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

1234567891011

/external/oboe/src/flowgraph/resampler/
DPolyphaseResamplerStereo.cpp57 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 …]
/external/pigweed/pw_tokenizer/public/pw_tokenizer/
Dhash.h61 uint32_t coefficient = k65599HashConstant; in Hash() local
67 hash += coefficient * ch; in Hash()
68 coefficient *= k65599HashConstant; in Hash()
89 uint32_t coefficient = k65599HashConstant; variable
92 hash += coefficient * ch;
93 coefficient *= k65599HashConstant;
/external/armnn/third-party/stb/
Dstb_image_resize.h1136 …float coefficient = *stbir__get_coefficient(coefficients, filter, scale_ratio, j, i - contributors… in stbir__normalize_downsample_coefficients() local
1137 total += coefficient; in stbir__normalize_downsample_coefficients()
1474 … float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; in stbir__resample_horizontal_upsample() local
1475 STBIR_ASSERT(coefficient != 0); in stbir__resample_horizontal_upsample()
1476 … output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; in stbir__resample_horizontal_upsample()
1483 … float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; in stbir__resample_horizontal_upsample() local
1484 STBIR_ASSERT(coefficient != 0); in stbir__resample_horizontal_upsample()
1485 … output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; in stbir__resample_horizontal_upsample()
1486 … output_buffer[out_pixel_index + 1] += decode_buffer[in_pixel_index + 1] * coefficient; in stbir__resample_horizontal_upsample()
1493 … float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; in stbir__resample_horizontal_upsample() local
[all …]
/external/pigweed/pw_rpc/py/pw_rpc/
Dids.py24 coefficient = HASH_CONSTANT
27 hash_value = (hash_value + coefficient * ord(char)) % 2**32
28 coefficient = (coefficient * HASH_CONSTANT) % 2**32
/external/pigweed/pw_rpc/ts/
Dhash.ts27 let coefficient = HASH_CONSTANT;
30 hashValue = (hashValue + coefficient * ord) % 2 ** 32;
31 coefficient = (coefficient * HASH_CONSTANT) % 2 ** 32;
/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 …]
/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()
94 coefficient = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure()
144 return coefficient; in getCoefficient()
DRSAPrivateKey.java25 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/
DRSAPrivateKeyStructure.java30 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()
DRSAPrivateKey.java29 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/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/pkcs/
DRSAPrivateKey.java29 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()
DRSAPrivateKeyStructure.java30 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/
Dgenerate_hash_macro.py128 coefficient=coefficient_format,
133 coefficient = HASH_CONSTANT ** (i + 1) % 2**32
134 term = term_format.format(index=i, coefficient=coefficient)
/external/pigweed/pw_kvs/public/pw_kvs/internal/
Dhash.h27 uint32_t coefficient = 65599u; in Hash() local
30 hash += coefficient * uint32_t(ch); in Hash()
31 coefficient *= 65599u; in Hash()
/external/pigweed/pw_rpc/public/pw_rpc/internal/
Dhash.h34 uint32_t coefficient = kHashConstant; in Hash() local
40 hash += coefficient * ch; in Hash()
41 coefficient *= kHashConstant; in Hash()
/external/pigweed/pw_rpc/java/main/dev/pigweed/pw_rpc/
DIds.java27 int coefficient = HASH_CONSTANT; in calculate() local
30 hash += coefficient * b; in calculate()
31 coefficient *= HASH_CONSTANT; in calculate()
/external/pigweed/pw_tokenizer/
Dsimple_tokenize_test.cc35 uint32_t coefficient = k65599HashConstant; in TestHash() local
44 hash += coefficient * str[i]; in TestHash()
45 coefficient *= k65599HashConstant; in TestHash()
/external/rust/crates/pkcs1/src/private_key/
Dother_prime_info.rs28 pub coefficient: UIntRef<'a>, field
37 coefficient: reader.decode()?, in decode_value()
48 f(&[&self.prime, &self.exponent, &self.coefficient]) in fields()
/external/rust/crates/pkcs1/tests/
Dprivate_key.rs32 …assert_eq!(key.coefficient.as_bytes(), hex!("31995406D406207CADEAEA35B38D040C5F8A9A1AE0827E9ED06B1… in decode_rsa2048_der()
50 …assert_eq!(key.coefficient.as_bytes(), hex!("8C557C4835E8B4066606A5DC255DBC3EB5F1586C7328988C8E242… in decode_rsa4096_der()
76 …assert_eq!(key.coefficient.as_bytes(), hex!("03B54C52199604D9A920B1B7AB95F0B474BA46796CC46C3E63C48… in decode_rsa2048_multi_prime_der()
82 …assert_eq!(other_prime_infos[0].coefficient.as_bytes(), hex!("39EA226CABFB317E41A5593B9168D1A01249… in decode_rsa2048_multi_prime_der()
/external/pdfium/fxbarcode/common/reedsolomon/
DBC_ReedSolomonGF256.cpp55 int32_t coefficient) { in BuildMonomial() argument
59 if (coefficient == 0) in BuildMonomial()
63 coefficients[0] = coefficient; in BuildMonomial()
/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/oboe/apps/OboeTester/app/src/main/cpp/analyzer/
DBaseSineAnalyzer.h153 const double coefficient = 0.1; in transformSample() local
156 setMagnitude((mMagnitude * (1.0 - coefficient)) + (magnitude * coefficient)); in transformSample()
/external/cronet/third_party/protobuf/benchmarks/php/
DPhpBenchmark.php51 private $coefficient; variable in Google\\Protobuf\\Benchmark\\Benchmark
59 $this->coefficient = pow (10, 0) / pow(2, 20);
67 $this->coefficient;
/external/protobuf/benchmarks/php/
DPhpBenchmark.php51 private $coefficient; variable in Google\\Protobuf\\Benchmark\\Benchmark
59 $this->coefficient = pow (10, 0) / pow(2, 20);
67 $this->coefficient;

1234567891011