Home
last modified time | relevance | path

Searched refs:imin (Results 1 – 25 of 55) sorted by relevance

123

/third_party/ffmpeg/libavfilter/
Dvf_colorlevels.c106 int imin[4]; member
126 const int imin = td->imin[comp]; in colorlevels_slice_8() local
135 dst[x + offset] = av_clip_uint8((src[x + offset] - imin) * coeff + omin); in colorlevels_slice_8()
148 const int imin = td->imin[comp]; in colorlevels_slice_16() local
157 dst[x + offset] = av_clip_uint16((src[x + offset] - imin) * coeff + omin); in colorlevels_slice_16()
215 int imin = lrint(r->in_min * UINT8_MAX); in filter_frame() local
221 if (imin < 0) { in filter_frame()
222 imin = UINT8_MAX; in filter_frame()
227 imin = FFMIN(imin, src[x + offset]); in filter_frame()
243 coeff = (omax - omin) / (double)(imax - imin); in filter_frame()
[all …]
/third_party/boost/boost/math/statistics/
Druns_test.hpp38 decltype(v.size()) imin = 0; in runs_above_and_below_threshold() local
41 while (imin < v.size() && v[imin] == threshold) { in runs_above_and_below_threshold()
42 ++imin; in runs_above_and_below_threshold()
46 if (imin == v.size()) { in runs_above_and_below_threshold()
50 bool run_up = (v[imin] > threshold); in runs_above_and_below_threshold()
57 for (decltype(v.size()) i = imin + 1; i < v.size(); ++i) { in runs_above_and_below_threshold()
/third_party/ltp/testcases/misc/math/fptests/
Dfptest02.c202 int imin = 0; in nextevent() local
208 imin = i; in nextevent()
213 if (imin) { in nextevent()
214 rtrevent.type = eventtab[imin].type; in nextevent()
215 rtrevent.proc = eventtab[imin].proc; in nextevent()
216 rtrevent.time = eventtab[imin].time; in nextevent()
217 eventtab[imin].type = NULLEVENT; in nextevent()
Dfptest01.c222 int imin = 0; in nextevent() local
227 imin = i; in nextevent()
232 if (imin) { in nextevent()
233 rtrevent.type = eventtab[imin].type; in nextevent()
234 rtrevent.proc = eventtab[imin].proc; in nextevent()
235 rtrevent.time = eventtab[imin].time; in nextevent()
236 eventtab[imin].type = NULLEVENT; in nextevent()
/third_party/boost/boost/geometry/algorithms/detail/distance/
Dsegment_to_box.hpp162 unsigned int imin = 0; in apply() local
165 if (cd[i] < cd[imin]) in apply()
167 imin = i; in apply()
173 return cd[imin]; in apply()
176 if (imin < 4) in apply()
178 return strategy.get_distance_ps_strategy().apply(box_points[imin], p[0], p[1]); in apply()
182 unsigned int bimin = imin - 4; in apply()
266 unsigned int imin = 0; in apply() local
269 if (cd[i] < cd[imin]) in apply()
271 imin = i; in apply()
[all …]
Dsegment_to_segment.hpp99 std::size_t imin = std::distance(boost::addressof(d[0]), in apply() local
104 return d[imin]; in apply()
107 switch (imin) in apply()
/third_party/python/Lib/turtledemo/
Dsorting_animate.py96 imin = j
98 if shelf[i].size < shelf[imin].size:
99 imin = i
100 if imin != j:
101 shelf.insert(j, shelf.pop(imin))
/third_party/alsa-lib/src/pcm/
Dpcm_extplug.c113 int imin, imax; in snd_interval_list() local
118 for (imin = 0; imin < num_list; imin++) { in snd_interval_list()
119 if (ival->min == list[imin] && ! ival->openmin) in snd_interval_list()
121 if (ival->min <= list[imin]) { in snd_interval_list()
122 ival->min = list[imin]; in snd_interval_list()
128 if (imin >= num_list) in snd_interval_list()
130 for (imax = num_list - 1; imax >= imin; imax--) { in snd_interval_list()
140 if (imax < imin) in snd_interval_list()
/third_party/glslang/Test/
D300BuiltIns.frag3 int imax, imin;
33 ivec4 iv13 = min(iv4a, imin);
41 ivec4 iv17 = clamp(iv4a, imin, imax);
/third_party/alsa-lib/include/
Dcontrol_external.h177 long *imin, long *imax, long *istep);
182 int64_t *imin, int64_t *imax, int64_t *istep);
/third_party/pixman/pixman/dither/
Dmake-blue-noise.c32 imin (int x, int y) in imin() function
356 dx = imin (abs (qx - px), width - abs (qx - px)); in compute_cluster_sizes()
361 dy = imin (abs (qy - py), height - abs (qy - py)); in compute_cluster_sizes()
405 dy = imin (abs (py - y), height - abs (py - y)); in swap_pixel()
410 dx = imin (abs (px - x), width - abs (px - x)); in swap_pixel()
/third_party/alsa-utils/alsactl/
Dstate.c832 long *imin, long *imax, long *istep) in get_comment_range() argument
841 err = sscanf(s, "%li - %li (step %li)", imin, imax, istep); in get_comment_range()
844 err = sscanf(s, "%li - %li", imin, imax); in get_comment_range()
902 long imin, imax, istep; in add_user_control() local
909 imin = imax = istep = 0; in add_user_control()
928 err = get_comment_range(n, ctype, &imin, &imax, &istep); in add_user_control()
966 if (imin > imax || istep > imax - imin) { in add_user_control()
970 err = snd_ctl_elem_add_integer(handle, id, count, imin, imax, istep); in add_user_control()
/third_party/boost/libs/convert/test/
Dstrtol_converter.cpp103 int const imin = (std::numeric_limits<int>::min)(); in test_int_to_str() local
110 std::string const imin_str = boost::lexical_cast<std::string>(imin); in test_int_to_str()
117 BOOST_TEST( imin_str == convert<std::string>( imin).value()); in test_int_to_str()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_quad_depth_test.c786 unsigned imin, imax; in depth_bounds_test_quads() local
789 imin = ((unsigned) (min * 65535.0)) & 0xffff; in depth_bounds_test_quads()
792 imin = (unsigned) (min * 4294967295.0); in depth_bounds_test_quads()
796 imin = ((unsigned) (min * 16777215.0)) & 0xffffff; in depth_bounds_test_quads()
805 if (iz >= imin && iz <= imax) in depth_bounds_test_quads()
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_uniform_atomics.c66 OP(imin, imin) in parse_atomic_op()
/third_party/glslang/Test/baseResults/
D300BuiltIns.frag.out42 0:33 'imin' ( global mediump int)
91 0:41 'imin' ( global mediump int)
192 0:? 'imin' ( global mediump int)
249 0:33 'imin' ( global mediump int)
298 0:41 'imin' ( global mediump int)
399 0:? 'imin' ( global mediump int)
/third_party/optimized-routines/math/test/rtest/
Ddotest.c1389 uint32 imin, imax; in pow_cases() local
1391 imin = 0x40000 / (0x3FE - e), imax = 0x43200 / (0x3FE - e); in pow_cases()
1393 imin = 0x43200 / (e - 0x3FF), imax = 0x40000 / (e - 0x3FF); in pow_cases()
1395 dmin = doubletop(imin, -8); in pow_cases()
1479 uint32 imin, imax; in pow_cases_float() local
1481 imin = 0x8000 / (0x7e - e), imax = 0x9500 / (0x7e - e); in pow_cases_float()
1483 imin = 0x9500 / (e - 0x7f), imax = 0x8000 / (e - 0x7f); in pow_cases_float()
1485 dmin = floatval(imin, -8); in pow_cases_float()
/third_party/python/Modules/
D_testbuffer.c933 Py_ssize_t imin, imax; in verify_structure() local
952 imin = imax = 0; in verify_structure()
955 imin += (shape[n]-1) * strides[n]; in verify_structure()
959 if (imin + offset < 0 || imax + offset + itemsize > len) in verify_structure()
1034 Py_ssize_t imin, suboffset0; in init_suboffsets() local
1064 imin = suboffset0 = 0; in init_suboffsets()
1070 imin += x; in init_suboffsets()
1076 start = addsize + ndbuf->offset + imin; in init_suboffsets()
/third_party/ltp/lib/
Drandom_range.c728 int imin = 0, imult = 1, itmin, itmax = 0; local
858 lret = random_range(imin, imax, imult, NULL);
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/infer/
Dcommon_infer.h201 int imin(int a, int b);
Dstrided_slice_infer.c170 … begins[i] = imax(imin(begin_data[axis], input_tensor->shape_[i] - 1), -input_tensor->shape_[i]); in HandleAxesInputExist()
173 ends[i] = imax(imin(end_data[axis], input_tensor->shape_[i]), -input_tensor->shape_[i] - 1); in HandleAxesInputExist()
/third_party/mesa3d/src/intel/tools/tests/gen9/
Dsends.asm24 …dp data 1 MsgDesc: ( DC untyped atomic op, Surface = 0, SIMD8, imin) mlen 1 ex_mlen 1 rlen 0 { ali…
44 …dp data 1 MsgDesc: ( DC untyped atomic op, Surface = 254, SIMD16, imin) mlen 2 ex_mlen 2 rlen 0 { …
100 …dp data 1 MsgDesc: ( DC untyped atomic op, Surface = 2, SIMD8, imin) mlen 1 ex_mlen 1 rlen 1 { ali…
104 …dp data 1 MsgDesc: ( DC untyped atomic op, Surface = 2, SIMD16, imin) mlen 2 ex_mlen 2 rlen 2 { al…
176 …dp data 1 MsgDesc: ( DC untyped atomic op, Surface = 254, SIMD8, imin) mlen 1 ex_mlen 1 rlen 1 { a…
/third_party/skia/third_party/externals/icu/source/data/curr/
Dga.txt1104 "Dínear Éimin",
1108 "Rial Éimin",
3100 few{"Dínear Éimin"}
3101 many{"Dínear Éimin"}
3102 one{"Dínear Éimin"}
3103 other{"Dínear Éimin"}
3104 two{"Dínear Éimin"}
3107 few{"rial Éimin"}
3108 many{"rial Éimin"}
3109 one{"rial Éimin"}
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/curr/
Dga.txt1103 "Dínear Éimin",
1107 "Rial Éimin",
3100 few{"Dínear Éimin"}
3101 many{"Dínear Éimin"}
3102 one{"Dínear Éimin"}
3103 other{"Dínear Éimin"}
3104 two{"Dínear Éimin"}
3107 few{"rial Éimin"}
3108 many{"rial Éimin"}
3109 one{"rial Éimin"}
[all …]
/third_party/icu/icu4c/source/data/curr/
Dga.txt1104 "Dínear Éimin",
1108 "Rial Éimin",
3100 few{"Dínear Éimin"}
3101 many{"Dínear Éimin"}
3102 one{"Dínear Éimin"}
3103 other{"Dínear Éimin"}
3104 two{"Dínear Éimin"}
3107 few{"rial Éimin"}
3108 many{"rial Éimin"}
3109 one{"rial Éimin"}
[all …]

123