Searched refs:exponent (Results 101 - 125 of 133) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dr600_blit_kms.c444 u32 result, i, exponent, fraction; local
449 exponent = 140; /* exponent biased by 127; */
458 exponent = exponent - 1;
461 result = exponent << 23 | (fraction & 0x7fffff); /* mask
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/gregbook/
H A Dwpng.c189 /* First get the default value for our display-system exponent, i.e.,
190 * the product of the CRT exponent and the exponent corresponding to
199 /* third-party utilities can modify the default LUT exponent */
239 double exponent = atof(p); local
241 if (exponent > 0.0)
242 default_gamma = 1.0 / exponent;
407 " exp \ttransfer-function exponent (``gamma'') of the image in\n"
410 "\t\t inverse of display-system exponent, i.e., 1 / (LUT * CRT)\n"
411 "\t\t (where LUT = lookup-table exponent an
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/line6/
H A Dcontrol.c107 int exponent = (((p[0] & 0x7f) << 1) | (p[1] >> 7)) - BIAS; local
109 exponent -= OFFSET;
111 if (exponent >= 0) {
112 part_int = mantissa << exponent;
115 part_int = mantissa >> -exponent;
116 part_frac = (mantissa << (32 + exponent)) & 0xffffffff;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/deprecated/
H A Dwxexpr.cpp1176 double exponent = (double)atoi(str2); local
1178 double d = mantissa * pow(10.0, exponent);
1191 double exponent = (double)atoi(str3); local
1193 double d = mantissa * pow(10.0, exponent);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/i4l/
H A Disdn_audio.c264 exponent, local
277 exponent = exp_lut[(sample >> 7) & 0xFF];
278 mantissa = (sample >> (exponent + 3)) & 0x0F;
279 ulawbyte = ~(sign | (exponent << 4) | mantissa);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/
H A Dtest-frexpl.c36 #define exp exponent
39 exponent for 'long double' is -964. Similarly, on PowerPC machines,
40 LDBL_MIN_EXP is -1021, but the smallest reliable exponent for 'long double'
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/fpsp040/
H A Dbugfix.S235 | Set ETEMP exponent bit 15 as the opposite of ete14
237 btst #6,ETEMP_EX(%a6) |check etemp exponent bit 14
329 | Set ETEMP exponent bit 15 as the opposite of ete14
331 btst #6,ETEMP_EX(%a6) |check etemp exponent bit 14
H A Dget_op.S225 movew FPTEMP_EX(%a6),%d0 |get destination exponent
255 movew ETEMP_EX(%a6),%d0 |get source exponent
291 | ;put exponent on stack
496 bfextu %d0{#20:#12},%d1 |get exponent into d1
548 bfextu %d0{#20:#12},%d1 |get exponent into d1
H A Dsint.S32 | result to the exponent $403e.
H A Dres_func.S207 movew LOCAL_EX(%a0),%d1 |compare exponent to double threshold
389 bsr nrm_set |normalize number (exponent will go
631 | replace exponent of src with $3fff (keep sign)
641 | replace exponent of src with $3fff (keep sign)
846 orw #0x3fff,%d0 |force the exponent to +/- 1
874 orw #0x3fff,%d0 |force the exponent to +/- 1
962 | The result has overflowed to $7fff exponent. Set I, ovfl,
1021 orw #0x3fff,%d0 |force the exponent to +/- 1
1049 orw #0x3fff,%d0 |force the exponent to +/- 1
1143 | The result has overflowed to $7fff exponent
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pcmcia/
H A Dcistpl.c41 static const u_int exponent[] = { variable
47 (mantissa[(((v)>>3)&15)-1] * exponent[(v)&7] / 10)
50 (mantissa[((v)>>3)&15] * exponent[(v)&7] / 10)
51 #define POWER_SCALE(v) (exponent[(v)&7])
955 timing->waitscale = exponent[scale & 3];
963 timing->rdyscale = exponent[scale & 7];
971 timing->rsvscale = exponent[scale];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A D07-floor1.tex133 11) iterate [j] over the range 0 ... (2 exponent [floor1_class_subclasses] element [i]) - 1 \{
143 16) vector [floor1_X_list] element [1] = 2 exponent [rangebits];
195 9) [csub] = (2 exponent [cbits])-1
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/demos/engines/rsaref/
H A Drsaref.c357 if (!RSAref_bn2bin(from->e, to->exponent, MAX_RSA_MODULUS_LEN))
396 if (!RSAref_bn2bin(from->d, to->exponent, MAX_RSA_MODULUS_LEN))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/demos/engines/rsaref/
H A Drsaref.c355 if (!RSAref_bn2bin(from->e,to->exponent,MAX_RSA_MODULUS_LEN)) return(0);
389 if (!RSAref_bn2bin(from->d,to->exponent,MAX_RSA_MODULUS_LEN)) return(0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/demos/engines/rsaref/
H A Drsaref.c357 if (!RSAref_bn2bin(from->e, to->exponent, MAX_RSA_MODULUS_LEN))
396 if (!RSAref_bn2bin(from->d, to->exponent, MAX_RSA_MODULUS_LEN))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_streams/
H A Dmain.c176 * of exponent, and 64 bits of significand (mantissa). Unlike most IEEE-754
183 unsigned int shift, exponent; local
190 exponent= 63U-(shift+32U); /* add 32 for unused second word */
192 if(!write_big_endian_uint16(f, (FLAC__uint16)(exponent+0x3FFF)))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/ifpsp060/src/
H A Dpfpsp.S414 set SGL_LO, 0x3f81 # min sgl prec exponent
415 set SGL_HI, 0x407e # max sgl prec exponent
416 set DBL_LO, 0x3c01 # min dbl prec exponent
417 set DBL_HI, 0x43fe # max dbl prec exponent
418 set EXT_LO, 0x0 # min ext prec exponent
419 set EXT_HI, 0x7ffe # max ext prec exponent
515 set sgl_thresh, 0x3f81 # minimum sgl exponent
516 set dbl_thresh, 0x3c01 # minimum dbl exponent
1439 mov.w LOCAL_EX(%a0),%d0 # fetch src exponent
1454 addi.w &0x3f81,%d0 # adjust new exponent
[all...]
H A Dfplsp.S395 set SGL_LO, 0x3f81 # min sgl prec exponent
396 set SGL_HI, 0x407e # max sgl prec exponent
397 set DBL_LO, 0x3c01 # min dbl prec exponent
398 set DBL_HI, 0x43fe # max dbl prec exponent
399 set EXT_LO, 0x0 # min ext prec exponent
400 set EXT_HI, 0x7ffe # max ext prec exponent
496 set sgl_thresh, 0x3f81 # minimum sgl exponent
497 set dbl_thresh, 0x3c01 # minimum dbl exponent
6722 # are the sign and biased exponent field of |X|; the #
7496 # sgetexp(): returns the exponent portio
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dpubkey.h576 virtual Element ExponentiateBase(const Integer &exponent) const
578 return GetBasePrecomputation().Exponentiate(GetGroupPrecomputation(), exponent);
580 virtual Element ExponentiateElement(const Element &base, const Integer &exponent) const
583 SimultaneousExponentiate(&result, base, &exponent, 1);
658 virtual Element ExponentiatePublicElement(const Integer &exponent) const
661 return GetPublicPrecomputation().Exponentiate(params.GetGroupPrecomputation(), exponent);
H A Decp.cpp453 finalCascade[j].exponent = Integer(Integer::POSITIVE, 0, exponentWindows[i][j]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Ddecode.c864 * of exponent, and 64 bits of significand (mantissa). Unlike most IEEE-754
871 unsigned int shift, exponent; local
878 exponent= 63U-(shift+32U); /* add 32 for unused second word */
880 if(!write_big_endian_uint16(f, (FLAC__uint16)(exponent+0x3FFF)))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Di387.c342 switch (st->exponent & 0x7fff) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Dac3dsp.asm427 ; clips this to 0, which is the correct exponent.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/mISDN/
H A Dhfcmulti.c1801 u8 exponent; local
1840 exponent = (w_float>>12) & 0x7;
1841 if (exponent) {
1843 mantissa <<= (exponent-1);
1859 exponent = (w_float>>12) & 0x7;
1860 if (exponent) {
1862 mantissa <<= (exponent-1);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxpath.c9896 int exponent = 0; local
9963 exponent = exponent * 10 + (*cur - '0');
9970 if (is_exponent_negative) exponent = -exponent;
9971 ret *= pow(10.0, (double)exponent);
9992 int exponent = 0; local
10045 exponent = exponent * 10 + (CUR - '0');
10049 exponent
[all...]

Completed in 238 milliseconds

123456