HomeSort by: relevance | last modified time | path
    Searched refs:exp (Results 1 - 25 of 3768) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/lgpl3/mpfr/dist/src/
uceil_exp2.c 31 long exp; local
39 exp = (long) d;
40 if (d != (double) exp)
41 exp++;
42 /* now exp = ceil(d) */
45 x.s.exp = exp <= -1022 ? 1 : 1023 + exp;
47 if (exp >= 0)
49 while (exp != 0
    [all...]
uceil_log2.c 32 long exp; local
39 exp = (long) x.s.exp - 1023;
40 MPFR_ASSERTN (exp < 1023); /* fail on infinities */
41 x.s.exp = 1023; /* value for 1 <= d < 2 */
43 exp++;
44 return exp;
54 exp = 0;
56 exp++;
60 exp = 1
    [all...]
scale2.c 1 /* mpfr_scale2 -- multiply a double float by 2^exp
29 /* multiplies 1/2 <= d <= 1 by 2^exp */
31 mpfr_scale2 (double d, int exp)
40 exp ++;
46 MPFR_ASSERTD (-1073 <= exp && exp <= 1025);
49 if (MPFR_UNLIKELY (exp < -1021)) /* subnormal case */
51 x.s.exp += exp + 52;
56 x.s.exp += exp
    [all...]
ufloor_log2.c 29 long exp; local
36 exp = (long) x.s.exp - 1023;
37 MPFR_ASSERTN (exp < 1023); /* fail on infinities */
38 return exp;
45 exp = -1;
47 exp++;
51 exp = 0;
53 exp--;
55 return exp;
    [all...]
  /src/external/lgpl3/mpc/dist/src/
uceil_log2.c 28 mpfr_prec_t exp; local
30 for (exp = 0; d > 1; d = (d + 1) / 2)
31 exp++;
32 return exp;
  /src/external/gpl3/gdb/dist/gdb/testsuite/config/
i960.exp 16 load_lib ../config/monitor.exp
mips-idt.exp 16 load_lib ../config/monitor.exp
mips.exp 16 load_lib ../config/monitor.exp
proelf.exp 16 load_lib ../config/monitor.exp
rom68k.exp 16 load_lib ../config/monitor.exp
sh.exp 16 load_lib ../config/monitor.exp
vr4300.exp 16 load_lib ../config/monitor.exp
vr5000.exp 16 load_lib ../config/monitor.exp
  /src/external/gpl3/gdb/dist/sim/testsuite/config/
default.exp 3 load_lib sim-defs.exp
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/config/
i960.exp 16 load_lib ../config/monitor.exp
mips-idt.exp 16 load_lib ../config/monitor.exp
mips.exp 16 load_lib ../config/monitor.exp
proelf.exp 16 load_lib ../config/monitor.exp
rom68k.exp 16 load_lib ../config/monitor.exp
sh.exp 16 load_lib ../config/monitor.exp
vr4300.exp 16 load_lib ../config/monitor.exp
vr5000.exp 16 load_lib ../config/monitor.exp
  /src/external/gpl3/gdb.old/dist/sim/testsuite/config/
default.exp 3 load_lib sim-defs.exp
  /src/tests/lib/libc/net/getaddrinfo/
Makefile 1 # $NetBSD: Makefile,v 1.2 2016/08/26 01:31:43 darcy Exp $
17 FILES+= basics_v4.exp basics_v4v6.exp
18 FILES+= no_host_v4.exp no_host_v4v6.exp
19 FILES+= no_serv_v4.exp no_serv_v4v6.exp
20 FILES+= sock_raw_v4.exp sock_raw_v4v6.exp
21 FILES+= spec_fam_v4.exp spec_fam_v4v6.ex
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
watch-read.exp 81 set exp ""
82 set exp "${exp}2.*read watchpoint.*keep y.*global.*breakpoint already hit 2 times.*"
83 set exp "${exp}3.*watchpoint.*keep y.*global.*breakpoint already hit 1 time.*"
85 "$exp" \
96 set exp ""
97 set exp "${exp}2.*read watchpoint.*keep y.*global.*breakpoint already hit 3 times.*"
98 set exp "${exp}3.*watchpoint.*keep y.*global.*breakpoint already hit 1 time.*
    [all...]

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>