HomeSort by: relevance | last modified time | path
    Searched defs:up (Results 1 - 25 of 267) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/lgpl3/gmp/dist/mpf/
cmp_ui.c 36 mp_srcptr up; variable
62 up = PTR (u);
65 ulimb = up[--usize];
72 if (usize != 0) ulimb |= up[--usize];
81 for (; *up == 0; ++up)
abs.c 42 mp_ptr rp, up; local
46 up = u->_mp_d;
50 up += size - prec;
54 MPN_COPY (rp, up, size);
cmp_si.c 37 mp_srcptr up; variable
80 up = PTR (u);
83 ulimb = up[--usize];
90 if (usize != 0) ulimb |= up[--usize];
99 for (; *up == 0; ++up)
neg.c 43 mp_ptr rp, up; local
48 up = u->_mp_d;
52 up += asize - prec;
56 MPN_COPY (rp, up, asize);
set.c 36 mp_ptr rp, up; local
44 up = u->_mp_d;
48 up += asize - prec;
54 MPN_COPY_INCR (rp, up, asize);
set_z.c 36 mp_ptr rp, up; local
44 up = PTR (u);
50 up += asize - prec;
55 MPN_COPY (rp, up, asize);
trunc.c 41 mp_srcptr up; local
55 up = PTR(u);
58 up += asize;
69 up -= asize;
72 if (rp != up)
73 MPN_COPY_INCR (rp, up, asize);
  /src/external/lgpl3/gmp/dist/mpz/
cmp_ui.c 37 mp_ptr up; variable
41 up = PTR(u);
49 ul = up[0];
62 ul = up[0] + (up[1] << GMP_NUMB_BITS);
64 if ((up[1] >> GMP_NAIL_BITS) != 0)
cmpabs_ui.c 37 mp_ptr up; variable
41 up = PTR(u);
51 ul = up[0];
64 ul = up[0] + (up[1] << GMP_NUMB_BITS);
abs.c 39 mp_srcptr up; local
48 up = PTR (u);
50 MPN_COPY (wp, up, size);
iset.c 38 mp_ptr wp, up; local
48 up = PTR (u);
50 MPN_COPY (wp, up, size);
set.c 37 mp_ptr wp, up; local
45 up = PTR(u);
47 MPN_COPY (wp, up, size);
cmp.c 39 mp_srcptr up, vp; variable
49 up = PTR(u);
51 MPN_CMP (cmp, up, vp, asize);
cmpabs.c 40 mp_srcptr up, vp; variable
49 up = PTR(u);
51 MPN_CMP (cmp, up, vp, usize);
mul_2exp.c 40 mp_srcptr up; local
52 up = PTR(u);
57 rlimb = mpn_lshift (rp + limb_cnt, up, un, cnt);
63 MPN_COPY_DECR (rp + limb_cnt, up, un);
neg.c 39 mp_srcptr up; local
50 up = PTR (u);
52 MPN_COPY (wp, up, size);
root.c 38 mp_ptr rootp, up; local
71 up = PTR(u);
75 MPN_COPY (rootp, up, un);
80 remn = mpn_rootrem (rootp, NULL, up, un, (mp_limb_t) nth);
87 MPN_COPY (up, rootp, rootn);
set_f.c 37 mp_ptr wp, up; local
50 up = PTR(u);
66 up += (size - exp);
70 MPN_COPY (wp, up, size);
tdiv_q_2exp.c 41 mp_srcptr up; local
52 up = PTR(u) + limb_cnt;
57 mpn_rshift (rp, up, rn, cnt);
62 MPN_COPY_INCR (rp, up, rn);
  /src/external/mpl/bind/dist/bin/tests/system/
ifconfig.sh.in 15 # Set up interface aliases for bind9 system tests.
52 up() { function
55 [ "$a" ] && ifconfig lo0:$int $a netmask 0xffffffff up
58 [ "$a" ] && ifconfig lo0:$int $a netmask 0xffffffff up
63 /sbin/ifconfig lo0:$int $a up
68 /sbin/ifconfig lo0:$int inet6 $aaaa up
89 [ "$a" ] && ifconfig lo:$int $a up netmask 255.255.255.0 mtu 1500
118 [ "$a" ] && ifconfig lo0:$int $a netmask 255.255.255.0 up
119 [ "$aaaa" ] && ifconfig lo0:$int inet6 $aaaa up
129 echo "Don't know how to set up interface. Giving up.
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
unix_trigger.c 17 /* unix_trigger() wakes up the named UNIX-domain server by making
74 struct unix_trigger *up = (struct unix_trigger *) context; local
81 msg_warn("%s: read timeout for service %s", myname, up->service);
82 event_disable_readwrite(up->fd);
84 if (close(up->fd) < 0)
85 msg_warn("%s: close %s: %m", myname, up->service);
86 myfree(up->service);
87 myfree((void *) up);
95 struct unix_trigger *up; local
114 up = (struct unix_trigger *) mymalloc(sizeof(*up))
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
add_ui.c 69 mp_limb_t up[1]; local
72 MPFR_TMP_INIT1 (up, uu, GMP_NUMB_BITS);
76 up[0] = (mp_limb_t) u << cnt;
fmod_ui.c 41 mp_limb_t up[1]; local
45 MPFR_TMP_INIT1 (up, uu, GMP_NUMB_BITS);
48 *up = (mp_limb_t) u << cnt;
sqrt_ui.c 40 mp_limb_t up[1]; local
44 MPFR_TMP_INIT1 (up, uu, GMP_NUMB_BITS);
47 *up = (mp_limb_t) u << cnt;
sub_ui.c 69 mp_limb_t up[1]; local
72 MPFR_TMP_INIT1 (up, uu, GMP_NUMB_BITS);
76 up[0] = (mp_limb_t) u << cnt;

Completed in 20 milliseconds

1 2 3 4 5 6 7 8 91011