Searched refs:step_size (Results 1 – 11 of 11) sorted by relevance
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorExecutor.h | 208 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/ |
D | ldtoc-inv.ll | 8 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/ |
D | sampling-heap-profiler.h | 161 SamplingAllocationObserver(Heap* heap, intptr_t step_size, uint64_t rate, in SamplingAllocationObserver() argument 164 : AllocationObserver(step_size), in SamplingAllocationObserver()
|
/external/webp/src/enc/ |
D | filter_enc.c | 157 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/ |
D | incremental-marking.h | 227 Observer(IncrementalMarking& incremental_marking, intptr_t step_size) in Observer() argument 228 : AllocationObserver(step_size), in Observer()
|
D | heap.h | 2631 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
|
D | incremental-marking.cc | 1087 size_t step_size = Max(initial_old_generation_size_ / kTargetStepCount, in StepSizeToMakeProgress() local 1092 return static_cast<size_t>(factor * step_size); in StepSizeToMakeProgress()
|
D | heap.cc | 63 IdleScavengeObserver(Heap& heap, intptr_t step_size) in IdleScavengeObserver() argument 64 : AllocationObserver(step_size), heap_(heap) {} in IdleScavengeObserver()
|
/external/speex/include/speex/ |
D | speex_jitter.h | 124 JitterBuffer *jitter_buffer_init(int step_size);
|
/external/webrtc/talk/app/webrtc/test/ |
D | fakeaudiocapturemodule.h | 138 int32_t SpeakerVolumeStepSize(uint16_t* step_size) const override; 146 int32_t MicrophoneVolumeStepSize(uint16_t* step_size) const override;
|
/external/speex/libspeex/ |
D | jitter.c | 272 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()
|