Home
last modified time | relevance | path

Searched refs:cur_val (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/third_party/externals/freetype/src/autofit/
Dafangles.c216 FT_Pos cur_val; in af_sort_and_quantize_widths() local
239 cur_val = table[cur_idx].org; in af_sort_and_quantize_widths()
247 if ( table[i].org - cur_val > threshold || in af_sort_and_quantize_widths()
253 if ( table[i].org - cur_val <= threshold && in af_sort_and_quantize_widths()
267 cur_val = table[cur_idx].org; in af_sort_and_quantize_widths()
/third_party/freetype/src/autofit/
Dafangles.c216 FT_Pos cur_val; in af_sort_and_quantize_widths() local
239 cur_val = table[cur_idx].org; in af_sort_and_quantize_widths()
247 if ( table[i].org - cur_val > threshold || in af_sort_and_quantize_widths()
253 if ( table[i].org - cur_val <= threshold && in af_sort_and_quantize_widths()
267 cur_val = table[cur_idx].org; in af_sort_and_quantize_widths()
/third_party/ltp/testcases/lib/
Dtst_security.sh146 local cur_val new_val
150 cur_val=$(cat $dir/checkreqprot)
151 [ $cur_val = 1 ] && new_val=0 || new_val=1
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dreverse_sequence_impl.cu47 int cur_val = 1; in ComputeCumShape() local
50 input_shape_cum_ptr[i] = cur_val; in ComputeCumShape()
51 cur_val = cur_val * input_shape_ptr[i]; in ComputeCumShape()
/third_party/NuttX/drivers/usbdev/gadget/
Dhicamera_control.c276 const uint16_t cur_val = 30; in histream_pu_get_brightness() local
278 PRINT_INFO("get brightness val = %u\n", cur_val); in histream_pu_get_brightness()
280 return cur_val; in histream_pu_get_brightness()
/third_party/gstreamer/gst_libav/ext/libav/
Dgstavcfg.c117 gint cur_val; in register_enum() local
140 if (g_array_index (values, GEnumValue, i).value == cur_val) { in register_enum()
143 cur_val = g_array_index (values, GEnumValue, i).value; in register_enum()
147 cur_val = g_array_index (values, GEnumValue, i).value; in register_enum()
/third_party/ffmpeg/libavcodec/
Dg723_1enc.c253 int max, shift, cur_val, prev_val, count, p; in lpc2lsp() local
301 cur_val = av_clipl_int32(temp << 1); in lpc2lsp()
304 if ((cur_val ^ prev_val) < 0) { in lpc2lsp()
305 int abs_cur = FFABS(cur_val); in lpc2lsp()
325 cur_val = av_clipl_int32(temp << 1); in lpc2lsp()
327 prev_val = cur_val; in lpc2lsp()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_cc_functions.c1707 int cur_val, i, indx, incr; in sctp_hs_cwnd_increase() local
1710 cur_val = net->cwnd >> 10; in sctp_hs_cwnd_increase()
1713 if (cur_val < sctp_cwnd_adjust[0].cwnd) { in sctp_hs_cwnd_increase()
1722 if (cur_val < sctp_cwnd_adjust[i].cwnd) { in sctp_hs_cwnd_increase()
1740 int cur_val, i, indx; in sctp_hs_cwnd_decrease() local
1743 cur_val = net->cwnd >> 10; in sctp_hs_cwnd_decrease()
1744 if (cur_val < sctp_cwnd_adjust[0].cwnd) { in sctp_hs_cwnd_decrease()
1758 cur_val = net->cwnd >> 10; in sctp_hs_cwnd_decrease()
1760 if (cur_val < sctp_cwnd_adjust[0].cwnd) { in sctp_hs_cwnd_decrease()
1765 if (cur_val > sctp_cwnd_adjust[i - 1].cwnd) { in sctp_hs_cwnd_decrease()
/third_party/python/Parser/
Dasdl.py355 cur_val = None if self.cur_token is None else self.cur_token.value
360 return cur_val
/third_party/skia/third_party/externals/freetype/src/autofit/
Dafhints.c65 FT_Pos cur_val; in af_sort_and_quantize_widths() local
88 cur_val = table[cur_idx].org; in af_sort_and_quantize_widths()
96 if ( table[i].org - cur_val > threshold || in af_sort_and_quantize_widths()
102 if ( table[i].org - cur_val <= threshold && in af_sort_and_quantize_widths()
116 cur_val = table[cur_idx].org; in af_sort_and_quantize_widths()
/third_party/boost/boost/move/algo/detail/
Dadaptive_sort_merge.hpp288 const value_type &cur_val = first[szt_i*l_block]; in find_next_block() local
292 bool const less_than_minimum = comp(cur_val, min_val) || in find_next_block()
293 (!comp(min_val, cur_val) && key_comp(cur_key, min_key)); in find_next_block()
/third_party/mindspore/mindspore/ccsrc/backend/session/
Dascend_session.cc235 auto *cur_val = static_cast<int32_t *>(cur_loop_tensor->data_c()); in LoadCtrlInputTensor() local
236 MS_EXCEPTION_IF_NULL(cur_val); in LoadCtrlInputTensor()
237 *cur_val = 0; in LoadCtrlInputTensor()