Home
last modified time | relevance | path

Searched refs:step_size (Results 1 – 11 of 11) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorExecutor.h208 void run(Evaluator& eval, Index first, Index last, Index step_size) {
209 for (Index i = first; i < last; i += step_size) {
218 void run(Evaluator& eval, Index first, Index last, Index step_size) {
221 const Index vectorized_step_size = step_size * PacketSize;
228 for (Index i = vectorized_size + first; i < last; i += step_size) {
240 const Index step_size = blockDim.x * gridDim.x;
243 EigenMetaKernelEval<Evaluator, Index, vectorizable>::run(eval, first_index, size, step_size);
/external/llvm/test/CodeGen/PowerPC/
Dldtoc-inv.ll8 define void @test(i32* nocapture %out, i32 zeroext %step_size) #0 {
10 %shl = shl i32 %step_size, 2
23 %shl1 = shl i32 %0, %step_size
/external/v8/src/profiler/
Dsampling-heap-profiler.h161 SamplingAllocationObserver(Heap* heap, intptr_t step_size, uint64_t rate, in SamplingAllocationObserver() argument
164 : AllocationObserver(step_size), in SamplingAllocationObserver()
/external/webp/src/enc/
Dfilter_enc.c157 const int step_size = (delta_max - delta_min >= 4) ? 4 : 1; in VP8StoreFilterStats() local
172 for (d = delta_min; d <= delta_max; d += step_size) { in VP8StoreFilterStats()
/external/v8/src/heap/
Dincremental-marking.h227 Observer(IncrementalMarking& incremental_marking, intptr_t step_size) in Observer() argument
228 : AllocationObserver(step_size), in Observer()
Dheap.h2631 explicit AllocationObserver(intptr_t step_size) in AllocationObserver() argument
2632 : step_size_(step_size), bytes_to_next_step_(step_size) { in AllocationObserver()
2633 DCHECK(step_size >= kPointerSize); in AllocationObserver()
2651 intptr_t step_size() const { return step_size_; } in step_size() function
Dincremental-marking.cc1087 size_t step_size = Max(initial_old_generation_size_ / kTargetStepCount, in StepSizeToMakeProgress() local
1092 return static_cast<size_t>(factor * step_size); in StepSizeToMakeProgress()
Dheap.cc63 IdleScavengeObserver(Heap& heap, intptr_t step_size) in IdleScavengeObserver() argument
64 : AllocationObserver(step_size), heap_(heap) {} in IdleScavengeObserver()
/external/speex/include/speex/
Dspeex_jitter.h124 JitterBuffer *jitter_buffer_init(int step_size);
/external/webrtc/talk/app/webrtc/test/
Dfakeaudiocapturemodule.h138 int32_t SpeakerVolumeStepSize(uint16_t* step_size) const override;
146 int32_t MicrophoneVolumeStepSize(uint16_t* step_size) const override;
/external/speex/libspeex/
Djitter.c272 EXPORT JitterBuffer *jitter_buffer_init(int step_size) in jitter_buffer_init() argument
281 jitter->delay_step = step_size; in jitter_buffer_init()
282 jitter->concealment_size = step_size; in jitter_buffer_init()