HomeSort by: relevance | last modified time | path
    Searched defs:my (Results 1 - 13 of 13) sorted by relevancy

  /src/external/lgpl3/mpfr/dist/src/
set_f.c 31 mp_limb_t *my, *mx, *tmp; local
50 my = MPFR_MANT(y);
67 carry = mpfr_round_raw (my, tmp, xprec, (SIZ(x) < 0), MPFR_PREC(y),
70 my[sy - 1] = MPFR_LIMB_HIGHBIT;
76 mpn_lshift (my + sy - sx, mx, sx, cnt);
78 MPN_COPY (my + sy - sx, mx, sx);
79 MPN_ZERO(my, sy - sx);
rem1.c 61 mpz_t mx, my, r; local
88 mpz_init (my);
92 ey = mpfr_get_z_2exp (my, y); /* y = my*2^ey */
100 mpz_abs (my, my);
103 /* Divide my by 2^k if possible to make operations mod my easier.
104 Since my comes from a regular MPFR number, due to the constraints on the
107 mpfr_exp_t k = mpz_scan1 (my, 0)
    [all...]
  /src/games/hack/
def.monst.h 70 xchar mx,my; member in struct:monst
hack.mklev.c 781 xchar mx, my; local
810 my = somey();
813 my = croom->hy + 1;
815 my = croom->ly - 1;
822 my = mm.y;
825 my = somey();
827 } while (m_at(mx, my) || levl[mx][my].typ == STAIRS);
828 if ((mtmp = makemon(PM_MIMIC, mx, my)) != NULL) {
844 my = mm.y
    [all...]
  /src/games/larn/
create.c 115 static int mx, mxl, mxh, my, myl, myh, tmp2; variable
143 my = rnd(11) + 2;
144 myl = my - rnd(2);
145 myh = my + rnd(2);
166 my = rnd(MAXY - 2);
168 item[i][my] = 0;
  /src/external/lgpl3/mpc/dist/src/
pow.c 106 mpz_t my; local
109 mpz_init (my);
111 ey = mpfr_get_z_exp (my, y);
112 /* normalize so that my is odd */
113 t = mpz_scan1 (my, 0);
115 mpz_tdiv_q_2exp (my, my, t);
116 /* y = my*2^ey */
122 ymod4 = mpz_tstbit (my, 0) * 2; /* correct if my < 0 *
177 mpz_t my, a, b, c, d, u; local
    [all...]
  /src/games/snake/snake/
snake.c 592 static const int my[8] = { variable
612 vp = d.col * mx[i] + d.line * my[i];
624 point(&d, sp->col + mx[i], sp->line + my[i]);
658 point(np, sp->col + mx[w], sp->line + my[w]);
871 * My manual says times doesn't return a value. Furthermore, the
  /src/crypto/dist/ipsec-tools/src/racoon/
grabmyaddr.c 84 myaddr_delete(struct myaddr *my)
86 if (my->fd != -1)
87 isakmp_close(my->fd);
88 LIST_REMOVE(my, chain);
89 racoon_free(my);
111 struct myaddr *my; local
114 LIST_FOREACH(my, &opened, chain) {
115 if (cmpsaddr(addr, (struct sockaddr *) &my->addr) <= CMPSADDR_WILDPORT_MATCH)
119 my = racoon_calloc(1, sizeof(struct myaddr));
120 if (my == NULL
179 struct myaddr *my, *next; local
194 struct myaddr *my, *next; local
211 struct myaddr *my; local
234 struct myaddr *my, *next; local
252 struct myaddr *my; local
265 struct myaddr *my; local
    [all...]
  /src/crypto/external/bsd/openssh/dist/
kex.c 543 if ((r = kex_buf2prop(kex->my, NULL, &prop)) != 0)
554 if ((r = kex_prop2buf(ssh->kex->my, prop)) != 0) {
587 if (sshbuf_len(kex->my) < KEX_COOKIE_LEN) {
589 sshbuf_len(kex->my), KEX_COOKIE_LEN);
592 if ((cookie = sshbuf_mutable_ptr(kex->my)) == NULL) {
599 (r = sshpkt_putb(ssh, kex->my)) != 0 ||
678 (kex->my = sshbuf_new()) == NULL ||
735 sshbuf_free(kex->my);
754 if ((r = kex_prop2buf(ssh->kex->my, proposal)) != 0)
897 proposals_match(char *my[PROPOSAL_MAX], char *peer[PROPOSAL_MAX]
931 char **my = NULL, **peer = NULL; local
    [all...]
kex.h 155 struct sshbuf *my; member in struct:kex
  /src/external/gpl2/texinfo/dist/makeinfo/
lang.h 45 mg, mi, mk, ml, mn, mo, mr, ms, mt, my, enumerator in enum:__anon9561
  /src/external/bsd/tmux/dist/
window-copy.c 288 u_int my; member in struct:window_copy_mode_data
468 data->my = screen_hsize(data->backing) + data->cy - data->oy;
496 data->my = screen_hsize(data->backing) + data->cy - data->oy;
595 window_copy_scroll(struct window_pane *wp, int sl_mpos, u_int my,
602 window_copy_scroll1(wme, wp, sl_mpos, my, scroll_exit);
608 int sl_mpos, u_int my, int scroll_exit)
622 if (my <= sb_top + sl_mpos) {
625 } else if (my - sl_mpos > sb_top + sb_height - slider_height) {
630 new_slider_y = my - wp->yoff - sl_mpos;
2258 data->my = screen_hsize(data->backing) + data->cy - data->oy
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb.c 682 * couple mutexes fit exactly into 8KB on my development machine.
9191 mdb_copy *my = arg; local
9205 my->mc_error = rc;
9209 pthread_mutex_lock(&my->mc_mutex);
9211 while (!my->mc_new)
9212 pthread_cond_wait(&my->mc_cond, &my->mc_mutex);
9213 if (my->mc_new == 0 + MDB_EOF) /* 0 buffers, just EOF */
9215 wsize = my->mc_wlen[toggle];
9216 ptr = my->mc_wbuf[toggle]
9451 mdb_copy my = {0}; local
    [all...]

Completed in 40 milliseconds