/src/games/dab/ |
human.cc | 55 void HUMAN::play(const BOARD& b, size_t& y, size_t& x, int& dir) function in class:HUMAN
|
main.cc | 63 // Play a single game 64 static void play(BOARD& b, PLAYER* p[2]) function in typeref:typename:void 178 // Play games 180 play(b, p);
|
algor.cc | 248 // Play a bad move that would cause the opponent's closure 293 void ALGOR::play(const BOARD& b, size_t& y, size_t& x, int& dir) function in class:ALGOR 304 // See if we can play an edge without giving the opponent a box
|
/src/games/sail/ |
pl_2.c | 99 play(void) function in typeref:typename:void
|
/src/games/trek/ |
play.c | 1 /* $NetBSD: play.c,v 1.12 2009/08/12 08:54:54 dholland Exp $ */ 35 static char sccsid[] = "@(#)play.c 8.1 (Berkeley) 5/31/93"; 37 __RCSID("$NetBSD: play.c,v 1.12 2009/08/12 08:54:54 dholland Exp $"); 49 ** INSTRUCTION READ AND MAIN PLAY LOOP 97 play(void) function in typeref:typename:void
|
/src/games/warp/ |
play.c | 1 /* Header: play.c,v 7.0.1.1 86/10/16 10:52:39 lwall Exp */ 3 /* Log: play.c,v 24 #include "play.h" 33 play(void) function in typeref:typename:void
|
/src/games/monop/ |
monop.c | 125 PLAY *play, /* player structure array ("calloc"ed) */ variable in typeref:typename:PLAY * 278 cur_p = play = calloc((size_t)num_play, sizeof (PLAY)); 279 if (play == NULL) 290 name_list[i] = play[i].name = strdup(buf); 293 play[i].money = 1500; 308 free(play[i].name); 309 free(play); 327 printf("%s (%d) rolls %d\n", play[i].name, i+1, rl=roll(2, 6)) [all...] |
/src/games/dm/ |
dm.c | 75 static void play(char **) __dead; 101 play(argv); 107 * play -- 108 * play the game 111 play(char **args) function in typeref:typename:void 159 * if day is today, see if okay to play 205 errx(1, "Sorry, you may not play games on %s.", gametty); 298 * log play of game
|
/src/usr.bin/audio/play/ |
play.c | 1 /* $NetBSD: play.c,v 1.64 2024/03/04 06:29:35 mrg Exp $ */ 31 __RCSID("$NetBSD: play.c,v 1.64 2024/03/04 06:29:35 mrg Exp $"); 56 static void play(char *); 192 bufsize = info.play.buffer_size; 203 play(*argv++); 311 play(char *file) function in typeref:typename:void 406 * play the file on the file descriptor fd 485 &info.play.encoding, &info.play.precision)) { 494 info.play.sample_rate = ntohl(sunhdr->sample_rate) [all...] |
/src/sys/dev/pci/ |
emuxkivar.h | 65 /* Recommend the same size as EMU_PTESIZE to be symmetrical for play/rec */ 128 struct dmamem *pmem; /* play memory */ 131 audio_params_t play; member in struct:emuxki_softc
|
esavar.h | 91 struct esa_channel play; member in struct:esa_voice 95 int index; /* 0: play, 1: record */
|
/src/sys/compat/sunos/ |
sunos.h | 147 struct sunos_audio_prinfo play; member in struct:sunos_audio_info
|
/src/sys/dev/isa/ |
mcdreg.h | 92 #define MCD_MD_PLAYAUDIO 0x01 /* 1 = play audio through headphones */ 211 } play; member in union:mcd_command::__anon69815b9d070a
|
/src/usr.bin/cdplay/ |
cdplay.c | 109 { CMD_PLAY, "play", 1, "[#block [len]]" }, 110 { CMD_PLAY, "play", 1, "min1:sec1[.fram1] [min2:sec2[.fram2]]" }, 111 { CMD_PLAY, "play", 1, "tr1 m1:s1[.f1] [[tr2] [m2:s2[.f2]]]" }, 112 { CMD_PLAY, "play", 1, "track1[.index1] [track2[.index2]]" }, 173 static int play(const char *, int); 354 "\nThe word \"play\" is not required for the play commands.\n" 355 "The plain target address is taken as a synonym for play.\n"); 506 rv = play(arg, 1); 560 printf("shuffle play:\t%s\n", (shuffle != 0) ? "on" : "off") 641 play(const char *arg, int fromuser) function in typeref:typename:int [all...] |
/src/usr.bin/midiplay/ |
midiplay.c | 171 static int play = 1; variable in typeref:typename:int 185 if (play) 414 if (play && ioctl(fd, SEQUENCER_INFO, &info) < 0) 420 if (play) 501 if (!play) 527 warnx("Cannot play MIDI file of type %d", format); 565 * Play MIDI events by selecting the track with the lowest 697 if (play && ioctl(fd, SEQUENCER_SYNC, 0) < 0) 758 play = 0; 780 if (!play) [all...] |
/src/sys/sys/ |
audioio.h | 75 struct audio_prinfo play; /* Info for play (output) side */ member in struct:audio_info
|
/src/tests/dev/audio/ |
audiotest.c | 1513 * At first, initialize the sticky parameters both of play and rec. 1535 /* ai.play */ 1536 XP_EQ(8000, ai.play.sample_rate); 1537 XP_EQ(1, ai.play.channels); 1538 XP_EQ(8, ai.play.precision); 1539 XP_EQ(AUDIO_ENCODING_ULAW, ai.play.encoding); 1542 XP_EQ(0, ai.play.seek); 1544 XP_NE(0, ai.play.buffer_size); 1545 XP_EQ(0, ai.play.samples); 1546 XP_EQ(0, ai.play.eof) 3486 int play = 0; local in function:DEF [all...] |