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

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/lib/perl5db/t/
H A Dbreak-on-dot6 my $exp = 1;
9 $exp *= 2;
/openbsd-current/gnu/gcc/libmudflap/testsuite/config/
H A Ddefault.exp1 load_lib standard.exp
2 load_lib libmudflap.exp
3 load_lib mfconfig.exp
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/config/
H A Dabug.exp20 load_lib ../config/monitor.exp
H A Dcpu32bug.exp20 load_lib ../config/monitor.exp
H A Dest.exp20 load_lib ../config/monitor.exp
H A Dhmsirom.exp22 load_lib ../config/monitor.exp
H A Di960.exp20 load_lib ../config/monitor.exp
H A Dmips-idt.exp17 load_lib ../config/monitor.exp
H A Dmips.exp17 load_lib ../config/monitor.exp
H A Dproelf.exp20 load_lib ../config/monitor.exp
H A Drom68k.exp20 load_lib ../config/monitor.exp
H A Dsh.exp20 load_lib ../config/monitor.exp
H A Dvr4300.exp20 load_lib ../config/monitor.exp
H A Dvr5000.exp20 load_lib ../config/monitor.exp
H A Dvxworks.exp20 load_lib ../config/vx.exp
H A Dvxworks29k.exp23 verbose "Loading ${srcdir}/config/vx.exp"
24 source ${srcdir}/config/vx.exp
H A Dunix.exp29 load_lib gdb.exp
/openbsd-current/lib/libc/arch/arm/quad/
H A Dfixunsdfdi.c59 signed int exp = ux.dbl_exp - DBL_EXP_BIAS; local
64 if (exp > 63)
66 if (exp < 0)
71 exp -= DBL_FRACHBITS;
72 if (exp == 0)
74 if (exp < 0)
75 return r >> -exp;
79 exp -= DBL_FRACLBITS;
80 if (exp == 0)
82 if (exp <
[all...]
H A Dfixsfdi.c58 signed int exp = ux.sng_exp - SNG_EXP_BIAS; local
62 if (exp < 0)
64 if (exp > 62)
69 exp -= SNG_FRACBITS;
70 if (exp < 0) {
71 r >>= -exp;
72 } else if (exp > 0) {
73 r <<= exp; local
H A Dfixunssfdi.c59 signed int exp = ux.sng_exp - SNG_EXP_BIAS; local
64 if (exp > 63)
66 if (exp < 0)
71 exp -= SNG_FRACBITS;
72 if (exp == 0)
74 if (exp < 0)
75 return r >> -exp;
77 return r << exp;
H A Dfixdfdi.c60 signed int exp = ux.dbl_exp - DBL_EXP_BIAS; local
64 if (exp > 62)
69 exp -= DBL_FRACHBITS;
70 if (exp < 0) {
71 r >>= -exp;
72 } else if (exp > 0) {
75 exp -= DBL_FRACLBITS;
76 if (exp < 0) {
77 r >>= -exp;
78 } else if (exp >
79 r <<= exp; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Ddll-1.c7 __declspec (dllexport) void exp () { imp (); }
9 /* { dg-final { scan-assembler "\.section\[ \t\]*.drectve\n\[^\n\]*-export:exp.*__imp_imp" } } */
/openbsd-current/lib/libc/arch/amd64/gen/
H A Dldexp.c38 * ldexp(value, exp): return value * (2 ** exp).
42 ldexp(double value, int exp) argument
47 : "0" (value), "u" ((double)exp));
/openbsd-current/lib/libc/arch/i386/gen/
H A Dldexp.c37 * ldexp(value, exp): return value * (2 ** exp).
41 ldexp(double value, int exp) argument
46 : "0" (value), "u" ((double)exp));
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Ddll-1.C5 // set compiler_result "__imp_imp.*\.section${spaces}.drectve\n\[^\n\]*-export:exp"
10 __declspec (dllexport) void exp () { imp (); } function

Completed in 147 milliseconds

1234567891011>>