HomeSort by relevance Sort by last modified time
    Searched full:exponent (Results 351 - 375 of 1644) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/icu/source/i18n/
nfrule.cpp 35 , exponent(0)
134 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
171 // both rules have the same radix and exponent (i.e., the
174 rule2->exponent = rule1->exponent;
213 * exponent according to the descriptor. (If the description doesn't
321 // accordingly, and recalculate the rule's exponent
328 exponent = expectedExponent();
333 // decrement the exponent (unless the exponent is already 0)
    [all...]
decNumberLocal.h 164 #define DECNUMMAXE 999999999 /* maximum adjusted exponent ditto */
165 #define DECNUMMINE -999999999 /* minimum adjusted exponent ditto */
170 #error Maximum exponent mismatch
173 #error Minimum exponent mismatch
295 Int exponent; /* Unadjusted signed exponent (q), or */ member in struct:__anon11391
299 /* Test if exponent or bcdnum exponent must be a special, etc. */
303 #define NUMISSPECIAL(num) (EXPISSPECIAL((num)->exponent))
353 /* DFISINT -- test for finite and exponent q=0 *
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
floatnum_test.c 46 unsigned short exponent; /* bias 32767 exponent */ member in struct:Init_Entry_s
186 if (flt->exponent != val->exponent) {
187 strcat(result_msg, "exponent");
251 flt->exponent = vals[i].exponent;
  /external/icu4c/i18n/
nfrule.cpp 34 , exponent(0)
132 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
169 // both rules have the same radix and exponent (i.e., the
172 rule2->exponent = rule1->exponent;
211 * exponent according to the descriptor. (If the description doesn't
319 // accordingly, and recalculate the rule's exponent
326 exponent = expectedExponent();
331 // decrement the exponent (unless the exponent is already 0)
    [all...]
decNumberLocal.h 152 #define DECNUMMAXE 999999999 /* maximum adjusted exponent ditto */
153 #define DECNUMMINE -999999999 /* minimum adjusted exponent ditto */
158 #error Maximum exponent mismatch
161 #error Minimum exponent mismatch
283 Int exponent; /* Unadjusted signed exponent (q), or */ member in struct:__anon18871
287 /* Test if exponent or bcdnum exponent must be a special, etc. */
291 #define NUMISSPECIAL(num) (EXPISSPECIAL((num)->exponent))
341 /* DFISINT -- test for finite and exponent q=0 *
    [all...]
  /external/qemu/hw/
goldfish_mmc.c 234 uint8_t exponent; local
277 exponent = 0;
286 exponent++;
290 if (exponent < 2) {
293 exponent -= 2;
294 if (exponent > 7) {
300 s->resp[1] |= (exponent << (47 - 32));
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 304 // Accumulating all digits until a possible exponent
322 // An exponent was found
470 // Extracting the exponent, note that the bias is 1023
2194 long exponent = -(long)scale + end - begin; local
2239 long exponent = -(long)scale + end - begin; local
2523 int exponent = 1076; \/\/ bias + 53 local
    [all...]
  /external/dnsmasq/contrib/dns-loc/
dnsmasq2-loc-rfc1876.patch 161 + int mantissa, exponent;
164 + exponent = (int)((prec >> 0) & 0x0f) % 10;
166 + val = mantissa * poweroften[exponent];
179 + register int exponent;
198 + for (exponent = 0; exponent < 9; exponent++)
199 + if (cmval < poweroften[exponent+1])
202 + mantissa = cmval / poweroften[exponent];
206 + retval = (mantissa << 4) | exponent;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
log2_norm.cpp 93 exponent = pointer to the integer part of Log2 (of type Word16)
99 exponent points to the newly calculated integer part of Log2
118 1. exponent = 30 - norm_exponent
140 Word16 *exponent, // (o) : Integer part of Log2. (range: 0<=val<=30)
149 *exponent = 0;
154 *exponent = sub (30, exp);
199 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30)*/
208 *exponent = 0;
213 /* Calculate exponent portion of Log2 */
214 *exponent = 30 - exp
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
qgain475.cpp 361 exp_gcode0 = exponent of predicted CB gain (Word16)
404 Word16 exp_gcode0, // i : exponent of predicted CB gain, Q0
478 Word16 exp_gcode0, /* i : exponent of predicted CB gain, Q0 */
549 exp_gcode0 = predicted CB gain (exponent MSW) (Word16)
550 frac_gcode0 = predicted CB gain (exponent LSW) (Word16)
551 cod_gain_exp = optimum codebook gain (exponent)(Word16)
589 Word16 exp_gcode0, // i : predicted CB gain (exponent MSW), Q0
590 Word16 frac_gcode0, // i : predicted CB gain (exponent LSW), Q15
591 Word16 cod_gain_exp, // i : optimum codebook gain (exponent), Q0
618 // convert gcode0 from DPF to standard fraction/exponent forma
    [all...]
  /external/aac/libAACenc/src/
quantize.cpp 194 /* get approperiate exponent multiplier for specExp^3/4 combined with scfMod */
197 /* multiply "mantissa" ^4/3 with exponent multiplier */
200 /* get approperiate exponent shifter */
228 /* get approperiate exponent multiplier for specExp^3/4 combined with scfMod */
231 /* multiply "mantissa" ^4/3 with exponent multiplier */
234 /* get approperiate exponent shifter */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
dsEncode.decTest 28 -- 6 bits exponent continuation
31 -- Total exponent length 8 bits
34 -- Elimit = 191 (maximum encoded exponent)
35 -- Emax = 96 (largest exponent value)
36 -- Emin = -95 (smallest exponent value)
37 -- bias = 101 (subtracted from encoded exponent) = -Etiny
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
dsEncode.decTest 28 -- 6 bits exponent continuation
31 -- Total exponent length 8 bits
34 -- Elimit = 191 (maximum encoded exponent)
35 -- Emax = 96 (largest exponent value)
36 -- Emin = -95 (smallest exponent value)
37 -- bias = 101 (subtracted from encoded exponent) = -Etiny
  /external/aac/libSBRdec/src/
env_calc.cpp 117 Scaling of spectral data to maximize SNR (see #QMF_SCALE_FACTOR) as well as a special Mantissa-Exponent format
409 /* Convert headroom bits to exponent */
420 into mantissa and exponent. The variable names in the source code carry
427 research-implementation) of a mantissa/exponent-pair can be calculated as
434 to an 'input exponent' (#input_e), which fits the internal representation.
436 Before the actual processing, an exponent #adj_e for resulting adjusted
557 The resulting exponent is used as start value for the maximum search
577 /* Energy -> magnitude (sqrt halfens exponent) */
    [all...]
  /external/chromium_org/chrome/browser/devtools/adb/
android_rsa.cc 34 int exponent; // 3 or 65537 member in struct:__anon4542::RSAPublicKey
235 pkey.exponent = 65537; // Fixed public exponent
  /external/chromium_org/tools/perf/metrics/
statistics.py 170 def GeneralizedMean(values, exponent):
176 sum_of_powers += v ** exponent
177 return (sum_of_powers / len(values)) ** (1.0/exponent)
  /external/compiler-rt/lib/
truncdfsf2.c 107 // The exponent of a is within the range of normal numbers in the
109 // rounding and adjusting the exponent.
140 // zero. The result may be a denormal or zero. Extract the exponent
  /external/dropbear/libtommath/
bn_mp_exptmod_fast.c 21 * The value of k changes based on the size of the exponent.
213 /* grab the next msb from the exponent */
219 * in the exponent. Technically this opt is not required but it
  /external/neven/Embedded/common/src/b_TensorEm/
CompactAlt.h 53 /** exponent of translation vector */
113 * inExpA - input exponent
114 * outExpPtrA - exponent to output vector values
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwb_math_op.cpp 325 int16 * exp /* (i/o) : exponent (value = frac x 2^exponent) */
417 * The result is normalized (in Q31) with exponent (0..30).
428 int16 * exp /* (o) : exponent of result (0..+30) */
456 *exp = 30 - sft; /* exponent = 0..30 */
475 * normalized, and exp is the normalisation exponent
482 * 1- exponent = 30-norm_exponent
492 int16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
501 *exponent = 0;
506 *exponent = 30 - exp
547 Lg2_normalized(shl_int32(L_x, exp), exp, exponent, fraction); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 285 int32_t exponent = (mantissa >> 4) & 7; local
286 int32_t segment = exponent + 1;
291 int32_t abs = (0x80l << exponent) + step * mantissa + step / 2 - 4 * 33;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerConvertTest.java 164 * The exponent is 1023 and the mantissa is all 1s.
185 * The exponent is 1023 and the mantissa is all 1s.
205 * The exponent is 1023 and the mantissa is all 1s.
246 * The exponent is 1023 and the mantissa is all 0s.
267 * The exponent is 1023 and the mantissa is all 0s
288 * The exponent is 1023 and the mantissa is all 0s
438 * The exponent is 1023 and the mantissa is all 1s.
451 * The exponent is 1023 and the mantissa is all 1s.
464 * The exponent is 1023 and the mantissa is all 1s.
497 * The exponent is 1023 and the mantissa is all 0s
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
float.h 31 /* Radix of exponent representation, b. */
211 /* Minimum exponent. */
219 /* Maximum exponent. */
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
float.h 32 /* Radix of exponent representation, b. */
212 /* Minimum exponent. */
220 /* Maximum exponent. */
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/
float.h 31 /* Radix of exponent representation, b. */
211 /* Minimum exponent. */
219 /* Maximum exponent. */

Completed in 1662 milliseconds

<<11121314151617181920>>