HomeSort by: relevance | last modified time | path
    Searched refs:shuffle (Results 1 - 25 of 64) sorted by relevancy

1 2 3

  /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
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
    [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
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
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/external/apache2/llvm/dist/llvm/tools/bugpoint/
FindBugs.cpp 44 llvm::shuffle(PassesToRun.begin(), PassesToRun.end(), randomness);
ListReducer.h 95 llvm::shuffle(ShuffledList.begin(), ShuffledList.end(), randomness);
97 // Check that random shuffle doesn't lose the bug
  /src/external/gpl3/binutils/dist/bfd/
ecofflink.c 338 struct shuffle
341 struct shuffle *next;
369 /* Linked lists describing how to shuffle the input debug
372 struct shuffle *line;
373 struct shuffle *line_end;
374 struct shuffle *pdr;
375 struct shuffle *pdr_end;
376 struct shuffle *sym;
377 struct shuffle *sym_end;
378 struct shuffle *opt
337 struct shuffle struct
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
ecofflink.c 338 struct shuffle
341 struct shuffle *next;
369 /* Linked lists describing how to shuffle the input debug
372 struct shuffle *line;
373 struct shuffle *line_end;
374 struct shuffle *pdr;
375 struct shuffle *pdr_end;
376 struct shuffle *sym;
377 struct shuffle *sym_end;
378 struct shuffle *opt
337 struct shuffle struct
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
ecofflink.c 328 struct shuffle
331 struct shuffle *next;
359 /* Linked lists describing how to shuffle the input debug
362 struct shuffle *line;
363 struct shuffle *line_end;
364 struct shuffle *pdr;
365 struct shuffle *pdr_end;
366 struct shuffle *sym;
367 struct shuffle *sym_end;
368 struct shuffle *opt
326 struct shuffle struct
    [all...]
  /src/external/gpl3/gdb/dist/bfd/
ecofflink.c 338 struct shuffle
341 struct shuffle *next;
369 /* Linked lists describing how to shuffle the input debug
372 struct shuffle *line;
373 struct shuffle *line_end;
374 struct shuffle *pdr;
375 struct shuffle *pdr_end;
376 struct shuffle *sym;
377 struct shuffle *sym_end;
378 struct shuffle *opt
337 struct shuffle struct
    [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/external/mpl/dhcp/bind/dist/lib/dns/
rdataset.c 320 bool shuffle = false, sort = false; local
372 * Do we want to sort and/or shuffle this answer?
379 shuffle = true;
383 if ((shuffle || sort)) {
388 shuffle = sort = false;
393 if ((shuffle || sort)) {
490 if (shuffle || sort) {
508 if (shuffle || sort) {
  /src/external/mpl/bind/dist/lib/dns/
rdataset.c 254 bool shuffle = false, sort = false; local
304 * Do we want to sort and/or shuffle this answer?
311 shuffle = true;
315 if (shuffle || sort) {
320 shuffle = sort = false;
325 if (shuffle || sort) {
422 if (shuffle || sort) {
440 if (shuffle || sort) {
  /src/games/mille/
mille.c 116 shuffle();
mille.h 262 void shuffle(void);
init.c 92 shuffle(void) function
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 shuffle sockstat sort sortinfo \
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
murmurhash.d 177 h1 ^= shuffle(k1, c1, c2, 15);
258 h4 ^= shuffle(k4, c4, c1, 18);
271 h3 ^= shuffle(k3, c3, c4, 17);
284 h2 ^= shuffle(k2, c2, c3, 16);
297 h1 ^= shuffle(k1, c1, c2, 15);
402 h2 ^= shuffle(k2, c2, c1, 33);
427 h1 ^= shuffle(k1, c1, c2, 31);
618 private T shuffle(T)(T k, T c1, T c2, ubyte r1)
634 h ^= shuffle(k, c1, c2, r1);
  /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);
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
ordered_set.bench.cpp 40 std::shuffle(std::begin(Keys), std::end(Keys), M);

Completed in 72 milliseconds

1 2 3