/third_party/libinput/udev/ |
D | test-libinput-fuzz-extract.c | 42 { .which = (MIN|MAX), in START_TEST() 45 { .which = (MIN|MAX), in START_TEST() 48 { .which = (MIN|MAX|RES), in START_TEST() 54 { .which = (MIN), in START_TEST() 60 { .which = (MIN|MAX|RES|FUZZ), in START_TEST() 63 { .which = (MIN|MAX|RES|FUZZ|FLAT), in START_TEST() 66 { .which = (MIN|RES|FUZZ|FLAT), in START_TEST() 96 if (t->which & MIN) in START_TEST()
|
/third_party/musl/src/misc/ |
D | setrlimit.c | 6 #define MIN(a, b) ((a)<(b) ? (a) : (b)) macro 21 k_rlim[0] = MIN(rlim->rlim_cur, MIN(-1UL, SYSCALL_RLIM_INFINITY)); in __setrlimit() 22 k_rlim[1] = MIN(rlim->rlim_max, MIN(-1UL, SYSCALL_RLIM_INFINITY)); in __setrlimit()
|
/third_party/gstreamer/gstplugins_good/gst/smpte/ |
D | barboxwipes.c | 586 x0 = MIN (impacts[1] * width, mask->width - 1); in gst_wipe_boxes_draw() 587 y0 = MIN (impacts[2] * height, mask->height - 1); in gst_wipe_boxes_draw() 588 x1 = MIN (impacts[4] * width, mask->width - 1); in gst_wipe_boxes_draw() 589 y1 = MIN (impacts[5] * height, mask->height - 1); in gst_wipe_boxes_draw() 590 x2 = MIN (impacts[7] * width, mask->width - 1); in gst_wipe_boxes_draw() 591 y2 = MIN (impacts[8] * height, mask->height - 1); in gst_wipe_boxes_draw() 618 x0 = MIN (impacts[0] * width, mask->width - 1); in gst_wipe_triangles_clock_draw() 619 y0 = MIN (impacts[1] * height, mask->height - 1); in gst_wipe_triangles_clock_draw() 620 x1 = MIN (impacts[3] * width, mask->width - 1); in gst_wipe_triangles_clock_draw() 621 y1 = MIN (impacts[4] * height, mask->height - 1); in gst_wipe_triangles_clock_draw() [all …]
|
/third_party/musl/src/thread/ |
D | pthread_setattr_default_np.c | 5 #define MIN(a,b) ((a)<(b) ? (a) : (b)) macro 17 unsigned stack = MIN(attrp->_a_stacksize, DEFAULT_STACK_MAX); in pthread_setattr_default_np() 18 unsigned guard = MIN(attrp->_a_guardsize, DEFAULT_GUARD_MAX); in pthread_setattr_default_np()
|
/third_party/gstreamer/gstplugins_bad/ext/rsvg/ |
D | gstrsvgdec.c | 118 b = (a > 0) ? MIN ((b * 255 + a / 2) / a, 255) : 0; \ 119 g = (a > 0) ? MIN ((g * 255 + a / 2) / a, 255) : 0; \ 120 r = (a > 0) ? MIN ((r * 255 + a / 2) / a, 255) : 0; \ 133 data[0] = (a > 0) ? MIN ((data[0] * 255 + a / 2) / a, 255) : 0; in gst_rsvg_decode_unpremultiply() 134 data[1] = (a > 0) ? MIN ((data[1] * 255 + a / 2) / a, 255) : 0; in gst_rsvg_decode_unpremultiply() 135 data[2] = (a > 0) ? MIN ((data[2] * 255 + a / 2) / a, 255) : 0; in gst_rsvg_decode_unpremultiply() 138 data[1] = (a > 0) ? MIN ((data[1] * 255 + a / 2) / a, 255) : 0; in gst_rsvg_decode_unpremultiply() 139 data[2] = (a > 0) ? MIN ((data[2] * 255 + a / 2) / a, 255) : 0; in gst_rsvg_decode_unpremultiply() 140 data[3] = (a > 0) ? MIN ((data[3] * 255 + a / 2) / a, 255) : 0; in gst_rsvg_decode_unpremultiply()
|
/third_party/qrcodegen/rust/examples/ |
D | qrcodegen-demo.rs | 145 …let qr = QrCode::encode_segments_advanced(&segs, QrCodeEcc::High, Version::MIN, Version::MAX, None… in do_mask_demo() 147 …let qr = QrCode::encode_segments_advanced(&segs, QrCodeEcc::High, Version::MIN, Version::MAX, Some… in do_mask_demo() 152 …let qr = QrCode::encode_segments_advanced(&segs, QrCodeEcc::Medium, Version::MIN, Version::MAX, So… in do_mask_demo() 154 …let qr = QrCode::encode_segments_advanced(&segs, QrCodeEcc::Medium, Version::MIN, Version::MAX, So… in do_mask_demo() 156 …let qr = QrCode::encode_segments_advanced(&segs, QrCodeEcc::Medium, Version::MIN, Version::MAX, So… in do_mask_demo() 158 …let qr = QrCode::encode_segments_advanced(&segs, QrCodeEcc::Medium, Version::MIN, Version::MAX, So… in do_mask_demo()
|
/third_party/python/Lib/test/ |
D | test_float.py | 1054 MIN = fromHex('0x1p-1022') # min normal variable in HexFloatTestCase 1069 self.identical(self.MIN, ldexp(1.0, -1022)) 1165 MIN = self.MIN; 1355 self.identical(fromHex('0x0.ffffffffffffd6p-1022'), MIN-3*TINY) 1356 self.identical(fromHex('0x0.ffffffffffffd8p-1022'), MIN-2*TINY) 1357 self.identical(fromHex('0x0.ffffffffffffdap-1022'), MIN-2*TINY) 1358 self.identical(fromHex('0x0.ffffffffffffdcp-1022'), MIN-2*TINY) 1359 self.identical(fromHex('0x0.ffffffffffffdep-1022'), MIN-2*TINY) 1360 self.identical(fromHex('0x0.ffffffffffffe0p-1022'), MIN-2*TINY) 1361 self.identical(fromHex('0x0.ffffffffffffe2p-1022'), MIN-2*TINY) [all …]
|
/third_party/musl/src/stdio/ |
D | vsnprintf.c | 12 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro 17 size_t k = MIN(c->n, f->wpos - f->wbase); in sn_write() 23 k = MIN(c->n, l); in sn_write()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
D | vsnprintf.c | 13 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro 18 size_t k = MIN(c->n, f->wpos - f->wbase); in sn_write() 24 k = MIN(c->n, l); in sn_write()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
D | vsnprintf.c | 13 #define MIN(a, b) ((a) < (b) ? (a) : (b)) macro 18 size_t k = MIN(c->n, f->wpos - f->wbase); in sn_write() 24 k = MIN(c->n, l); in sn_write()
|
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/ |
D | gstwavescope.c | 328 y = MIN (y, h1); in render_color_dots() 332 y = MIN (y, h1); in render_color_dots() 336 y = MIN (y, h1); in render_color_dots() 370 y2 = MIN (y, h1); in render_color_lines() 373 y3 = MIN (y, h1); in render_color_lines() 376 y4 = MIN (y, h1); in render_color_lines() 383 y = MIN (y, h1); in render_color_lines() 388 y = MIN (y, h1); in render_color_lines() 393 y = MIN (y, h1); in render_color_lines()
|
/third_party/ltp/testcases/kernel/syscalls/splice/ |
D | splice.h | 31 return MIN(pipe_max_unpriv, default_len_data); in get_max_limit() 36 return MIN(pipe_max_unpriv * getpagesize(), default_len_data); in get_max_limit()
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
D | target_env_test.cpp | 126 #define VK(MAJ, MIN) ((MAJ << 22) | (MIN << 12)) argument 127 #define SPV(MAJ, MIN) ((MAJ << 16) | (MIN << 8)) argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
D | target_env_test.cpp | 126 #define VK(MAJ, MIN) ((MAJ << 22) | (MIN << 12)) argument 127 #define SPV(MAJ, MIN) ((MAJ << 16) | (MIN << 8)) argument
|
/third_party/flutter/skia/third_party/externals/sdl/src/render/software/ |
D | SDL_rotate.h | 22 #ifndef MIN 23 #define MIN(a,b) (((a) < (b)) ? (a) : (b)) macro
|
/third_party/icu/icu4c/source/test/intltest/ |
D | mnkytst.cpp | 24 #ifndef MIN 25 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro 88 source.extract(MIN(s, slen), MAX(s, slen), subs); in TestCollationKey() 89 source.extract(MIN(t, tlen), MAX(t, tlen), subt); in TestCollationKey() 163 source.extract(MIN(s, slen), MAX(s, slen), subs); in TestCompare() 164 source.extract(MIN(t, tlen), MAX(t, tlen), subt); in TestCompare()
|
/third_party/ltp/include/ |
D | tst_minmax.h | 8 #ifndef MIN 9 # define MIN(a, b) ({ \ macro
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/ |
D | 1-6.c | 186 MIN, enumerator 192 {SCHED_FIFO, MIN}, 195 {SCHED_RR, MIN}, 203 case MIN: in get_prio()
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_texture_filter_minmax.txt | 68 filtered texel value by computing a component-wise minimum (MIN) or 96 MIN (reused from core) 108 MIN, MAX 163 * The texture reduction mode is MIN or MAX, and that reduction mode is 194 When TEXTURE_REDUCTION_MODE_ARB is MIN or MAX, the equations to produce a 217 values. If the reduction mode is MIN or MAX, reduce() computes a 239 selected texels and weights. When using reduction modes of MIN or MAX, a 247 If a texture access using a reduction mode of MIN or MAX is used with a 259 MIN and MAX is returned in <params>. 289 are added to the list of formats guaranteed to support MIN and MAX [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_texture_filter_minmax.txt | 58 filtered texel value by computing a component-wise minimum (MIN) or 86 MIN (reused from core) 98 MIN, MAX 153 * The texture reduction mode is MIN or MAX, and that reduction mode is 184 When TEXTURE_REDUCTION_MODE_ARB is MIN or MAX, the equations to produce a 207 values. If the reduction mode is MIN or MAX, reduce() computes a 229 selected texels and weights. When using reduction modes of MIN or MAX, a 237 If a texture access using a reduction mode of MIN or MAX is used with a 249 MIN and MAX is returned in <params>. 279 are added to the list of formats guaranteed to support MIN and MAX [all …]
|
/third_party/weston/shared/ |
D | helpers.h | 51 #ifndef MIN 52 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) macro
|
/third_party/lwip/src/core/distributed_net/ |
D | distributed_net_core.c | 47 (void)memcpy_s(&addr_in, sizeof(addr_in), addr, MIN(sizeof(addr_in), addr_len)); in distributed_net_connect() 62 (void)memcpy_s(&addr_in, sizeof(addr_in), addr, MIN(sizeof(addr_in), addr_len)); in distributed_net_connect() 115 (void)memcpy_s(&addr_in, sizeof(addr_in), addr, MIN(sizeof(addr_in), addr_len)); in distributed_net_sendto() 160 (void)memcpy_s(&addr_in, sizeof(addr_in), addr, MIN(sizeof(addr_in), addr_len)); in distributed_net_sendmsg() 236 (void)memcpy_s(from, *from_len, &addr_from, MIN(addr_from_len, *from_len)); in distributed_net_recvfrom()
|
/third_party/FreeBSD/sys/dev/usb/implementation/ |
D | _macro_ref.h | 53 #ifndef MIN 54 #define MIN(a,b) (a < b ? a : b) macro
|
/third_party/musl/include/sys/ |
D | param.h | 16 #undef MIN 18 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | param.h | 19 #undef MIN 21 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|