Searched refs:exponent (Results 26 - 50 of 133) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavutil/
H A Dintfloat_readwrite.h29 uint8_t exponent[2]; member in struct:AVExtFloat
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/math-emu/
H A Dreg_convert.c22 /* Set up the exponent as a 16 bit quantity. */
23 setexponent16(x, exponent(a));
27 /* We only deal with the significand and exponent. */
H A Dfpu_trig.c41 if (exponent(st0_ptr) >= 63) {
60 q, exponent(st0_ptr) - exponent(&CONST_PI2));
61 setexponent16(&tmp, exponent(&CONST_PI2));
76 if ((exponent(st0_ptr) <= exponent(&CONST_PI2extra) + 64)
87 exponent(&CONST_PI2extra) +
88 exponent(&tmp));
109 && (exponent(st0_ptr) <= exponent(
1022 FPU_REG *st1_ptr = &st(1), exponent; local
[all...]
H A Dfpu_tags.c63 int exp = exponent(ptr);
76 return ((exponent(ptr) == EXP_BIAS + EXP_OVER)
H A Dreg_mul.c43 exponent(a) + exponent(b));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dintfloat_readwrite.h29 uint8_t exponent[2]; member in struct:AVExtFloat
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/vfp/
H A Dvfp.h153 s16 exponent; member in struct:vfp_single
163 * VFP_SINGLE_EXPONENT_BITS - number of bits in the exponent
196 s->exponent = vfp_single_packed_exponent(val);
200 if (s->exponent && s->exponent != 255)
213 (s->exponent << VFP_SINGLE_MANTISSA_BITS) +
231 if (s->exponent == 255) {
238 } else if (s->exponent == 0) {
258 s16 exponent; member in struct:vfp_double
305 s->exponent
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Deprecomp.h36 virtual Element Exponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent) const =0;
37 virtual Element CascadeExponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent, const DL_FixedBasePrecomputation<Element> &pc2, const Integer &exponent2) const =0;
57 Element Exponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent) const;
58 Element CascadeExponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent, const DL_FixedBasePrecomputation<Element> &pc2, const Integer &exponent2) const;
61 void PrepareCascade(const DL_GroupPrecomputation<Element> &group, std::vector<BaseAndExponent<Element> > &eb, const Integer &exponent) const;
65 Integer m_exponentBase; // what base to represent the exponent in
H A Deprecomp.cpp67 template <class T> void DL_FixedBasePrecomputationImpl<T>::PrepareCascade(const DL_GroupPrecomputation<Element> &i_group, std::vector<BaseAndExponent<Element> > &eb, const Integer &exponent) const
71 Integer r, q, e = exponent;
90 template <class T> T DL_FixedBasePrecomputationImpl<T>::Exponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent) const
92 std::vector<BaseAndExponent<Element> > eb; // array of segments of the exponent and precalculated bases
94 PrepareCascade(group, eb, exponent);
99 DL_FixedBasePrecomputationImpl<T>::CascadeExponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent, argument
102 std::vector<BaseAndExponent<Element> > eb; // array of segments of the exponent and precalculated bases
105 PrepareCascade(group, eb, exponent);
H A Dalgebra.cpp90 template <class T> T AbstractGroup<T>::ScalarMultiply(const Element &base, const Integer &exponent) const
93 SimultaneousMultiply(&result, base, &exponent, 1);
175 return group.ScalarMultiply(begin->base, begin->exponent);
177 return group.CascadeScalarMultiply(begin->base, begin->exponent, (begin+1)->base, (begin+1)->exponent);
187 while (!!begin->exponent)
189 // last->exponent is largest exponent, begin->exponent is next largest
190 t = last->exponent;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Disnan.c91 - exponent = 0x0001..0x7FFF, mantissa bit 63 = 0,
92 - exponent = 0x0000, mantissa bit 63 = 1.
94 - exponent = 0x7FFF, mantissa >= 0x8000000000000001. */
96 unsigned int exponent; local
99 exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
102 if (exponent == 0)
104 else if (exponent == EXP_MASK)
110 if (exponent == 0)
112 else if (exponent == EXP_MASK)
139 /* A NaN can be recognized through its exponent
[all...]
H A Dvasnprintf.c1620 12; /* sign, decimal point, exponent etc. */
3072 int exponent; local
3076 mantissa = printf_frexpl (arg, &exponent);
3079 exponent = 0;
3149 SNPRINTF (p, 6 + 1, decimal_format, exponent);
3156 sprintf ((char *) p, "%+d", exponent);
3164 sprintf (expbuf, "%+d", exponent);
3223 int exponent; local
3227 mantissa = printf_frexp (arg, &exponent);
3230 exponent
3522 int exponent = floorlog10l (arg < 0 ? -arg : arg); local
3538 int exponent = floorlog10 (arg < 0 ? -arg : arg); local
3664 int exponent; local
3814 int exponent; local
4126 int exponent; local
4288 int exponent; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/
H A Dtest-isnanl.h86 # define LDBL80_WORDS(exponent,manthi,mantlo) \
87 { ((unsigned int) (exponent) << 16) | ((unsigned int) (manthi) >> 16), \
92 # define LDBL80_WORDS(exponent,manthi,mantlo) \
93 { mantlo, manthi, exponent }
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/math-emu/
H A Dsgl_float.h46 /* The hidden bit is always the low bit of the exponent */
164 /* An infinity is represented with the max exponent and a zero mantissa */
195 #define Sgl_setwrapped_exponent(sgl_value,exponent,op) \
196 Deposit_sexponent(sgl_value,(exponent op SGL_WRAP))
262 #define Sgl_normalize(sgl_opnd,exponent) \
265 exponent -= 8; \
269 exponent -= 4; \
273 exponent -= 1; \
302 #define Sgl_denormalize(opnd,exponent,guard,sticky,inexact) \
304 if (exponent >
[all...]
H A Ddbl_float.h47 /* The hidden bit is always the low bit of the exponent */
115 /* Singles and doubles may include the sign and exponent fields. The
269 /* An infinity is represented with the max exponent and a zero mantissa */
318 #define Dbl_setwrapped_exponent(dbl_value,exponent,op) \
319 Deposit_dexponent(dbl_value,(exponent op DBL_WRAP))
387 * (due to the exponent becoming negative) during normalization.
442 #define Dbl_normalize(dbl_opndA,dbl_opndB,exponent) \
445 exponent -= 8; \
449 exponent -= 4; \
453 exponent
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/include/asm/
H A Duser.h38 unsigned int exponent:14; member in struct:user_fp::fp_reg
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/math-emu/
H A Dfp_util.S132 lsr.l #8,%d1 | exponent / sign
139 add.w #0x3fff-0x7f,%d1 | re-bias the exponent.
149 | exponent is zero, so explizit bit is already zero too
170 lsr.l #8,%d1 | exponent / sign
177 add.w #0x3fff-0x3ff,%d1 | re-bias the exponent.
194 | exponent is zero, so explizit bit is already zero too
668 sub.w #0x4000-0x3ff,%d2 | will the exponent fit?
714 | reset the high bit, and increment the exponent.
717 cmp.w #0x43ff,(%a0)+ | exponent now overflown?
799 | i.e. pathologically small (exponent i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/crypto/
H A Dzcrypt_cca_key.h69 unsigned char exponent[128]; member in struct:cca_private_ext_ME_sec
78 * section. So, an arbitrary public exponent of 0x010001 will be
161 char exponent[3]; member in struct:__anon14069
179 * section. So, an arbitrary public exponent of 0x010001 will be
182 memcpy(key->exponent, pk_exponent, 3);
185 temp = key->pvtMeSec.exponent +
186 sizeof(key->pvtMeSec.exponent) - mex->inputdatalength;
223 char exponent[0]; member in struct:__anon14070
234 temp = key->exponent;
343 * section. So, an arbitrary public exponent o
[all...]
H A Dzcrypt_pcica.c90 unsigned char *modulus, *exponent, *message; local
104 exponent = sme->exponent + sizeof(sme->exponent) - mod_len;
115 exponent = lme->exponent + sizeof(lme->exponent) - mod_len;
120 copy_from_user(exponent, mex->b_key, mod_len) ||
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/fpsp040/
H A Dsgetem.S4 | The entry point sGETEXP returns the exponent portion
5 | of the input argument. The exponent bias is removed
6 | and the exponent value is returned as an extended
49 movew LOCAL_EX(%a0),%d0 |get the exponent
59 movew LOCAL_EX(%a0),%d0 |load resulting exponent into d0
74 | with an exponent of +/- $3fff.
90 | then load the exponent with +/1 $3fff.
H A Ddecbin.S24 | A1. Convert the bcd exponent to binary by successive adds and muls.
39 | exponent equal to the exponent from A1 and the zero count
57 | the exponent factor. This is done by multiplying the
59 | exponent sign is positive, and dividing FP0 by FP1 if
123 | Calculate exponent:
125 | 2. Calculate absolute value of exponent in d1 by mul and add.
126 | 3. Correct for exponent sign.
134 | (*) d1: accumulator for binary exponent
141 | (*) L_SCR1: copy of original exponent wor
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/
H A De_4758cca.c111 unsigned char *exponent, long *modulusLength,
417 unsigned char exponent[256]; local
418 long exponentLength = sizeof(exponent);
457 exponent, &modulusLength, &modulusFieldLength,
468 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
501 unsigned char exponent[512]; local
502 long exponentLength = sizeof(exponent);
529 exponent, &modulusLength, &modulusFieldLength,
539 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
835 unsigned char *exponent, lon
833 getModulusAndExponent(const unsigned char *token, long *exponentLength, unsigned char *exponent, long *modulusLength, long *modulusFieldLength, unsigned char *modulus) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/engines/
H A De_4758cca.c105 unsigned char *exponent, long *modulusLength,
418 unsigned char exponent[256]; local
419 long exponentLength = sizeof(exponent);
462 exponent, &modulusLength, &modulusFieldLength,
474 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
510 unsigned char exponent[512]; local
511 long exponentLength = sizeof(exponent);
543 exponent, &modulusLength, &modulusFieldLength, modulus))
553 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
875 unsigned char *exponent, lon
874 getModulusAndExponent(const unsigned char*token, long *exponentLength, unsigned char *exponent, long *modulusLength, long *modulusFieldLength, unsigned char *modulus) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/
H A De_4758cca.c111 unsigned char *exponent, long *modulusLength,
417 unsigned char exponent[256]; local
418 long exponentLength = sizeof(exponent);
457 exponent, &modulusLength, &modulusFieldLength,
468 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
501 unsigned char exponent[512]; local
502 long exponentLength = sizeof(exponent);
529 exponent, &modulusLength, &modulusFieldLength,
539 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
835 unsigned char *exponent, lon
833 getModulusAndExponent(const unsigned char *token, long *exponentLength, unsigned char *exponent, long *modulusLength, long *modulusFieldLength, unsigned char *modulus) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/vendor_defns/
H A Dsureware.h130 * out param e: where to write exponent in bn format
248 const unsigned long *exponent, int dlen,

Completed in 352 milliseconds

123456