Searched refs:shuffle (Results 26 - 50 of 65) sorted by relevance

123

/netbsd-current/distrib/evbsh3/rom/ramdiskcommon/
H A Dramdiskbin.conf44 progs rpcinfo rs sed showmount shuffle skey skeyinfo skeyinit soelim
/netbsd-current/games/mille/
H A Dinit.c92 shuffle(void) function
100 warnx("shuffle: card no. error: %d", r);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_bitvector_test.cc117 std::shuffle(bits.begin(), bits.end(), r);
H A Dsanitizer_allocator_test.cc659 std::shuffle(allocated.begin(), allocated.end(), r);
1293 std::shuffle(free_array.begin(), free_array.end(), r);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCShuffler.cpp14 #define DEBUG_TYPE "hexagon-shuffle"
30 DisableShuffle("disable-hexagon-shuffle", cl::Hidden, cl::init(false),
95 if (shuffle()) {
165 // try shuffle with this duplex
174 doneShuffling = MCS.reshuffleTo(MCB); // shuffle
H A DHexagonShuffler.h210 bool shuffle();
H A DHexagonShuffler.cpp14 #define DEBUG_TYPE "hexagon-shuffle"
634 bool HexagonShuffler::shuffle() { function in class:HexagonShuffler
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dordered_set.bench.cpp40 std::shuffle(std::begin(Keys), std::end(Keys), M);
H A Dmap.bench.cpp60 TestSets makeTestingSets(size_t MapSize, Mode mode, Shuffle shuffle, argument
63 * The shuffle does not retain the random number generator to use the same
73 if (shuffle == Shuffle::Keys)
74 std::shuffle(R.Keys.begin(), R.Keys.end(), std::mt19937());
82 if (shuffle == Shuffle::Hints)
83 std::shuffle(hints.begin(), hints.end(), std::mt19937());
H A Dalgorithms.bench.cpp112 std::shuffle(V.begin(), V.end(), M);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A Dcl_arguments.py153 selection_group.add_argument("--shuffle",
213 if opts.shuffle:
H A Dmain.py171 random.shuffle(tests)
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DSerialSnippetGenerator.cpp45 llvm::shuffle(Opcodes.begin(), Opcodes.end(), randomGenerator());
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h93 const char kShuffleFlag[] = "shuffle";
174 shuffle_ = GTEST_FLAG(shuffle);
196 GTEST_FLAG(shuffle) = shuffle_;
305 // Performs an in-place shuffle of a range of the vector's elements.
308 // shuffle to the end of the vector.
314 << "Invalid shuffle range start " << begin << ": must be in range [0, "
317 << "Invalid shuffle range finish " << end << ": must be in range ["
320 // Fisher-Yates shuffle, from
332 // Performs an in-place shuffle of the vector's elements.
823 // Restores the test suites and tests to their order before the first shuffle
[all...]
H A Dgtest.cc297 GTEST_DEFINE_bool_(shuffle, internal::BoolFromGTestEnv("shuffle", false),
2845 // Restores the test order to before the first shuffle.
3163 if (GTEST_FLAG(shuffle)) {
3907 if (GTEST_FLAG(shuffle)) {
4283 if (GTEST_FLAG(shuffle)) {
5277 random_seed_ = GTEST_FLAG(shuffle) ?
5301 if (has_tests_to_run && GTEST_FLAG(shuffle)) {
5362 // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in
5367 if (GTEST_FLAG(shuffle)) {
[all...]
/netbsd-current/sys/dev/tc/
H A Dcfb.c198 static const uint8_t shuffle[256] = { variable
567 REGWRITE32(vdac, bt_reg, shuffle[u]);
569 REGWRITE32(vdac, bt_reg, shuffle[u]);
H A Dxcfb.c166 static const uint8_t shuffle[256] = { variable
736 bits = shuffle[u];
738 bits = (shuffle[u] << 8) | bits;
H A Dsfb.c211 static const uint8_t shuffle[256] = { variable
619 REGWRITE32(vdac, bt_reg, shuffle[u]);
621 REGWRITE32(vdac, bt_reg, shuffle[u]);
H A Dsfbplus.c202 static const uint8_t shuffle[256] = { variable
928 REG(hw, bt_reg) = shuffle[u]; tc_wmb();
930 REG(hw, bt_reg) = shuffle[u]; tc_wmb();
H A Dstic.c199 static const uint8_t shuffle[256] = { variable
1203 REG(vdac, bt_reg) = DUPBYTE0(shuffle[u]);
1206 REG(vdac, bt_reg) = DUPBYTE0(shuffle[u]);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp294 auto shuffle = [this] (const BT::RegisterCell &Rs, const BT::RegisterCell &Rt,
773 RegisterCell RC = shuffle(rc(1), rc(2), 8, false);
777 RegisterCell RC = shuffle(rc(1), rc(2), 16, false);
781 RegisterCell RC = shuffle(rc(1), rc(2), 8, true);
785 RegisterCell RC = shuffle(rc(1), rc(2), 16, true);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Headers/
H A Dopencl-c.h13565 * The shuffle and shuffle2 built-in functions construct
13569 * input and length that is the same as the shuffle mask.
13571 * size of each element in the result. For shuffle, only
13580 * by vec_step(gentypem). The shuffle mask operand
13588 * float4 r = shuffle(a, mask);
13599 * b = shuffle(a, mask);
13604 * b = shuffle(a, mask); <- not valid
13606 char2 __ovld __cnfn shuffle(char2 x, uchar2 mask);
13607 char2 __ovld __cnfn shuffle(char4 x, uchar2 mask);
13608 char2 __ovld __cnfn shuffle(char
[all...]
/netbsd-current/games/canfield/canfield/
H A Dcanfield.c227 static void shuffle(struct cardtype *[]);
529 * procedure to shuffle the deck
532 shuffle(struct cardtype *ideck[]) function
732 shuffle(deck);
/netbsd-current/external/apache2/llvm/dist/clang/utils/perf-training/
H A Dperf-helper.py306 random.shuffle(merged_symbols)
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerDriver.cpp586 Options.ShuffleAtStartUp = Flags.shuffle;

Completed in 484 milliseconds

123