/external/clang/lib/Sema/ |
D | SemaStmtAttr.cpp | 106 .Case("interleave", LoopHintAttr::Interleave) in handleLoopHintAttr() 120 Option == LoopHintAttr::Interleave || in handleLoopHintAttr() 169 enum { Vectorize, Interleave, Unroll, Distribute } Category; in CheckForIncompatibleAttributes() enumerator 175 case LoopHintAttr::Interleave: in CheckForIncompatibleAttributes() 177 Category = Interleave; in CheckForIncompatibleAttributes() 192 Option == LoopHintAttr::Interleave || Option == LoopHintAttr::Unroll || in CheckForIncompatibleAttributes()
|
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.cpp | 178 case LoopHintAttr::Interleave: in push() 198 case LoopHintAttr::Interleave: in push() 217 case LoopHintAttr::Interleave: in push() 237 case LoopHintAttr::Interleave: in push() 259 case LoopHintAttr::Interleave: in push()
|
/external/rust/crates/rayon/src/iter/ |
D | interleave.rs | 14 pub struct Interleave<I, J> struct 23 impl<I, J> Interleave<I, J> argument 30 Interleave { i, j } in new() 34 impl<I, J> ParallelIterator for Interleave<I, J> implementation 53 impl<I, J> IndexedParallelIterator for Interleave<I, J> implementation
|
D | interleave_shortest.rs | 20 interleave: Interleave<Take<I>, Take<J>>,
|
/external/webrtc/modules/audio_processing/test/ |
D | test_utils.cc | 65 Interleave(buffer.channels(), buffer.num_frames(), buffer.num_channels(), in Write() 81 Interleave(buffer.channels(), buffer.num_frames(), buffer.num_channels(), in Write() 108 Interleave(data, samples_per_channel, num_channels, buffer.get()); in WriteFloatData()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmtAttr.cpp | 132 .Case("interleave", LoopHintAttr::Interleave) in handleLoopHintAttr() 151 Option == LoopHintAttr::Interleave || in handleLoopHintAttr() 260 Interleave, in CheckForIncompatibleAttributes() enumerator 272 case LoopHintAttr::Interleave: in CheckForIncompatibleAttributes() 274 Category = Interleave; in CheckForIncompatibleAttributes() 301 Option == LoopHintAttr::Interleave || Option == LoopHintAttr::Unroll || in CheckForIncompatibleAttributes()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorizationLegality.cpp | 72 Interleave("interleave.count", InterleaveOnlyWhenForced, HK_UNROLL), in LoopVectorizeHints() 82 Interleave.Value = VectorizerParams::VectorizationInterleave; in LoopVectorizeHints() 88 IsVectorized.Value = Width.Value == 1 && Interleave.Value == 1; in LoopVectorizeHints() 89 LLVM_DEBUG(if (InterleaveOnlyWhenForced && Interleave.Value == 1) dbgs() in LoopVectorizeHints() 162 if (Interleave.Value != 0) in emitRemarkWithHints() 163 R << ", Interleave Count=" << NV("InterleaveCount", Interleave.Value); in emitRemarkWithHints() 227 Hint *Hints[] = {&Width, &Interleave, &Force, &IsVectorized, &Predicate}; in setHint()
|
/external/clang/test/CodeGenCXX/ |
D | pragma-loop.cpp | 32 enum struct Tuner : short { Interleave = 4, Unroll = 8 }; enumerator 37 #pragma clang loop interleave_count(static_cast<int>(Tuner::Interleave)) in for_test()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | pragma-loop.cpp | 32 enum struct Tuner : short { Interleave = 4, Unroll = 8 }; enumerator 37 #pragma clang loop interleave_count(static_cast<int>(Tuner::Interleave)) in for_test()
|
/external/llvm-project/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorizationLegality.cpp | 79 Interleave("interleave.count", InterleaveOnlyWhenForced, HK_UNROLL), in LoopVectorizeHints() 90 Interleave.Value = VectorizerParams::VectorizationInterleave; in LoopVectorizeHints() 97 getWidth() == ElementCount::getFixed(1) && Interleave.Value == 1; in LoopVectorizeHints() 98 LLVM_DEBUG(if (InterleaveOnlyWhenForced && Interleave.Value == 1) dbgs() in LoopVectorizeHints() 171 if (Interleave.Value != 0) in emitRemarkWithHints() 172 R << ", Interleave Count=" << NV("InterleaveCount", Interleave.Value); in emitRemarkWithHints() 236 Hint *Hints[] = {&Width, &Interleave, &Force, in setHint()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Vectorize/ |
D | LoopVectorizationLegality.h | 65 Hint Interleave; variable 102 unsigned getInterleave() const { return Interleave.Value; } in getInterleave()
|
/external/autotest/server/site_tests/hardware_StorageStress/ |
D | control.soak | 14 Interleave every 15h a veritication test and measure latency/throughput.
|
/external/llvm-project/llvm/include/llvm/Transforms/Vectorize/ |
D | LoopVectorizationLegality.h | 72 Hint Interleave; variable 114 unsigned getInterleave() const { return Interleave.Value; } in getInterleave()
|
/external/webrtc/common_audio/ |
D | audio_util_unittest.cc | 140 Interleave(deinterleaved, kSamplesPerChannel, kNumChannels, interleaved); in TEST() 154 Interleave(deinterleaved, kSamplesPerChannel, kNumChannels, interleaved); in TEST()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/ |
D | GCMUtil.java | 3 import org.bouncycastle.math.raw.Interleave; 310 Interleave.expand64To128Rev(x[0], t, 0); in square() 311 Interleave.expand64To128Rev(x[1], t, 2); in square()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGLoopInfo.cpp | 624 case LoopHintAttr::Interleave: in push() 655 case LoopHintAttr::Interleave: in push() 683 case LoopHintAttr::Interleave: in push() 711 case LoopHintAttr::Interleave: in push() 745 case LoopHintAttr::Interleave: in push()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/modes/gcm/ |
D | GCMUtil.java | 4 import com.android.internal.org.bouncycastle.math.raw.Interleave; 314 Interleave.expand64To128Rev(x[0], t, 0); in square() 315 Interleave.expand64To128Rev(x[1], t, 2); in square()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/gcm/ |
D | GCMUtil.java | 4 import com.android.org.bouncycastle.math.raw.Interleave; 314 Interleave.expand64To128Rev(x[0], t, 0); in square() 315 Interleave.expand64To128Rev(x[1], t, 2); in square()
|
/external/webrtc/common_audio/resampler/ |
D | push_resampler.cc | 143 Interleave(channel_data_array_.data(), dst_length_mono, num_channels_, dst); in Resample()
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | schedule-regpressure-limit-clustering.ll | 3 ; Interleave loads and stores to fit into 9 VGPR limit.
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ParallelDynamicStitch.pbtxt | 3 summary: "Interleave the values from the `data` tensors into a single tensor."
|
D | api_def_DynamicStitch.pbtxt | 3 summary: "Interleave the values from the `data` tensors into a single tensor."
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64SIMDInstrOpt.cpp | 83 Interleave enumerator 290 case Interleave: in shouldExitEarly() 707 for (auto OptimizationKind : {VectorElem, Interleave}) { in runOnMachineFunction()
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64SIMDInstrOpt.cpp | 83 Interleave enumerator 291 case Interleave: in shouldExitEarly() 710 for (auto OptimizationKind : {VectorElem, Interleave}) { in runOnMachineFunction()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/ |
D | Interleave.java | 7 public class Interleave class
|