/external/adhd/cras/tools/ |
D | create_volume_curve.py | 9 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/ |
D | sqrt_interp.c | 54 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/ |
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/swiftshader/third_party/llvm-7.0/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/u-boot/drivers/spi/ |
D | bcm63xx_hsspi.c | 219 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/ |
D | quantization_utils_test.cc | 499 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()
|
D | topk_op_gpu.h | 227 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/ |
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 | 166 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/ |
D | incremental-marking.h | 262 Observer(IncrementalMarking& incremental_marking, intptr_t step_size) in Observer() argument 263 : AllocationObserver(step_size), in Observer()
|
D | heap.h | 2502 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
|
D | incremental-marking.cc | 989 size_t step_size = Max(initial_old_generation_size_ / kTargetStepCount, in StepSizeToMakeProgress() local 994 return static_cast<size_t>(factor * step_size); in StepSizeToMakeProgress()
|
D | heap.cc | 126 IdleScavengeObserver(Heap& heap, intptr_t step_size) in IdleScavengeObserver() argument 127 : AllocationObserver(step_size), heap_(heap) {} in IdleScavengeObserver()
|
/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/include/speex/ |
D | speex_jitter.h | 124 JitterBuffer *jitter_buffer_init(int step_size);
|
/external/u-boot/drivers/mtd/nand/ |
D | nand_base.c | 4161 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 …]
|
D | denali.h | 322 int denali_calc_ecc_bytes(int step_size, int strength);
|
D | denali.c | 1103 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/ |
D | jitter.c | 270 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/ |
D | rawnand.h | 516 int (*calc_ecc_bytes)(int step_size, int strength);
|