Searched refs:TBLSIZE (Results 1 - 5 of 5) sorted by relevance

/barrelfish-2018-10-04/lib/msun/src/
H A Ds_exp2f.c36 #define TBLSIZE (1 << TBLBITS) macro
39 redux = 0x1.8p23f / TBLSIZE,
49 static const double exp2ft[TBLSIZE] = {
80 * y = i/TBLSIZE + z for integer i near y * TBLSIZE.
81 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
82 * with |z| <= 2**-(TBLSIZE+1).
84 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
123 i0 += TBLSIZE / 2;
125 i0 &= TBLSIZE
[all...]
H A Ds_exp2.c36 #define TBLSIZE (1 << TBLBITS) macro
39 redux = 0x1.8p52 / TBLSIZE,
50 static const double tbl[TBLSIZE * 2] = {
322 * y = i/TBLSIZE + z - eps[i] for integer i near y * TBLSIZE.
323 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
326 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
329 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such
332 * Note that the range of i is +-TBLSIZE/2, so we actually index the tables
333 * by i0 = i + TBLSIZE/
[all...]
/barrelfish-2018-10-04/lib/msun/ld128/
H A Ds_exp2l.c37 #define TBLSIZE (1 << TBLBITS) macro
59 redux = 0x1.8p112 / TBLSIZE;
61 static const long double tbl[TBLSIZE] = {
192 static const float eps[TBLSIZE] = {
335 * y = i/TBLSIZE + z - eps[i] for integer i near y * TBLSIZE.
336 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
339 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
342 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such
345 * Note that the range of i is +-TBLSIZE/
[all...]
/barrelfish-2018-10-04/lib/msun/ld80/
H A Ds_exp2l.c42 #define TBLSIZE (1 << TBLBITS) macro
54 redux = 0x1.8p63 / TBLSIZE,
65 static const double tbl[TBLSIZE * 2] = {
208 * y = i/TBLSIZE + z for integer i near y * TBLSIZE.
209 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
212 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
260 i0 = u.bits.manl + TBLSIZE / 2;
262 i0 = (i0 & (TBLSIZE - 1)) << 1;
/barrelfish-2018-10-04/usr/skb/programs/
H A Dirq_routing_new.pl669 TBLSIZE = 16, % TODO read TBLSIZE from conf space and pass in as argument
671 get_unused_range(TBLSIZE, PciOutRange),
677 get_unused_range(TBLSIZE, InRange),

Completed in 41 milliseconds