Searched defs:exp (Results 1 - 25 of 25) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A Ds_ldexp.c23 ldexp(double value, int exp) argument
26 value = scalbn(value,exp);
H A Dw_exp.c19 * wrapper exp(x)
30 exp(double x) /* wrapper exp */ function
40 return __kernel_standard(x,x,6); /* exp overflow */
42 return __kernel_standard(x,x,7); /* exp underflow */
/vbox/src/libs/xpcom18a4/java/src/
H A DnsAppFileLocProviderProxy.cpp194 jthrowable exp = env->ExceptionOccurred(); local
195 if (exp) {
203 if (env->IsInstanceOf(exp, xpcomExceptionClass)) {
207 rv = env->GetLongField(exp, fid);
H A DnsJavaXPTCStub.cpp541 jthrowable exp = env->ExceptionOccurred(); local
542 if (exp) {
546 if (env->IsInstanceOf(exp, xpcomExceptionClass)) {
550 rv = env->GetLongField(exp, fid);
/vbox/src/VBox/RDP/client-1.8.3/
H A Dssl.c100 BIGNUM mod, exp, x, y; local
111 BN_init(&exp);
116 BN_bin2bn(exponent, SEC_EXPONENT_SIZE, &exp);
118 BN_mod_exp(&y, &x, &exp, &mod, ctx);
126 BN_free(&exp);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw32poll.c114 fd_set *rdp, *wtp, *exp; local
257 exp = (0 == nex) ? NULL : &ex;
259 if ((NULL == rdp) && (NULL == wtp) && (NULL == exp)) {
273 ready = _MD_SELECT(0, rdp, wtp, exp, tvp);
275 ready = _PR_NTFiberSafeSelect(0, rdp, wtp, exp, tvp);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A Dcompat.c668 pow10(int exp) argument
672 while (exp) {
674 exp--;
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTextFormatter.cpp477 char exp = 'e'; local
493 exp = 'E';
500 exp = 'E';
546 *bufp++ = exp;
598 *bufp++ = exp;
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...
/vbox/src/VBox/NetworkServices/DHCP/
H A DConfig.cpp1354 void Lease::setExpiration(uint32_t exp) argument
1357 m->u32BindExpirationPeriod = exp;
1359 m->u32LeaseExpirationPeriod = exp;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface_base.c50 int exp = 0; local
64 exp--;
70 exp++;
77 exp += 10; /* Normalize the mantissa */
78 exp += 15; /* Exponent is encoded with excess 15 */
80 if(exp > 30) { /* too big */
82 } else if(exp <= 0) {
83 /* exp == 0: Non-normalized mantissa. Returns 0x0000 (=0.0) for too small numbers */
84 while(exp <= 0) {
86 exp
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/
H A DEnquire.c721 int exponent ARGS((Long_double x, Long_double *fract, int *exp));
1345 exponent(Long_double x, Long_double *fract, int *exp) argument
1353 *fract=0.0; *exp=0;
1372 *exp=r;
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86_libc.h213 #undef exp macro
214 #define exp(d) xf86exp(d) macro
256 #define frexp(x,exp) xf86frexp(x,exp)
294 #define ldexp(x, exp) xf86ldexp(x, exp)
/vbox/include/iprt/nocrt/
H A Dmath.h240 double RT_NOCRT(exp)(double);
606 # define exp RT_NOCRT(exp) macro
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/
H A Dptio.c4016 fd_set rd, wr, ex, *rdp = NULL, *wrp = NULL, *exp = NULL; local
4156 exp = &ex;
4209 ready = select(maxfd + 1, rdp, wrp, exp, tvp);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_libc.h251 #undef exp macro
252 #define exp(d) xf86exp(d) macro
294 #define frexp(x,exp) xf86frexp(x,exp)
332 #define ldexp(x, exp) xf86ldexp(x, exp)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_libc.h251 #undef exp macro
252 #define exp(d) xf86exp(d) macro
294 #define frexp(x,exp) xf86frexp(x,exp)
332 #define ldexp(x, exp) xf86ldexp(x, exp)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86_libc.h257 #undef exp macro
258 #define exp(d) xf86exp(d) macro
300 #define frexp(x,exp) xf86frexp(x,exp)
338 #define ldexp(x, exp) xf86ldexp(x, exp)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86_libc.h257 #undef exp macro
258 #define exp(d) xf86exp(d) macro
300 #define frexp(x,exp) xf86frexp(x,exp)
338 #define ldexp(x, exp) xf86ldexp(x, exp)
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dsurface.c3211 int exp = 0; local
3229 exp--;
3237 exp++;
3245 exp += 10; /* Normalize the mantissa. */
3246 exp += 15; /* Exponent is encoded with excess 15. */
3248 if (exp > 30) /* too big */
3252 else if (exp <= 0)
3254 /* exp == 0: Non-normalized mantissa. Returns 0x0000 (=0.0) for too small numbers. */
3255 while (exp <= 0)
3258 ++exp;
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dxmlregexp.c6744 * @exp: the expression
6749 xmlExpFree(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp) { argument
6750 if ((exp == NULL) || (exp == forbiddenExp) || (exp == emptyExp))
6752 exp->ref--;
6753 if (exp->ref == 0) {
6757 key = exp->key % ctxt->size;
6758 if (ctxt->table[key] == exp) {
6759 ctxt->table[key] = exp
6791 xmlExpRef(xmlExpNodePtr exp) argument
6900 xmlExpGetLanguageInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**list, int len, int nb) argument
6945 xmlExpGetLanguage(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**langList, int len) argument
6953 xmlExpGetStartInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**list, int len, int nb) argument
7013 xmlExpGetStart(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar**tokList, int len) argument
7029 xmlExpIsNillable(xmlExpNodePtr exp) argument
7036 xmlExpStringDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar *str) argument
7158 xmlExpStringDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar *str, int len) argument
7177 xmlExpCheckCard(xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7211 xmlExpDivide(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub, xmlExpNodePtr *mult, xmlExpNodePtr *remain) argument
7272 xmlExpExpDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7726 xmlExpExpDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
7760 xmlExpSubsume(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) argument
[all...]
H A Dtestapi.c32614 xmlExpNodePtr exp; /* the expression */ local
32627 exp = gen_xmlExpNodePtr(n_exp, 1);
32631 ret_val = xmlExpGetLanguage(ctxt, exp, (const xmlChar **)langList, len);
32635 des_xmlExpNodePtr(n_exp, exp, 1);
32669 xmlExpNodePtr exp; /* the expression */ local
32682 exp = gen_xmlExpNodePtr(n_exp, 1);
32686 ret_val = xmlExpGetStart(ctxt, exp, (const xmlChar **)tokList, len);
32690 des_xmlExpNodePtr(n_exp, exp, 1);
32722 xmlExpNodePtr exp; /* the expression */ local
32727 exp
32849 xmlExpNodePtr exp; /* the expression */ local
32894 xmlExpNodePtr exp; /* the englobing expression */ local
[all...]
/vbox/src/VBox/Devices/Network/
H A DDevPCNet.cpp2949 unsigned exp = 0; local
2954 ++exp;
2956 return (exp << 13) | speed;
/vbox/src/recompiler/target-i386/
H A Dop_helper.c5112 int fpus, fptag, exp, i; local
5124 exp = EXPD(tmp);
5126 if (exp == 0 && mant == 0) {
5129 } else if (exp == 0 || exp == MAXEXPD

Completed in 3699 milliseconds