Searched refs:exp (Results 51 - 75 of 3491) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/
H A Dgmonster2-pervasive-typedef.exp21 load_lib perftest.exp
22 load_lib gen-perf-test.exp
28 GenPerfTest::standard_run_driver gmonster2.exp make_testcase_config gmonster-pervasive-typedef.py PervasiveTypedef
H A Dgmonster2-ptype-string.exp20 load_lib perftest.exp
21 load_lib gen-perf-test.exp
27 GenPerfTest::standard_run_driver gmonster2.exp make_testcase_config gmonster-ptype-string.py GmonsterPtypeString
H A Dgmonster2-null-lookup.exp20 load_lib perftest.exp
21 load_lib gen-perf-test.exp
27 GenPerfTest::standard_run_driver gmonster2.exp make_testcase_config gmonster-null-lookup.py NullLookup
H A Dgmonster2-select-file.exp20 load_lib perftest.exp
21 load_lib gen-perf-test.exp
27 GenPerfTest::standard_run_driver gmonster2.exp make_testcase_config gmonster-select-file.py GmonsterSelectFile
H A Dgmonster2-runto-main.exp19 load_lib perftest.exp
20 load_lib gen-perf-test.exp
26 GenPerfTest::standard_run_driver gmonster2.exp make_testcase_config gmonster-runto-main.py GmonsterRuntoMain
H A Dgmonster2-print-cerr.exp19 load_lib perftest.exp
20 load_lib gen-perf-test.exp
26 GenPerfTest::standard_run_driver gmonster2.exp make_testcase_config gmonster-print-cerr.py PrintCerr
/netbsd-current/lib/libc/quad/
H A Dfixsfdi_ieee754.c57 signed int exp = ux.sngu_exp - SNG_EXP_BIAS; local
61 if (exp < 0)
63 if (exp > 62)
68 exp -= SNG_FRACBITS;
69 if (exp < 0) {
70 r >>= -exp;
71 } else if (exp > 0) {
72 r <<= exp; local
H A Dfixunssfdi_ieee754.c58 signed int exp = ux.sngu_exp - SNG_EXP_BIAS; local
63 if (exp > 63)
65 if (exp < 0)
70 exp -= SNG_FRACBITS;
71 if (exp == 0)
73 if (exp < 0)
74 return r >> -exp;
76 return r << exp;
H A Dfixdfdi_ieee754.c59 signed int exp = ux.dblu_exp - DBL_EXP_BIAS; local
63 if (exp >= 62)
68 exp -= DBL_FRACHBITS;
69 if (exp < 0) {
70 r >>= -exp;
71 } else if (exp > 0) {
74 exp -= DBL_FRACLBITS;
75 if (exp < 0) {
76 r >>= -exp;
77 } else if (exp >
78 r <<= exp; local
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpf/
H A Dget_ui.c45 The limb just above the radix point for us to extract is ptr[size-exp].
47 We need to check that the size-exp index falls in our available data
49 involving exp by requiring size>=exp (giving size-exp >= 0) and exp>0
50 (giving size-exp <= size-1).
52 Notice if size==0 there's no fetch, since of course size>=exp and exp>0
58 is ptr[size-exp
77 mp_exp_t exp; variable
[all...]
H A Dget_si.c47 However unlike mpf_get_ui we need an explicit return 0 for exp<=0. When
48 f is a negative fraction (ie. size<0 and exp<=0) we can't let fl==0 go
55 mp_exp_t exp; variable
60 exp = EXP (f);
65 this also covers zero, since we have exp==0 for zero */
66 if (exp <= 0)
73 if (abs_size >= exp)
74 fl = fp[abs_size-exp];
77 if (exp > 1 && abs_size+1 >= exp)
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dalign-c.exp23 source $srcdir/$subdir/align.exp.tcl
H A Dcheckpoint-ns.exp24 source $srcdir/$subdir/checkpoint.exp
H A Dinfo-types-c.exp18 source $srcdir/$subdir/info-types.exp.tcl
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dcpexprs.exp1 # cpexprs.exp - C++ expressions tests
22 # Run cpexprs.exp.
24 source $srcdir/$subdir/cpexprs.exp.tcl
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/config/
H A Dextended-gdbserver.exp21 # The guts live in gdbserver-support.exp.
22 load_lib gdbserver-support.exp
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/config/
H A Dextended-gdbserver.exp21 # The guts live in gdbserver-support.exp.
22 load_lib gdbserver-support.exp
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Darray-indices.exp20 source $srcdir/$subdir/array-indices.exp.tcl
H A Darray-repeat.exp20 source $srcdir/$subdir/array-repeat.exp.tcl
H A Dcheckpoint-ns.exp24 source $srcdir/$subdir/checkpoint.exp
H A Dlist-ambiguous-readnow.exp16 # Run list-ambiguous.exp with -readnow.
21 source $srcdir/$subdir/list-ambiguous.exp
H A Dalign-c.exp23 source $srcdir/$subdir/align.exp.tcl
H A Dinfo-types-c.exp18 source $srcdir/$subdir/info-types.exp.tcl
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dcpexprs.exp1 # cpexprs.exp - C++ expressions tests
22 # Run cpexprs.exp.
24 source $srcdir/$subdir/cpexprs.exp.tcl
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dget_d128.c116 long int exp = 0; local
135 /* we will consider an integer mantissa m*10^exp */
139 exp = strtol (s + 1, endptr, 10);
141 MPFR_ASSERTN(-6176 <= exp && exp <= (long) (6145 - n));
145 exp --;
147 /* now n=34 and -6176 <= exp <= 6111, cf (b2) */
150 /* the number to convert is m[] * 10^exp where the mantissa is a 34-digit
154 exp += 6176;
156 MPFR_ASSERTN(exp >
[all...]

Completed in 301 milliseconds

1234567891011>>