Home
last modified time | relevance | path

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

/external/adhd/cras/tools/
Dcreate_volume_curve.py9 def GenerateSimpleStep(name, max_volume, step_size): argument
12 print ' ; simple_step curve, max %d, step %d' % (max_volume, step_size)
14 print ' volume_step = %d' % step_size
56 step_size = int(raw_input(">"))
57 GenerateSimpleStep(jack_name, max_volume, step_size)
/external/libhevc/encoder/
Dsqrt_interp.c54 WORD32 index, answer, temp, delta, step_size; in sqrtFix_interpolate() local
67 step_size = sub32(sqrt_tab[index + 1], sqrt_tab[index]); in sqrtFix_interpolate()
68 step_size = mult32_shl_sat(step_size, delta); /* Q:Q_SQRT_TAB + 21 + 10 - 31 */ in sqrtFix_interpolate()
69 answer = add32(sqrt_tab[index], step_size); in sqrtFix_interpolate()
/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/swiftshader/third_party/llvm-7.0/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/u-boot/drivers/spi/
Dbcm63xx_hsspi.c219 size_t step_size = HSSPI_FIFO_SIZE; in bcm63xx_hsspi_xfer() local
237 step_size -= HSSPI_FIFO_OP_SIZE; in bcm63xx_hsspi_xfer()
254 size_t curr_step = min(step_size, data_bytes); in bcm63xx_hsspi_xfer()
/external/tensorflow/tensorflow/core/kernels/
Dquantization_utils_test.cc499 const float step_size = (max - min) / 255.0f; in TestAvoidBias() local
500 const float tolerance = step_size / 1000.0f; in TestAvoidBias()
502 float first_float = ceil(min / step_size) * step_size; in TestAvoidBias()
503 for (float f = first_float; f <= max; f += step_size) { in TestAvoidBias()
698 float step_size = in TestQuantizedTensorToFloat() local
701 roundf(-(input_range / 2.0) / step_size) * step_size; in TestQuantizedTensorToFloat()
Dtopk_op_gpu.h227 int step_size = 1) {
234 int heap_end_index = start_index + k * step_size;
240 index += step_size, slot++) {
249 for (int index = heap_end_index; index < length; index += 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.c166 const int step_size = (delta_max - delta_min >= 4) ? 4 : 1; in VP8StoreFilterStats() local
181 for (d = delta_min; d <= delta_max; d += step_size) { in VP8StoreFilterStats()
/external/v8/src/heap/
Dincremental-marking.h262 Observer(IncrementalMarking& incremental_marking, intptr_t step_size) in Observer() argument
263 : AllocationObserver(step_size), in Observer()
Dheap.h2502 explicit AllocationObserver(intptr_t step_size) in AllocationObserver() argument
2503 : step_size_(step_size), bytes_to_next_step_(step_size) { in AllocationObserver()
2504 DCHECK_LE(kPointerSize, step_size); in AllocationObserver()
2514 intptr_t step_size() const { return step_size_; } in step_size() function
Dincremental-marking.cc989 size_t step_size = Max(initial_old_generation_size_ / kTargetStepCount, in StepSizeToMakeProgress() local
994 return static_cast<size_t>(factor * step_size); in StepSizeToMakeProgress()
Dheap.cc126 IdleScavengeObserver(Heap& heap, intptr_t step_size) in IdleScavengeObserver() argument
127 : AllocationObserver(step_size), heap_(heap) {} in IdleScavengeObserver()
/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/include/speex/
Dspeex_jitter.h124 JitterBuffer *jitter_buffer_init(int step_size);
/external/u-boot/drivers/mtd/nand/
Dnand_base.c4161 int req_corr, step_size, strength, nsteps, ecc_bytes, ecc_bytes_total; in nand_match_ecc_req() local
4178 step_size = stepinfo->stepsize; in nand_match_ecc_req()
4188 if (step_size < req_step && strength < req_strength) in nand_match_ecc_req()
4191 if (mtd->writesize % step_size) in nand_match_ecc_req()
4194 nsteps = mtd->writesize / step_size; in nand_match_ecc_req()
4196 ecc_bytes = caps->calc_ecc_bytes(step_size, strength); in nand_match_ecc_req()
4211 best_step = step_size; in nand_match_ecc_req()
4243 int step_size, strength, nsteps, ecc_bytes, corr; in nand_maximize_ecc() local
4254 step_size = stepinfo->stepsize; in nand_maximize_ecc()
4257 if (chip->ecc.size && step_size != chip->ecc.size) in nand_maximize_ecc()
[all …]
Ddenali.h322 int denali_calc_ecc_bytes(int step_size, int strength);
Ddenali.c1103 int denali_calc_ecc_bytes(int step_size, int strength) in denali_calc_ecc_bytes() argument
1106 return DIV_ROUND_UP(strength * fls(step_size * 8), 16) * 2; in denali_calc_ecc_bytes()
/external/speex/libspeexdsp/
Djitter.c270 EXPORT JitterBuffer *jitter_buffer_init(int step_size) in jitter_buffer_init() argument
279 jitter->delay_step = step_size; in jitter_buffer_init()
280 jitter->concealment_size = step_size; in jitter_buffer_init()
/external/u-boot/include/linux/mtd/
Drawnand.h516 int (*calc_ecc_bytes)(int step_size, int strength);