HomeSort by relevance Sort by last modified time
    Searched refs:shuffle (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/
random_shuffle_urng.pass.cpp 13 // void shuffle(RandomAccessIterator first, RandomAccessIterator last,
27 std::shuffle(ia, ia+sa, g);
29 std::shuffle(ia, ia+sa, g);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.random.shuffle/
random_shuffle_urng.pass.cpp 13 // void shuffle(RandomAccessIterator first, RandomAccessIterator last,
27 std::shuffle(ia, ia+sa, g);
29 std::shuffle(ia, ia+sa, g);
  /external/webp/src/dsp/
lossless_enc_neon.c 40 const uint8x16_t shuffle) {
41 return vcombine_u8(vtbl1q_u8(argb, vget_low_u8(shuffle)),
42 vtbl1q_u8(argb, vget_high_u8(shuffle)));
49 const uint8x8_t shuffle) {
50 return vcombine_u8(vtbl1_u8(vget_low_u8(argb), shuffle),
51 vtbl1_u8(vget_high_u8(argb), shuffle));
58 const uint8x16_t shuffle = vld1q_u8(kGreenShuffle); local
60 const uint8x8_t shuffle = vld1_u8(kGreenShuffle); local
64 const uint8x16_t greens = DoGreenShuffle(argb, shuffle);
95 const uint8x16_t shuffle = vld1q_u8(kg0g0) local
98 const uint8x8_t shuffle = vld1_u8(k0g0g); local
    [all...]
lossless_neon.c 77 const uint8x8_t shuffle = vld1_u8(kRGBAShuffle); local
80 vst1_u8(dst, vtbl1_u8(pixels, shuffle));
159 const uint8x16_t shuffle) {
160 return vcombine_u8(vtbl1q_u8(argb, vget_low_u8(shuffle)),
161 vtbl1q_u8(argb, vget_high_u8(shuffle)));
168 const uint8x8_t shuffle) {
169 return vcombine_u8(vtbl1_u8(vget_low_u8(argb), shuffle),
170 vtbl1_u8(vget_high_u8(argb), shuffle));
177 const uint8x16_t shuffle = vld1q_u8(kGreenShuffle); local
179 const uint8x8_t shuffle = vld1_u8(kGreenShuffle) local
214 const uint8x16_t shuffle = vld1q_u8(kg0g0); local
217 const uint8x8_t shuffle = vld1_u8(k0g0g); local
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
PriorityQueueBenchmark.java 48 // shuffle these elements so that we get a reasonable distribution of missed elements
49 Collections.shuffle(allElements, random);
64 // shuffle again so that elements are accessed in a different pattern than they were
66 Collections.shuffle(seekElements, random);
  /external/opencv3/modules/java/src/
ml+TrainData.java 447 // C++: void setTrainTestSplit(int count, bool shuffle = true)
450 //javadoc: TrainData::setTrainTestSplit(count, shuffle)
451 public void setTrainTestSplit(int count, boolean shuffle)
454 setTrainTestSplit_0(nativeObj, count, shuffle);
470 // C++: void setTrainTestSplitRatio(double ratio, bool shuffle = true)
473 //javadoc: TrainData::setTrainTestSplitRatio(ratio, shuffle)
474 public void setTrainTestSplitRatio(double ratio, boolean shuffle)
477 setTrainTestSplitRatio_0(nativeObj, ratio, shuffle);
625 // C++: void setTrainTestSplit(int count, bool shuffle = true)
626 private static native void setTrainTestSplit_0(long nativeObj, int count, boolean shuffle);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
splet.s 69 ! test SHUFFLE
71 shuffle %l0, 0x1, %l1
72 shuffle %l0, 0x2, %l1
73 shuffle %l0, 0x4, %l1
74 shuffle %l0, 0x8, %l1
75 shuffle %l0, 0x10, %l1
76 shuffle %l0, 0x18, %l1
splet.d 49 74: a3 6c 20 01 shuffle %l0, 1, %l1
50 78: a3 6c 20 02 shuffle %l0, 2, %l1
51 7c: a3 6c 20 04 shuffle %l0, 4, %l1
52 80: a3 6c 20 08 shuffle %l0, 8, %l1
53 84: a3 6c 20 10 shuffle %l0, 0x10, %l1
54 88: a3 6c 20 18 shuffle %l0, 0x18, %l1
  /toolchain/binutils/binutils-2.25/bfd/
ecofflink.c 327 struct shuffle
330 struct shuffle *next;
358 /* Linked lists describing how to shuffle the input debug
361 struct shuffle *line;
362 struct shuffle *line_end;
363 struct shuffle *pdr;
364 struct shuffle *pdr_end;
365 struct shuffle *sym;
366 struct shuffle *sym_end;
367 struct shuffle *opt
325 struct shuffle struct
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
geometry_unittest.py 104 # Shuffle the two clusters, and then test the get_two_farthest_clusters
111 random.shuffle(points, lambda: 0.1234)
  /external/caliper/examples/src/main/java/examples/
ContainsBenchmark.java 50 Collections.shuffle(queries, new Random(0));
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineUniqueRandomIterator.hpp 83 rnd.shuffle(m_indices.begin(), m_indices.end());
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_swizzle.c 66 /* The shuffle vector is always made of int32 elements */
99 * Combined extract and broadcast (mere shuffle in most cases)
138 * shuffle - result can be of different length.
141 LLVMValueRef shuffle; local
142 shuffle = lp_build_broadcast(gallivm,
147 shuffle, "");
182 * Shuffle.
290 * Shuffle.
301 unsigned shuffle; local
310 shuffle = j + swizzles[i]
    [all...]
lp_bld_pack.c 84 * Build shuffle vectors that match PUNPCKLxx and PUNPCKHxx instructions.
132 * Build shuffle vectors that match PACKxx instructions.
226 LLVMValueRef shuffle; local
228 shuffle = lp_build_const_unpack_shuffle(gallivm, type.length, lo_hi);
230 return LLVMBuildShuffleVector(gallivm->builder, a, b, shuffle, "");
261 LLVMValueRef shuffle = lp_build_const_unpack_shuffle_half(gallivm, type.length, lo_hi); local
262 return LLVMBuildShuffleVector(gallivm->builder, a, b, shuffle, "");
386 LLVMValueRef shuffle; local
426 /* default uses generic shuffle below */
479 /* generic shuffle */
    [all...]
  /external/deqp/framework/delibs/decpp/
deRandom.hpp 68 void shuffle (Iterator first, Iterator last);
166 void Random::shuffle (Iterator first, Iterator last) function in class:de::Random
  /external/guava/guava-tests/test/com/google/common/collect/
CollectionBenchmarkSampleData.java 82 Collections.shuffle(tmp, random);
93 Collections.shuffle(queryList, random);
  /hardware/intel/common/libmix/mix_video/test/src/
test_framemanager.c 33 void shuffle(GPtrArray *list) { function
111 /* shuffle the array */
112 shuffle( fa);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
VerticalGridFragment.java 62 Collections.shuffle(list, new Random(seed));
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
SortIndexTest.java 79 Collections.shuffle(list);
  /external/opencv3/samples/python2/
digits.py 155 # shuffle digits
157 shuffle = rand.permutation(len(digits)) variable
158 digits, labels = digits[shuffle], labels[shuffle]
digits_adjust.py 78 shuffle = np.random.permutation(len(digits))
79 digits, labels = digits[shuffle], labels[shuffle]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sort.py 91 random.shuffle(s)
108 random.shuffle(s)
149 random.shuffle(L)
177 random.shuffle(data)
253 random.shuffle(data)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sort.py 91 random.shuffle(s)
108 random.shuffle(s)
149 random.shuffle(L)
177 random.shuffle(data)
253 random.shuffle(data)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sort.py 91 random.shuffle(s)
108 random.shuffle(s)
149 random.shuffle(L)
177 random.shuffle(data)
253 random.shuffle(data)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sort.py 91 random.shuffle(s)
108 random.shuffle(s)
149 random.shuffle(L)
177 random.shuffle(data)
253 random.shuffle(data)

Completed in 749 milliseconds

1 2 3 4 5 6 7 8 910