/src/usr.bin/shuffle/ |
Makefile | 3 PROG= shuffle
|
shuffle.c | 1 /* $NetBSD: shuffle.c,v 1.22 2017/02/06 02:26:44 dholland Exp $ */ 36 __RCSID("$NetBSD: shuffle.c,v 1.22 2017/02/06 02:26:44 dholland Exp $"); 57 * Construct a random shuffle array of t elements 62 size_t *shuffle; local in function:get_shuffle 65 shuffle = emalloc(t * sizeof(size_t)); 68 shuffle[i] = i; 77 temp = shuffle[j]; 78 shuffle[j] = shuffle[k]; 79 shuffle[k] = temp 163 size_t *shuffle = NULL; local in function:main [all...] |
/src/games/cribbage/ |
cribbage.h | 87 void shuffle(CARD []);
|
cards.c | 70 * Given a deck of cards, shuffle it -- i.e. randomize it 74 shuffle(CARD d[]) function in typeref:typename:void
|
crib.c | 232 shuffle(deck); 255 shuffle(deck); 278 shuffle(deck);
|
/src/usr.bin/cdplay/ |
cdplay.c | 118 { CMD_SHUFFLE, "shuffle", 2, NULL }, 144 static int shuffle; variable in typeref:typename:int 414 if (shuffle == 1) 488 if (shuffle) 525 "`shuffle' valid only in interactive mode"); 526 if (shuffle == 0) { 534 shuffle = 1; 538 shuffle = -atoi(arg); 542 shuffle = cmd == CMD_SINGLE ? -atoi(arg) : 1; 544 if (shuffle) [all...] |
/src/usr.bin/make/unit-tests/ |
varmod-order.mk | 4 # words of the value or shuffle them. 93 # If a modifier that starts with ':O' is not one of the known sort or shuffle
|
varmod-order-shuffle.mk | 1 # $NetBSD: varmod-order-shuffle.mk,v 1.8 2023/02/26 06:08:06 rillig Exp $
|
/src/games/mille/ |
mille.c | 116 shuffle();
|
mille.h | 262 void shuffle(void);
|
init.c | 92 shuffle(void) function in typeref:typename:void 100 warnx("shuffle: card no. error: %d", r);
|
/src/common/lib/libc/arch/sparc/string/ |
bzero.S | 61 * register pair; shuffle arguments to match those of bzero. 64 mov %o2, %o1 ! shuffle argument
|
/src/usr.bin/ |
Makefile | 28 showmount shuffle sockstat sort sortinfo \
|
/src/distrib/evbsh3/rom/ramdiskcommon/ |
ramdiskbin.conf | 44 progs rpcinfo rs sed showmount shuffle skey skeyinfo skeyinit soelim
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_bitvector_test.cc | 117 std::shuffle(bits.begin(), bits.end(), r);
|
sanitizer_allocator_test.cc | 659 std::shuffle(allocated.begin(), allocated.end(), r); 1291 // Shuffle free_list to verify that ReleaseFreeMemoryToOS does not depend on 1293 std::shuffle(free_array.begin(), free_array.end(), r);
|
/src/sys/dev/tc/ |
cfb.c | 198 static const uint8_t shuffle[256] = { variable in typeref:typename:const uint8_t[256] 567 REGWRITE32(vdac, bt_reg, shuffle[u]); 569 REGWRITE32(vdac, bt_reg, shuffle[u]);
|
xcfb.c | 166 static const uint8_t shuffle[256] = { variable in typeref:typename:const uint8_t[256] 736 bits = shuffle[u]; 738 bits = (shuffle[u] << 8) | bits;
|
sfb.c | 211 static const uint8_t shuffle[256] = { variable in typeref:typename:const uint8_t[256] 619 REGWRITE32(vdac, bt_reg, shuffle[u]); 621 REGWRITE32(vdac, bt_reg, shuffle[u]);
|
sfbplus.c | 202 static const uint8_t shuffle[256] = { variable in typeref:typename:const uint8_t[256] 928 REG(hw, bt_reg) = shuffle[u]; tc_wmb(); 930 REG(hw, bt_reg) = shuffle[u]; tc_wmb();
|
stic.c | 199 static const uint8_t shuffle[256] = { variable in typeref:typename:const uint8_t[256] 1203 REG(vdac, bt_reg) = DUPBYTE0(shuffle[u]); 1206 REG(vdac, bt_reg) = DUPBYTE0(shuffle[u]);
|
/src/games/canfield/canfield/ |
canfield.c | 227 static void shuffle(struct cardtype *[]); 529 * procedure to shuffle the deck 532 shuffle(struct cardtype *ideck[]) function in typeref:typename:void 732 shuffle(deck);
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerDriver.cpp | 586 Options.ShuffleAtStartUp = Flags.shuffle;
|
FuzzerLoop.cpp | 772 std::shuffle(SizedFiles.begin(), SizedFiles.end(), MD.GetRand());
|
FuzzerMutate.cpp | 100 std::shuffle(Data + ShuffleStart, Data + ShuffleStart + ShuffleAmount, Rand);
|