/external/llvm/utils/ |
shuffle_fuzz.py | 3 """A shuffle vector fuzz tester. 29 parser.add_argument('--max-shuffle-height', type=int, default=16, 30 help='Specify a fixed height of shuffle tree to test') 68 # correctness of a shuffle, we want to bias our fuzz toward having a decent 69 # mixture of non-undef lanes in the end. With a deep shuffle tree, the 77 # a single shuffle, the end result is: 81 # The power of the shuffle height is the real problem, as we want: 98 # This is the formula we use to select undef lanes in the shuffle. 111 # Print out the shuffle sequence in a compact form. 112 print >>sys.stderr, ('Testing shuffle sequence "%s" (v%d%s):' [all...] |
/external/llvm/test/CodeGen/AArch64/ |
arm64-neon-v8.1a.ll | 117 %shuffle = shufflevector <4 x i16> %v, <4 x i16> undef, <4 x i32> <i32 3, i32 3, i32 3, i32 3> 118 %prod = call <4 x i16> @llvm.aarch64.neon.sqrdmulh.v4i16(<4 x i16> %x, <4 x i16> %shuffle) 129 %shuffle = shufflevector <8 x i16> %v, <8 x i16> undef, <8 x i32> <i32 2, i32 2, i32 2, i32 2, i32 2, i32 2, i32 2, i32 2> 130 %prod = call <8 x i16> @llvm.aarch64.neon.sqrdmulh.v8i16(<8 x i16> %x, <8 x i16> %shuffle) 141 %shuffle = shufflevector <2 x i32> %v, <2 x i32> undef, <2 x i32> <i32 1, i32 1> 142 %prod = call <2 x i32> @llvm.aarch64.neon.sqrdmulh.v2i32(<2 x i32> %x, <2 x i32> %shuffle) 153 %shuffle = shufflevector <4 x i32> %v, <4 x i32> undef, <4 x i32> zeroinitializer 154 %prod = call <4 x i32> @llvm.aarch64.neon.sqrdmulh.v4i32(<4 x i32> %x, <4 x i32> %shuffle) 165 %shuffle = shufflevector <4 x i16> %v, <4 x i16> undef, <4 x i32> <i32 3, i32 3, i32 3, i32 3> 166 %prod = call <4 x i16> @llvm.aarch64.neon.sqrdmulh.v4i16(<4 x i16> %x, <4 x i16> %shuffle) [all...] |
arm64-vmul.ll | [all...] |
arm64-build-vector.ll | 57 %shuffle.i = shufflevector <4 x i16> %vshl_n2, <4 x i16> zeroinitializer, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7> 58 ret <8 x i16> %shuffle.i
|
/external/llvm/lib/Target/Mips/ |
MSA.txt | 23 It is not possible to emit vshf.w when the shuffle description is 25 instead. It is also impossible for the shuffle description to be 30 When the shuffle description describes a splat operation, splat.[bhwd] 37 same shuffle. ilvev.d will be emitted instead. 41 same shuffle. ilvod.d will be emitted instead.
|
/hardware/intel/common/libmix/mix_video/test/src/ |
test_framemanager.c | 33 void shuffle(GPtrArray *list) { function 111 /* shuffle the array */ 112 shuffle( fa);
|
/external/llvm/test/CodeGen/X86/ |
widen_shuffle-1.ll | 5 ; widening shuffle v3float and then a add 23 ; widening shuffle v3float with a different mask and then a add 52 %shuffle.i.i.i12 = shufflevector <4 x float> %tmp10, <4 x float> %vecinit15, <4 x i32> <i32 0, i32 1, i32 4, i32 5> 53 %tmp25.i.i = shufflevector <4 x float> %shuffle.i.i.i12, <4 x float> undef, <3 x i32> <i32 0, i32 1, i32 2> 62 %shuffle.i.i.i21 = shufflevector <4 x float> %tmp2.i18, <4 x float> undef, <4 x i32> <i32 2, i32 3, i32 2, i32 3> 63 store <4 x float> %shuffle.i.i.i21, <4 x float>* %dst
|
avx-vextractf128.ll | 8 %shuffle = shufflevector <8 x float> %a, <8 x float> undef, <8 x i32> <i32 4, i32 5, i32 6, i32 7, i32 8, i32 8, i32 8, i32 8> 9 ret <8 x float> %shuffle 17 %shuffle = shufflevector <4 x double> %a, <4 x double> undef, <4 x i32> <i32 2, i32 3, i32 4, i32 4> 18 ret <4 x double> %shuffle
|
selectiondag-crash.ll | 3 ; Check that llc doesn't crash in the attempt to fold a shuffle with
|
pshufb-mask-comments.ll | 45 %shuffle = shufflevector <2 x i64> %l, <2 x i64> undef, <2 x i32> zeroinitializer 46 store <2 x i64> %shuffle, <2 x i64>* undef, align 16
|
scalarize-bitcast.ll | 17 %shuffle.i.i = shufflevector <8 x i8> %conv.i26.i, <8 x i8> <i8 0, i8 0, i8 0, i8 0, i8 undef, i8 undef, i8 undef, i8 undef>, <8 x i32> <i32 0, i32 8, i32 1, i32 9, i32 2, i32 10, i32 3, i32 11> ; <<8 x i8>> [#uses=1] 18 %conv6.i.i = bitcast <8 x i8> %shuffle.i.i to <1 x i64> ; <<1 x i64>> [#uses=1]
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineVectorOps.cpp | 327 /// CollectSingleShuffleElements - If V is a shuffle of values that ONLY returns 328 /// elements from either LHS or RHS, return the shuffle mask and true. 405 /// We are building a shuffle to create V, which is a sequence of insertelement, 408 /// left and right vectors of the proposed shuffle (or 0), and set the Mask 418 assert(V->getType()->isVectorTy() && "Invalid shuffle!"); 445 // otherwise we'd end up with a shuffle of three inputs. 453 // further up the chain. Return a trivial shuffle. 468 // extractelement will already have been converted into a shuffle. 479 // vectors, return the vector and the effective shuffle. 561 // (and any insertelements it points to), into one big shuffle [all...] |
/external/llvm/lib/Analysis/ |
CostModel.cpp | 140 // We don't need a shuffle if we just want to have element 0 in position 0 of 189 // Shuffle inputs must match. 225 // Shuffle mask for pairwise operation must match. 264 // We look for a sequence of shuffle,shuffle,add triples like the following 329 // fadd, shuffle vector pair at a time. 352 ShuffleVectorInst *Shuffle; 353 std::tie(NextRdxOp, Shuffle) = getShuffleAndOtherOprd(BinOp); 355 // Check the current reduction operation and the shuffle use the same value. 356 if (Shuffle == nullptr [all...] |
/external/llvm/test/Bitcode/ |
shuffle.ll | 6 ; create shuffle with a place holder mask.
|
/packages/apps/Music/res/values-en-rAU/ |
strings.xml | 34 <string name="party_shuffle" msgid="8213359225506006168">"Party shuffle"</string> 35 <string name="party_shuffle_off" msgid="1828744483354711679">"Party shuffle off"</string> 37 <string name="shuffle_all" msgid="1388193611787878773">"Shuffle all"</string> 53 <string name="partyshuffle_title" msgid="6582413231529992125">"Party shuffle"</string> 91 <string name="shuffle_on_notif" msgid="5453708337808483943">"Shuffle is on."</string> 92 <string name="shuffle_off_notif" msgid="4251189610017886263">"Shuffle is off."</string>
|
/packages/apps/Music/res/values-en-rGB/ |
strings.xml | 34 <string name="party_shuffle" msgid="8213359225506006168">"Party shuffle"</string> 35 <string name="party_shuffle_off" msgid="1828744483354711679">"Party shuffle off"</string> 37 <string name="shuffle_all" msgid="1388193611787878773">"Shuffle all"</string> 53 <string name="partyshuffle_title" msgid="6582413231529992125">"Party shuffle"</string> 91 <string name="shuffle_on_notif" msgid="5453708337808483943">"Shuffle is on."</string> 92 <string name="shuffle_off_notif" msgid="4251189610017886263">"Shuffle is off."</string>
|
/packages/apps/Music/res/values-en-rIN/ |
strings.xml | 34 <string name="party_shuffle" msgid="8213359225506006168">"Party shuffle"</string> 35 <string name="party_shuffle_off" msgid="1828744483354711679">"Party shuffle off"</string> 37 <string name="shuffle_all" msgid="1388193611787878773">"Shuffle all"</string> 53 <string name="partyshuffle_title" msgid="6582413231529992125">"Party shuffle"</string> 91 <string name="shuffle_on_notif" msgid="5453708337808483943">"Shuffle is on."</string> 92 <string name="shuffle_off_notif" msgid="4251189610017886263">"Shuffle is off."</string>
|
/packages/apps/Music/res/values-nl/ |
strings.xml | 34 <string name="party_shuffle" msgid="8213359225506006168">"Party shuffle"</string> 35 <string name="party_shuffle_off" msgid="1828744483354711679">"Party shuffle uit"</string> 37 <string name="shuffle_all" msgid="1388193611787878773">"Shuffle alles"</string> 53 <string name="partyshuffle_title" msgid="6582413231529992125">"Party shuffle"</string> 91 <string name="shuffle_on_notif" msgid="5453708337808483943">"Shuffle is ingeschakeld."</string> 92 <string name="shuffle_off_notif" msgid="4251189610017886263">"Shuffle is uitgeschakeld."</string>
|
/packages/apps/Music/res/values-tl/ |
strings.xml | 34 <string name="party_shuffle" msgid="8213359225506006168">"Party shuffle"</string> 35 <string name="party_shuffle_off" msgid="1828744483354711679">"I-off ang party shuffle"</string> 37 <string name="shuffle_all" msgid="1388193611787878773">"I-shuffle lahat"</string> 53 <string name="partyshuffle_title" msgid="6582413231529992125">"Party shuffle"</string> 91 <string name="shuffle_on_notif" msgid="5453708337808483943">"Naka-on ang shuffle."</string> 92 <string name="shuffle_off_notif" msgid="4251189610017886263">"Naka-off ang shuffle."</string>
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
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...] |
/packages/apps/Music/res/values/ |
strings.xml | 59 <!-- Menu item that switches the music player in to party shuffle mode --> 60 <string name="party_shuffle">Party shuffle</string> 61 <!-- Menu item that switches the music player out of party shuffle mode --> 62 <string name="party_shuffle_off">Party shuffle off</string> 66 <!-- Menu item to play back all the songs in the currently showing list in shuffle mode --> 67 <string name="shuffle_all">Shuffle all</string> 101 <!-- title of the "current playlist" screen when not in party shuffle mode --> 103 <!-- title of the "current playlist" screen when in party shuffle mode--> 104 <string name="partyshuffle_title">Party shuffle</string> 179 <!-- Toast after turning shuffle on -- [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
CollectionBenchmarkSampleData.java | 82 Collections.shuffle(tmp, random); 93 Collections.shuffle(queryList, random);
|
/frameworks/support/v17/leanback/res/values-en-rAU/ |
strings.xml | 43 <string name="lb_playback_controls_shuffle_enable" msgid="1099874107835264529">"Enable Shuffle"</string> 44 <string name="lb_playback_controls_shuffle_disable" msgid="8388150597335115226">"Disable Shuffle"</string>
|
/frameworks/support/v17/leanback/res/values-en-rGB/ |
strings.xml | 43 <string name="lb_playback_controls_shuffle_enable" msgid="1099874107835264529">"Enable Shuffle"</string> 44 <string name="lb_playback_controls_shuffle_disable" msgid="8388150597335115226">"Disable Shuffle"</string>
|
/frameworks/support/v17/leanback/res/values-en-rIN/ |
strings.xml | 43 <string name="lb_playback_controls_shuffle_enable" msgid="1099874107835264529">"Enable Shuffle"</string> 44 <string name="lb_playback_controls_shuffle_disable" msgid="8388150597335115226">"Disable Shuffle"</string>
|