Searched defs:shuffle (Results 1 - 25 of 55) sorted by relevance

123

/external/adhd/cras/src/server/
H A Dcras_bt_player.h30 bool shuffle; member in struct:cras_bt_player
/external/eigen/unsupported/test/
H A Dcxx11_tensor_shuffling.cpp29 no_shuffle = tensor.shuffle(shuffles);
50 Tensor<float, 4, DataLayout> shuffle; local
51 shuffle = tensor.shuffle(shuffles);
53 VERIFY_IS_EQUAL(shuffle.dimension(0), 5);
54 VERIFY_IS_EQUAL(shuffle.dimension(1), 7);
55 VERIFY_IS_EQUAL(shuffle.dimension(2), 3);
56 VERIFY_IS_EQUAL(shuffle.dimension(3), 2);
62 VERIFY_IS_EQUAL(tensor(i,j,k,l), shuffle(k,l,j,i));
82 expected = tensor.shuffle(shuffle
198 Tensor<float, 4, DataLayout> shuffle; local
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeRandom.hpp68 void shuffle (Iterator first, Iterator last);
166 void Random::shuffle (Iterator first, Iterator last) function in class:de::Random
/external/python/cpython2/Lib/test/
H A Dtest_ordered_dict.py3 from random import shuffle namespace
82 shuffle(pairs)
106 shuffle(pairs)
120 shuffle(pairs)
130 shuffle(pairs)
132 shuffle(pairs)
154 shuffle(pairs)
225 shuffle(pairs)
H A Dtest_math.py377 random.shuffle(values)
535 from random import random, gauss, shuffle namespace
543 shuffle(vals)
H A Dtest_weakset.py8 from random import randrange, shuffle namespace
/external/webp/src/dsp/
H A Dlossless_enc_neon.c40 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));
59 const uint8x16_t shuffle = vld1q_u8(kGreenShuffle); local
61 const uint8x8_t shuffle = vld1_u8(kGreenShuffle); local
65 const uint8x16_t greens = DoGreenShuffle_NEON(argb, shuffle);
96 const uint8x16_t shuffle local
39 DoGreenShuffle_NEON(const uint8x16_t argb, const uint8x16_t shuffle) argument
48 DoGreenShuffle_NEON(const uint8x16_t argb, const uint8x8_t shuffle) argument
99 const uint8x8_t shuffle = vld1_u8(k0g0g); local
[all...]
/external/eigen/bench/tensors/
H A Dtensor_benchmarks.h158 Eigen::array<int, 2> shuffle; local
159 shuffle[0] = 1;
160 shuffle[1] = 0;
164 B.device(device_) = A.shuffle(shuffle);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorShuffling.h63 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorShufflingOp(const XprType& expr, const Shuffle& shuffle) argument
64 : m_xpr(expr), m_shuffle(shuffle) {}
123 const Shuffle& shuffle = op.shufflePermutation(); local
125 m_dimensions[i] = input_dims[shuffle[i]];
147 m_inputStrides[i] = inputStrides[shuffle[i]];
H A DTensorBase.h779 shuffle(const Shuffle& shuffle) const { function in class:Eigen::TensorBase
780 return TensorShufflingOp<const Shuffle, const Derived>(derived(), shuffle);
975 shuffle(const Shuffle& shuffle) const { function in class:Eigen::TensorBase
976 return TensorShufflingOp<const Shuffle, const Derived>(derived(), shuffle);
980 shuffle(const Shuffle& shuffle) { argument
981 return TensorShufflingOp<const Shuffle, Derived>(derived(), shuffle);
/external/python/cpython2/Lib/
H A Drandom.py52 "randrange","shuffle","normalvariate","lognormvariate",
154 # we use hashing to create a large n for the shuffle.
277 def shuffle(self, x, random=None): member in class:Random
278 """x, random=random.random -> shuffle list x in place; return None.
894 shuffle = _inst.shuffle variable
/external/python/cpython3/Lib/
H A Drandom.py51 "randrange","shuffle","normalvariate","lognormvariate",
260 def shuffle(self, x, random=None): member in class:Random
751 shuffle = _inst.shuffle variable
/external/skia/bench/
H A DImageCacheBudgetBench.cpp72 ImageCacheBudgetBench(int budgetSize, bool shuffle) argument
74 , fShuffle(shuffle)
80 (shuffle ? "_shuffle" : ""));
/external/skqp/bench/
H A DImageCacheBudgetBench.cpp72 ImageCacheBudgetBench(int budgetSize, bool shuffle) argument
74 , fShuffle(shuffle)
80 (shuffle ? "_shuffle" : ""));
/external/syslinux/gpxe/src/arch/i386/interface/syslinux/
H A Dcomboot_call.c110 static void shuffle ( unsigned int list_segment, unsigned int list_offset, unsigned int count ) function
115 /* Copy shuffle descriptor list so it doesn't get overwritten */
510 case 0x0011: /* Maximum number of shuffle descriptors */
515 case 0x0012: /* Cleanup, shuffle and boot */
523 shuffle ( ix86->segs.es, ix86->regs.di, ix86->regs.cx );
592 case 0x001B: /* Cleanup, shuffle and boot to real mode */
600 shuffle ( ix86->segs.es, ix86->regs.di, ix86->regs.cx );
/external/tensorflow/tensorflow/contrib/data/python/ops/
H A Ddataset_ops.py300 def shuffle(self, buffer_size, seed=None): member in class:Dataset
370 d = d.shuffle(FLAGS.shuffle_buffer_size)
377 shuffle).
388 d = d.shuffle(FLAGS.shuffle_buffer_size)
/external/tensorflow/tensorflow/core/kernels/
H A Dconv_2d.h38 output.device(d) = input.shuffle(order).reverse(reverse_dims);
50 output.device(d) = input.inflate(strides).pad(pad_dims).shuffle(order);
149 // We want a 3, 2, 0, 1 shuffle. Merge the spatial dimensions together
150 // to speed up the shuffle operation.
167 .shuffle(Eigen::DSizes<IndexType, 3>(2, 1, 0))
176 const Eigen::DSizes<IndexType, 4>& shuffle,
183 if (shuffle[1] == 2 && shuffle[2] == 3) {
187 new_shuffle[0] = shuffle[0];
189 new_shuffle[2] = shuffle[
174 operator ()(const Device& d, typename TTypes<T, 4, IndexType>::ConstTensor in, const Eigen::DSizes<IndexType, 4>& shuffle, typename TTypes<T, 4, IndexType>::Tensor out) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DRandomDataImpl.java823 * Uses a 2-cycle permutation shuffle. The shuffling process is described <a
847 shuffle(index, n - k);
857 * Uses a 2-cycle permutation shuffle to generate a random permutation.
859 * shuffle to generate a random permutation of <code>c.size()</code> and
929 * Uses a 2-cycle permutation shuffle to randomly re-order the last elements
937 private void shuffle(int[] list, int end) { method in class:RandomDataImpl
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_pack.c84 * Build shuffle vectors that match PUNPCKLxx and PUNPCKHxx instructions.
132 * Build shuffle vectors that match PACKxx (SSE) instructions or
272 LLVMValueRef shuffle, elems[LP_MAX_VECTOR_LENGTH]; local
279 shuffle = LLVMConstVector(elems, num_elems / 2);
281 return LLVMBuildShuffleVector(gallivm->builder, a, a, shuffle, "");
298 LLVMValueRef shuffle; local
304 * a natural match when using 2x128bit vectors) the "normal" unpack shuffle
322 shuffle = lp_build_const_unpack_shuffle(gallivm, type.length, lo_hi);
324 return LLVMBuildShuffleVector(gallivm->builder, a, b, shuffle, "");
355 LLVMValueRef shuffle local
542 LLVMValueRef shuffle; local
[all...]
H A Dlp_bld_swizzle.c61 /* The shuffle vector is always made of int32 elements */
89 * Combined extract and broadcast (mere shuffle in most cases)
128 * shuffle - result can be of different length.
131 LLVMValueRef shuffle; local
132 shuffle = lp_build_broadcast(gallivm,
137 shuffle, "");
406 unsigned shuffle; local
415 shuffle = j + swizzles[i];
416 shuffles[j + i] = LLVMConstInt(i32t, shuffle, 0);
419 shuffle
[all...]
H A Dlp_bld_sample_aos.c850 LLVMValueRef shuffle; local
892 shuffle = LLVMConstVector(shuffles, u8n.type.length);
895 shuffle, "");
898 shuffle, "");
902 shuffle, "");
1566 LLVMValueRef shuffle[LP_MAX_VECTOR_LENGTH]; local
1573 shuffle[i] = lp_build_const_int32(bld->gallivm, i / num_chans_per_lod);
1576 LLVMConstVector(shuffle, u8n_bld.type.length), "");
/external/python/cpython2/Demo/tkinter/guido/
H A Dsolitaire.py394 shuffle() -- shuffle the playing cards
414 def shuffle(self): member in class:Deck
610 self.deck.shuffle()
/external/tensorflow/tensorflow/contrib/learn/python/learn/learn_io/
H A Ddata_feeder.py108 shuffle=True,
125 shuffle: Whether to shuffle the inputs.
152 x, y, n_classes, batch_size, shuffle=shuffle, epochs=epochs)
285 shuffle=True,
302 shuffle: Whether to shuffle `x`.
365 self._shuffle = shuffle
394 def shuffle(sel member in class:DataFeeder
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_ordered_dict.py6 from random import randrange, shuffle namespace
58 shuffle(items)
139 shuffle(pairs)
166 shuffle(pairs)
220 shuffle(pairs)
242 shuffle(pairs)
244 shuffle(pairs)
268 shuffle(pairs)
361 shuffle(pairs)
/external/tensorflow/tensorflow/python/data/ops/
H A Ddataset_ops.py594 def shuffle(self, buffer_size, seed=None, reshuffle_each_iteration=None): member in class:Dataset
667 d = d.shuffle(FLAGS.shuffle_buffer_size)
674 shuffle).
685 d = d.shuffle(FLAGS.shuffle_buffer_size)

Completed in 793 milliseconds

123