Home
last modified time | relevance | path

Searched refs:step_size (Results 1 – 20 of 20) 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/llvm-project/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/rust/crates/criterion/src/
Dkde.rs32 let step_size = (end - start) / (npoints - 1) as f64; in sweep_and_estimate() localVariable
34 xs.push(start + (step_size * n as f64)); in sweep_and_estimate()
/external/tensorflow/tensorflow/python/keras/layers/preprocessing/
Ddiscretization.py72 step_size = int(n / num_bins)
73 partition_indices = np.arange(step_size, n, step_size, np.int64)
78 step_size * np.ones((np.prod(part.shape), 1))))
/external/vixl/test/aarch64/
Dtest-fuzz-aarch64.cc41 static void FuzzHelper(std::string mode, int step_size, int offset, int shift) { in FuzzHelper() argument
52 for (uint64_t i = offset << shift; i < (UINT64_C(1) << 32); i += step_size) { in FuzzHelper()
/external/libaom/libaom/av1/encoder/
Dintra_mode_search.c641 const int *const top_colors, int start_n, int end_n, int step_size, in perform_top_color_coarse_palette_search() argument
660 n += step_size; in perform_top_color_coarse_palette_search()
669 int start_n, int end_n, int step_size, uint16_t *color_cache, int n_cache, in perform_k_means_coarse_palette_search() argument
692 n += step_size; in perform_k_means_coarse_palette_search()
703 int start_n, int end_n, int step_size, uint16_t *color_cache, int n_cache, in perform_top_color_palette_search() argument
710 assert((step_size == -1) || (step_size == 1) || (step_size == 0) || in perform_top_color_palette_search()
711 (step_size == 2)); in perform_top_color_palette_search()
712 assert(IMPLIES(step_size == -1, start_n > end_n)); in perform_top_color_palette_search()
713 assert(IMPLIES(step_size == 1, start_n < end_n)); in perform_top_color_palette_search()
726 n += step_size; in perform_top_color_palette_search()
[all …]
Dtune_vmaf.c170 const double unsharp_amount_start, const double step_size, in find_best_frame_unsharp_amount_loop() argument
178 unsharp_amount += step_size; in find_best_frame_unsharp_amount_loop()
186 approx_vmaf > best_vmaf ? unsharp_amount : unsharp_amount - step_size; in find_best_frame_unsharp_amount_loop()
194 const double step_size, in find_best_frame_unsharp_amount() argument
209 if (unsharp_amount_start <= step_size) { in find_best_frame_unsharp_amount()
212 step_size, max_loop_count, max_filter_amount); in find_best_frame_unsharp_amount()
214 double a0 = unsharp_amount_start - step_size, a1 = unsharp_amount_start; in find_best_frame_unsharp_amount()
225 -step_size, max_loop_count, max_filter_amount); in find_best_frame_unsharp_amount()
229 step_size, max_loop_count, max_filter_amount); in find_best_frame_unsharp_amount()
Dmcomp.c2169 static INLINE MV get_best_diag_step(int step_size, unsigned int left_cost, in get_best_diag_step() argument
2173 const MV diag_step = { up_cost <= down_cost ? -step_size : step_size, in get_best_diag_step()
2174 left_cost <= right_cost ? -step_size : step_size }; in get_best_diag_step()
/external/tensorflow/tensorflow/lite/micro/kernels/vexriscv/doc/
DDepthwiseConv2D_int8.md169 for m < depth_multiplier; step_size = 1
177 for in_ch < in_channel; step_size = 1
183 for in_ch < in_channel; step_size = 1
198 for m < depth_multiplier; step_size = 1
202 for ch < input_ch; step_size = K
207 for ch_offset < channel_step; step_size = 1
213 for ch_offset < channel_step; step_size = 1
/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/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 = std::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/speex/include/speex/
Dspeex_jitter.h124 JitterBuffer *jitter_buffer_init(int step_size);
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Ddecompose_resource_ops.cc168 Value step_size = rewriter.create<ConstOp>(loc, GetScalarOfType(u64, 256)); in matchAndRewrite() local
170 rewriter.create<MulOp>(loc, u64_scalar, step_size, rng_op.delta()); in matchAndRewrite()
/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/libabigail/tests/data/test-annotate/
Dtest14-pr18893.so.abi4338 <!-- REAL Quiltspec::step_size -->
4339 …<var-decl name='step_size' type-id='type-id-1' visibility='default' filepath='libnurbs/internals/q…
7627 <!-- REAL Quiltspec::step_size -->
7628 …<var-decl name='step_size' type-id='type-id-1' visibility='default' filepath='libnurbs/internals/q…
/external/libabigail/tests/data/test-read-dwarf/
Dtest14-pr18893.so.abi2849 …<var-decl name='step_size' type-id='type-id-1' visibility='default' filepath='libnurbs/internals/q…
5050 …<var-decl name='step_size' type-id='type-id-1' visibility='default' filepath='libnurbs/internals/q…