Searched defs:exponent (Results 26 - 50 of 180) sorted by relevance

12345678

/external/chromium_org/third_party/freetype/src/psaux/
H A Dpsconv.c265 /* read exponent, if any */
268 FT_Long exponent; local
274 exponent = PS_Conv_ToInt( &p, limit );
279 /* arbitrarily limit exponent */
280 if ( exponent > 1000 )
282 else if ( exponent < -1000 )
285 power_ten += exponent;
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.h83 int32_t exponent; /* Unadjusted exponent, unbiased, in */ member in struct:__anon12089
H A Dnfrule.h62 double getDivisor() const { return uprv_pow(radix, exponent); }
97 int16_t exponent; member in class:NFRule
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dquerymatrix.c25 * GLint exponent[16] )
27 * format. exponent[16] contains the unbiased exponents applied to the
29 * is close to mantissa[i] * 2^exponent[i]. The function returns a status
93 extern GLbitfield GL_APIENTRY _es_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16]);
99 GLbitfield GL_APIENTRY _es_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16]) argument
167 exponent[i] = (GLint) exp;
182 exponent[i] = (GLint) 0;
196 exponent[i] = (GLint) 0;
205 exponent[i] = (GLint) 0;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dsampler.h173 const int32_t exponent = ((x_high >> 20) & 0x7FF) - 1023; local
174 return exponent + log_table_[y];
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dsampler.h173 const int32_t exponent = ((x_high >> 20) & 0x7FF) - 1023; local
174 return exponent + log_table_[y];
/external/chromium_org/v8/src/arm/
H A Dinterface-descriptors-arm.cc46 const Register MathPowTaggedDescriptor::exponent() { return r2; } function in class:v8::internal::MathPowTaggedDescriptor
49 const Register MathPowIntegerDescriptor::exponent() { function in class:v8::internal::MathPowIntegerDescriptor
50 return MathPowTaggedDescriptor::exponent();
/external/chromium_org/v8/src/arm64/
H A Dinterface-descriptors-arm64.cc54 const Register MathPowTaggedDescriptor::exponent() { return x11; } function in class:v8::internal::MathPowTaggedDescriptor
57 const Register MathPowIntegerDescriptor::exponent() { return x12; } function in class:v8::internal::MathPowIntegerDescriptor
/external/chromium_org/v8/src/
H A Dconversions-inl.h89 int exponent = d.Exponent();
90 if (exponent < 0) {
91 if (exponent <= -Double::kSignificandSize) return 0;
92 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
94 if (exponent > 31) return 0;
95 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
144 int exponent = 0; local
178 exponent = overflow_bits_count;
185 exponent += radix_log_2;
206 exponent
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-code-stubs.cc49 int32_t exponent = (((exponent_bits & shifted_mask) >> local
52 if (exponent < 0) {
55 uint32_t unsigned_exponent = static_cast<uint32_t>(exponent);
60 if ((exponent - Double::kPhysicalSignificandSize) < 32) {
61 result = dbl.u[0] << (exponent - Double::kPhysicalSignificandSize);
66 big_result = big_result >> (Double::kPhysicalSignificandSize - exponent);
/external/compiler-rt/test/builtins/Unit/ppc/
H A Dqadd_test.c266 // Some test cases that cover the whole exponent range:
1831 int exponent = ilogb(r.hi); local
1832 exponent = (exponent < -1022 ? -1022 : exponent);
1833 double ulpError = scalbn(error, 106 - exponent);
H A Dqdiv_test.c754 int exponent = ilogb(r.hi); local
755 exponent = (exponent < -1022 ? -1022 : exponent);
756 double ulpError = scalbn(error, 106 - exponent);
H A Dqmul_test.c752 int exponent = ilogb(r.hi); local
753 exponent = (exponent < -1022 ? -1022 : exponent);
754 double ulpError = scalbn(error, 106 - exponent);
/external/freetype/src/psaux/
H A Dpsconv.c265 /* read exponent, if any */
268 FT_Long exponent; local
274 exponent = PS_Conv_ToInt( &p, limit );
279 /* arbitrarily limit exponent */
280 if ( exponent > 1000 )
282 else if ( exponent < -1000 )
285 power_ten += exponent;
/external/icu/icu4c/source/i18n/
H A DdecNumber.h83 int32_t exponent; /* Unadjusted exponent, unbiased, in */ member in struct:__anon21895
H A Dnfrule.h62 double getDivisor() const { return uprv_pow(radix, exponent); }
97 int16_t exponent; member in class:NFRule
/external/mesa3d/src/mesa/main/
H A Dquerymatrix.c25 * GLint exponent[16] )
27 * format. exponent[16] contains the unbiased exponents applied to the
29 * is close to mantissa[i] * 2^exponent[i]. The function returns a status
91 extern GLbitfield GL_APIENTRY _es_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16]);
97 GLbitfield GL_APIENTRY _es_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16]) argument
165 exponent[i] = (GLint) exp;
180 exponent[i] = (GLint) 0;
194 exponent[i] = (GLint) 0;
203 exponent[i] = (GLint) 0;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dpsconv.c283 /* read exponent, if any */
286 FT_Long exponent; local
292 exponent = PS_Conv_ToInt( &p, limit );
297 /* arbitrarily limit exponent */
298 if ( exponent > 1000 )
300 else if ( exponent < -1000 )
303 power_ten += exponent;
/external/aac/libSBRdec/src/
H A Dtranscendent.h114 \brief Add two values given by mantissa and exponent.
135 For the smaller summand, the exponent is adapted and
173 For the smaller summand, the exponent is adapted and
198 \brief Divide two values given by mantissa and exponent.
320 \brief Calculate the squareroot of a number given by mantissa and exponent
323 The base for the exponent is 2. Example: \f$ a = a\_m * 2^{a\_e} \f$<br>
330 SCHAR *exponent,
334 int input_e = (int) *exponent;
343 if (exponent==destScale) {
345 *exponent
329 FDK_sqrt_MantExp(FIXP_DBL *mantissa, SCHAR *exponent, const SCHAR *destScale) argument
[all...]
/external/chromium_org/net/quic/
H A Dquic_data_reader.cc74 // normalized (hidden bit set, exponent offset by one) with exponent zero.
75 // Zero exponent offset by one sets the bit exactly where the hidden bit is.
80 uint16 exponent = value >> kUFloat16MantissaBits; // No sign extend on uint! local
81 // After the fast pass, the exponent is at least one (offset by one).
82 // Un-offset the exponent.
83 --exponent;
84 DCHECK_GE(exponent, 1);
85 DCHECK_LE(exponent, kUFloat16MaxExponent);
86 // Here we need to clear the exponent an
90 *result <<= exponent; local
[all...]
H A Dquic_data_writer.cc62 // Fast path: either the value is denormalized, or has exponent zero.
70 // corresponds to exponent 1-30. In the output, mantissa is from 0 to 10,
71 // hidden bit is 11 and exponent is 11 to 15. Shift the highest bit to 11
73 uint16 exponent = 0; local
79 exponent += offset;
84 DCHECK_GE(exponent, 1);
85 DCHECK_LE(exponent, kUFloat16MaxExponent);
90 // exponent. Equivalently, we just add it to the exponent.
92 result = value + (exponent << kUFloat16MantissaBit
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.h64 EncodedData(Sign, int exponent, uint64_t coefficient);
71 int exponent() const { return m_exponent; } function in class:blink::Decimal::EncodedData
98 Decimal(Sign, int exponent, uint64_t coefficient);
121 int exponent() const function in class:blink::Decimal
124 return m_data.exponent();
147 // number ::= sign? digit+ ('.' digit*) (exponent-marker sign? digit+)?
148 // | sign? '.' digit+ (exponent-marker sign? digit+)?
150 // exponent-marker ::= 'e' | 'E'
166 int exponent; member in struct:blink::Decimal::AlignedOperands
H A DDecimalTest.cpp46 << ", " << String::number(data.exponent()).ascii().data()
83 Decimal encode(uint64_t coefficient, int exponent, Sign sign) argument
85 return Decimal(sign, exponent, coefficient);
119 EXPECT_EQ((expectedExponent), (decimal).value().exponent()); \
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dstrtod.cc116 int exponent,
129 exponent + (buffer.length() - kMaxSignificantDecimalDigits);
168 // Compute the binary exponent.
169 int exponent = 0; local
170 *result = DiyFp(significand, exponent);
177 int exponent,
191 // If the 10^exponent (resp. 10^-exponent) fits into a double too then we
196 if (exponent < 0 && -exponent < kExactPowersOfTenSiz
115 TrimToMaxSignificantDigits(Vector<const char> buffer, int exponent, char* significant_buffer, int* significant_exponent) argument
176 DoubleStrtod(Vector<const char> trimmed, int exponent, double* result) argument
230 AdjustmentPowerOfTen(int exponent) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_r11g11b10f.h59 /* Map exponent to the range [-127,128] */
60 int exponent = ((f32.ui >> 23) & 0xff) - 127; local
63 if (exponent == 128) { /* Infinity or NaN */
88 else if (exponent > -15) { /* Representable value */
89 exponent += UF11_EXPONENT_BIAS;
91 uf11 = exponent << UF11_EXPONENT_SHIFT | mantissa;
104 int exponent = (val & 0x07c0) >> UF11_EXPONENT_SHIFT; local
109 if (exponent == 0) {
115 else if (exponent == 31) {
120 exponent
146 int exponent = ((f32.ui >> 23) & 0xff) - 127; local
190 int exponent = (val & 0x03e0) >> UF10_EXPONENT_SHIFT; local
[all...]

Completed in 688 milliseconds

12345678