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

1 2 3

  /src/games/mille/
roll.c 54 int tot; local in function:roll
56 tot = 0;
58 tot += random() % nsides + 1;
59 return tot;
roll.c 54 int tot; local in function:roll
56 tot = 0;
58 tot += random() % nsides + 1;
59 return tot;
roll.c 54 int tot; local in function:roll
56 tot = 0;
58 tot += random() % nsides + 1;
59 return tot;
end.c 54 int temp, tot, num; local in function:finalscore
62 for (tot = 5; tot <= 9; tot++)
63 mvaddstr(tot, temp, " 0");
66 tot = SC_TRIP;
69 tot = SC_TRIP + SC_SAFE;
73 tot += SC_DELAY;
77 tot += SC_EXTENSION;
81 tot += SC_SHUT_OUT
99 reg int x, num, tot, count; local in function:extrapolate
    [all...]
end.c 54 int temp, tot, num; local in function:finalscore
62 for (tot = 5; tot <= 9; tot++)
63 mvaddstr(tot, temp, " 0");
66 tot = SC_TRIP;
69 tot = SC_TRIP + SC_SAFE;
73 tot += SC_DELAY;
77 tot += SC_EXTENSION;
81 tot += SC_SHUT_OUT
99 reg int x, num, tot, count; local in function:extrapolate
    [all...]
end.c 54 int temp, tot, num; local in function:finalscore
62 for (tot = 5; tot <= 9; tot++)
63 mvaddstr(tot, temp, " 0");
66 tot = SC_TRIP;
69 tot = SC_TRIP + SC_SAFE;
73 tot += SC_DELAY;
77 tot += SC_EXTENSION;
81 tot += SC_SHUT_OUT
99 reg int x, num, tot, count; local in function:extrapolate
    [all...]
  /src/games/monop/
roll.c 52 long tot; local in function:roll
54 tot = 0;
56 tot += (random() % nsides) + 1;
57 return (int)tot;
roll.c 52 long tot; local in function:roll
54 tot = 0;
56 tot += (random() % nsides) + 1;
57 return (int)tot;
roll.c 52 long tot; local in function:roll
54 tot = 0;
56 tot += (random() % nsides) + 1;
57 return (int)tot;
houses.c 271 int tot; local in function:sell_h
310 for (tot = i = 0; i < mp->num_in; i++)
311 tot += input[i];
312 if (tot) {
313 printf("You asked to sell %d house%s for $%d\n", tot,
314 tot == 1 ? "" : "s", tot * price);
316 cur_p->money += tot * price;
317 for (tot = i = 0; i < mp->num_in; i++)
  /src/sys/arch/mvme68k/stand/sboot/
etherfun.c 99 u_char *tot; local in function:do_send_tftp
102 tot = tftp_r + (sizeof(MSG) - 1);
108 tot = (u_char *)tftp_a + 4;
125 iph->ip_len = tot - (u_char *)iph;
145 udph->uh_ulen = tot - (u_char *)udph;
147 le_put(buf, tot - buf);
etherfun.c 99 u_char *tot; local in function:do_send_tftp
102 tot = tftp_r + (sizeof(MSG) - 1);
108 tot = (u_char *)tftp_a + 4;
125 iph->ip_len = tot - (u_char *)iph;
145 udph->uh_ulen = tot - (u_char *)udph;
147 le_put(buf, tot - buf);
etherfun.c 99 u_char *tot; local in function:do_send_tftp
102 tot = tftp_r + (sizeof(MSG) - 1);
108 tot = (u_char *)tftp_a + 4;
125 iph->ip_len = tot - (u_char *)iph;
145 udph->uh_ulen = tot - (u_char *)udph;
147 le_put(buf, tot - buf);
  /src/lib/libc/db/recno/
rec_get.c 198 size_t tot = t->bt_rdata.size + (sz = 256); local in function:__rec_vpipe
199 void *np = realloc(t->bt_rdata.data, tot);
202 t->bt_rdata.size = tot;
rec_get.c 198 size_t tot = t->bt_rdata.size + (sz = 256); local in function:__rec_vpipe
199 void *np = realloc(t->bt_rdata.data, tot);
202 t->bt_rdata.size = tot;
rec_get.c 198 size_t tot = t->bt_rdata.size + (sz = 256); local in function:__rec_vpipe
199 void *np = realloc(t->bt_rdata.data, tot);
202 t->bt_rdata.size = tot;
  /src/regress/sys/fs/lfs/ckckp/
cleanalot_async.c 80 int i, j, tot; local in function:write_dirs
97 tot = 0;
103 return tot;
105 ++tot;
cleanalot_async.c 80 int i, j, tot; local in function:write_dirs
97 tot = 0;
103 return tot;
105 ++tot;
cleanalot_async.c 80 int i, j, tot; local in function:write_dirs
97 tot = 0;
103 return tot;
105 ++tot;
  /src/games/trek/
phaser.c 105 double tot; local in function:phaser
215 tot = n * (n + 1) / 2;
230 b->units = ((n - i) / tot) * extra;
phaser.c 105 double tot; local in function:phaser
215 tot = n * (n + 1) / 2;
230 b->units = ((n - i) / tot) * extra;
phaser.c 105 double tot; local in function:phaser
215 tot = n * (n + 1) / 2;
230 b->units = ((n - i) / tot) * extra;
  /src/common/dist/zlib/examples/
gzjoin.c 265 local void gzinit(unsigned long *crc, unsigned long *tot, FILE *out)
269 *tot = 0;
275 the output, and the gzip trailer is written. crc and tot maintains the
278 of gzcopy() to write the gzip header and to initialize crc and tot. */
279 local void gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot,
410 /* update crc and tot */
412 *tot += (unsigned long)len;
422 put4(*tot, out);
429 unsigned long crc, tot; /* running crc and total uncompressed length */ local in function:main
443 gzinit(&crc, &tot, stdout)
    [all...]
gzjoin.c 265 local void gzinit(unsigned long *crc, unsigned long *tot, FILE *out)
269 *tot = 0;
275 the output, and the gzip trailer is written. crc and tot maintains the
278 of gzcopy() to write the gzip header and to initialize crc and tot. */
279 local void gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot,
410 /* update crc and tot */
412 *tot += (unsigned long)len;
422 put4(*tot, out);
429 unsigned long crc, tot; /* running crc and total uncompressed length */ local in function:main
443 gzinit(&crc, &tot, stdout)
    [all...]
  /src/tests/net/icmp/
t_ping.c 342 size_t tot, frag; local in function:ATF_TC_BODY
416 for (tot = 0;
417 tot < 65538 - sizeof(*ip);
418 tot += (frag - sizeof(*ip))) {
419 frag = MIN(65538 - tot, sizeof(data));
420 ip->ip_off = tot >> 3;
421 assert((size_t)ip->ip_off << 3 == tot);

Completed in 42 milliseconds

1 2 3