Home
last modified time | relevance | path

Searched refs:tmp_input (Results 1 – 6 of 6) sorted by relevance

/external/libva-utils/encode/
Dvp9enc.c1425 int c, long_index, tmp_input; in main() local
1442 tmp_input = atoi(optarg); in main()
1443 if (tmp_input > 3 || tmp_input < 0) in main()
1444 tmp_input = 0; in main()
1445 rc_mode = rc_default_mode[tmp_input]; in main()
1448 tmp_input = atoi(optarg); in main()
1449 if (tmp_input < 0 || tmp_input > 255) in main()
1450 tmp_input = 60; in main()
1451 qp_value = tmp_input; in main()
1454 tmp_input = atoi(optarg); in main()
[all …]
Dvp8enc.c1011 int c, long_index, tmp_input; in parse_options() local
1020 tmp_input = atoi(optarg); in parse_options()
1021 parameter_check_positive("-f", tmp_input, 1); in parse_options()
1022 settings.frame_rate = tmp_input; in parse_options()
1025 tmp_input = atoi(optarg); in parse_options()
1026 parameter_check("--rcmode", tmp_input, 0, 2); in parse_options()
1027 settings.rc_mode = default_rc_modes[tmp_input]; in parse_options()
1030 tmp_input = atoi(optarg); in parse_options()
1031 parameter_check("--qp", tmp_input, 0, 255); in parse_options()
1032 settings.quantization_parameter = tmp_input; in parse_options()
[all …]
/external/ComputeLibrary/src/runtime/CL/functions/
DCLReduceMean.cpp130 ICLTensor *tmp_input = input; in configure() local
141 tmp_input = &_input_no_quant; in configure()
146 const int input_dims = tmp_input->info()->num_dimensions(); in configure()
153 …TensorShape out_shape = i == 0 ? tmp_input->info()->tensor_shape() : (&_reduced_outs[i - 1])->info… in configure()
155 auto in = (i == 0) ? tmp_input : (&_reduced_outs[i - 1]); in configure()
163 …locator()->init(TensorInfo(out_shape, tmp_input->info()->num_channels(), tmp_input->info()->data_t… in configure()
178 TensorShape out_shape = tmp_input->info()->tensor_shape(); in configure()
187 … auto_init_if_empty(*tmp_output->info(), tmp_input->info()->clone()->set_tensor_shape(out_shape)); in configure()
/external/ComputeLibrary/src/cpu/operators/
DCpuSoftmax.cpp77 const ITensorInfo *tmp_input = (_needs_permute ? &_input_permuted : src); in configure() local
80 TensorShape max_sum_shape = tmp_input->tensor_shape(); in configure()
82 const TensorInfo input_info = tmp_input->clone()->reset_padding().set_is_resizable(true); in configure()
83 … tmp_data_type = is_data_type_quantized_asymmetric(tmp_input->data_type()) ? DataType::F32 : tmp_i… in configure()
85 TensorInfo max_info(tmp_input->clone()->set_tensor_shape(max_sum_shape)); in configure()
93 mk->configure(tmp_input, &_max); in configure()
100 sm->configure(tmp_input, &_max, &_output_permuted, beta, &_tmp); in configure()
108 sm->configure(tmp_input, &_max, dst, beta, &_tmp); in configure()
/external/ComputeLibrary/src/runtime/NEON/functions/
DNEReduceMean.cpp118 ITensor *tmp_input = input; in configure() local
122 const int input_dims = tmp_input->info()->num_dimensions(); in configure()
129 …TensorShape out_shape = i == 0 ? tmp_input->info()->tensor_shape() : (&_reduced_outs[i - 1])->info… in configure()
131 auto in = (i == 0) ? tmp_input : (&_reduced_outs[i - 1]); in configure()
153 TensorShape out_shape = tmp_input->info()->tensor_shape(); in configure()
161 … auto_init_if_empty(*tmp_output->info(), tmp_input->info()->clone()->set_tensor_shape(out_shape)); in configure()
/external/zstd/tests/
DplayTests.sh1040 cp "$TESTDIR/dict-files/zero-weight-dict" tmp_input
1041 zstd -D "$TESTDIR/dict-files/zero-weight-dict" tmp_input
1042 zstd -D "$TESTDIR/dict-files/zero-weight-dict" -d tmp_input.zst -o tmp_decomp
1043 $DIFF tmp_decomp tmp_input
1049 echo "0000000000000000000000000" > tmp_input
1050 zstd -D "$TESTDIR/dict-files/zero-weight-dict" tmp_input
1051 zstd -D "$TESTDIR/dict-files/zero-weight-dict" -d tmp_input.zst -o tmp_decomp
1052 $DIFF tmp_decomp tmp_input