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

  /src/games/cribbage/
crib.c 65 static int cut(BOOLEAN, int);
237 msg(quiet ? "Cut for crib? " :
238 "Cut to see whose crib it is -- low card wins? ");
241 i = (rand() >> 4) % CARDS; /* random cut */
245 addmsg(quiet ? "You cut " : "You cut the ");
248 addmsg(quiet ? "I cut " : "I cut the ");
334 if (cut(mycrib, deckpos))
395 * cut
400 cut(BOOLEAN mycrib, int pos) function in typeref:typename:int
    [all...]
  /src/sys/dist/pf/net/
pf.c 2438 u_int16_t cut; local in function:pf_get_sport
2484 cut = htonl(cprng_fast32()) % (1 + high - low) + low;
2485 /* low <= cut <= high */
2486 for (tmp = cut; tmp <= high; ++(tmp)) {
2494 for (tmp = cut - 1; tmp >= low; --(tmp)) {

Completed in 67 milliseconds