Home
last modified time | relevance | path

Searched refs:curr_val (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dintegral_image.h81 uint32_t curr_val = (*this)[y][x]; in VerifyData() local
84 curr_val -= (*this)[y][x - 1]; in VerifyData()
88 curr_val -= (*this)[y - 1][x]; in VerifyData()
92 curr_val += (*this)[y - 1][x - 1]; in VerifyData()
95 if (curr_val != image_base[y][x]) { in VerifyData()
96 LOGE("Mismatch! %d vs %d", curr_val, image_base[y][x]); in VerifyData()
100 if (GetRegionSum(x, y, x, y) != curr_val) { in VerifyData()
Dimage_utils.h266 const float curr_val = *curr_data; in NormalizeImage() local
267 *curr_data++ = curr_val < 0 ? 0 : curr_val - corrected_mean; in NormalizeImage()
/external/python/apitools/
Drun_pylint.py84 curr_val = curr_section.get(opt)
85 if curr_val is None:
87 curr_section[opt] = '%s\n%s' % (curr_val, opt_val)
/external/libxaac/decoder/
Dixheaacd_env_dec.c92 VOID ixheaacd_map_res_energy(WORD16 curr_val, WORD16 *prev_data, in ixheaacd_map_res_energy() argument
98 prev_data[index] = curr_val; in ixheaacd_map_res_energy()
102 prev_data[index_2] = curr_val; in ixheaacd_map_res_energy()
103 prev_data[index_2 + 1] = curr_val; in ixheaacd_map_res_energy()
111 prev_data[index_3] = curr_val; in ixheaacd_map_res_energy()
112 prev_data[index_3 + 1] = curr_val; in ixheaacd_map_res_energy()
113 prev_data[index_3 + 2] = curr_val; in ixheaacd_map_res_energy()
117 prev_data[index_2] = curr_val; in ixheaacd_map_res_energy()
118 prev_data[index_2 + 1] = curr_val; in ixheaacd_map_res_energy()
122 prev_data[index] = curr_val; in ixheaacd_map_res_energy()
/external/webrtc/webrtc/modules/audio_processing/vad/
Dvad_audio_proc.cc158 float curr_val, in QuadraticInterpolation() argument
164 curr_val = 1.0f / curr_val; in QuadraticInterpolation()
167 -(next_val - prev_val) * 0.5f / (next_val + prev_val - 2.f * curr_val); in QuadraticInterpolation()
/external/u-boot/arch/arm/mach-socfpga/include/mach/
Dtimer.h11 u32 curr_val; member
/external/u-boot/arch/arm/mach-socfpga/
Dtimer.c20 writel(TIMER_LOAD_VAL, &timer_base->curr_val); in timer_init()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator_typed_visitor.h1601 auto curr_val = arg_literal.Get<NativeT>(multi_index); in MapImpl()
1602 auto curr_val_literal = LiteralUtil::CreateR0<NativeT>(curr_val); in MapImpl()
1914 auto curr_val = operand_literal.Get<ReturnT>(operand_index); in HandleSelectAndScatter()
1916 selected_val = curr_val; in HandleSelectAndScatter()
1919 curr_val_literal.Set({}, curr_val); in HandleSelectAndScatter()
1928 selected_val = curr_val; in HandleSelectAndScatter()
2011 auto curr_val = operand_literal.Get<ReturnT>(operand_index); in HandleReduceWindow()
2015 LiteralUtil::CreateR0<ReturnT>(curr_val); in HandleReduceWindow()