/third_party/typescript/tests/baselines/reference/ |
D | maxConstraints.types | 12 var max2: Comparer = (x, y) => { return (x.compareTo(y) > 0) ? x : y }; 13 >max2 : Comparer 29 var maxResult = max2(1, 2); 31 >max2(1, 2) : Comparable<1 | 2> 32 >max2 : Comparer
|
D | maxConstraints.js | 8 var max2: Comparer = (x, y) => { return (x.compareTo(y) > 0) ? x : y }; function 9 var maxResult = max2(1, 2); 12 var max2 = function (x, y) { return (x.compareTo(y) > 0) ? x : y; }; 13 var maxResult = max2(1, 2);
|
D | maxConstraints.symbols | 24 var max2: Comparer = (x, y) => { return (x.compareTo(y) > 0) ? x : y }; 25 >max2 : Symbol(max2, Decl(maxConstraints.ts, 6, 3)) 36 var maxResult = max2(1, 2); 38 >max2 : Symbol(max2, Decl(maxConstraints.ts, 6, 3))
|
D | maxConstraints.errors.txt | 11 var max2: Comparer = (x, y) => { return (x.compareTo(y) > 0) ? x : y }; 12 var maxResult = max2(1, 2);
|
/third_party/boost/boost/geometry/algorithms/detail/overlay/ |
D | intersection_box_box.hpp | 55 ct max2 = get<max_corner, Dimension>(box2); in apply() local 58 if (max2 < min1) in apply() 65 set<max_corner, Dimension>(box_out, max1 > max2 ? max2 : max1); in apply()
|
/third_party/boost/boost/geometry/algorithms/detail/overlaps/ |
D | implementation.hpp | 61 coordinate_type2 const& max2 = get<max_corner, Dimension>(b2); in apply() local 70 if (max1 <= min2 || min1 >= max2) in apply() 83 if (min1 < min2 || max1 > max2) in apply() 89 if (min2 < min1 || max2 > max1) in apply()
|
/third_party/typescript/tests/cases/compiler/ |
D | maxConstraints.ts | 7 var max2: Comparer = (x, y) => { return (x.compareTo(y) > 0) ? x : y }; variable 8 var maxResult = max2(1, 2);
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtsprange.c | 200 res = parse_utc_time (p + 1, &range->max, &range->max2, NULL); in parse_utc_range() 251 res = parse_smpte_time (p + 1, &range->max, &range->max2, NULL); in parse_smpte_range() 414 if (!(res = time_to_string (&range->max, &range->max2, string))) in range_to_string() 592 *max = get_time (range->unit, &range->max, &range->max2); in gst_rtsp_range_get_times() 688 set_time (&range->max, &range->max2, unit, in gst_rtsp_range_convert_units() 689 get_time (range->unit, &range->max, &range->max2)); in gst_rtsp_range_convert_units()
|
D | gstrtsprange.h | 142 GstRTSPTime2 max2; member
|
/third_party/boost/boost/geometry/algorithms/detail/touches/ |
D | implementation.hpp | 63 coordinate_type2 const& max2 = get<max_corner, Dimension>(b2); in apply() local 68 if (max1 < min2 || max2 < min1) in apply() 73 if (max1 == min2 || max2 == min1) in apply()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstvalue.c | 5327 gint max2, gint step) in gst_value_create_new_range() argument 5337 g_return_val_if_fail (max2 % step == 0, FALSE); in gst_value_create_new_range() 5339 if (min1 <= max1 && min2 <= max2) { in gst_value_create_new_range() 5345 } else if (min2 <= max2) { in gst_value_create_new_range() 5362 if (min2 < max2) { in gst_value_create_new_range() 5364 gst_value_set_int_range_step (pv2, min2, max2, step); in gst_value_create_new_range() 5365 } else if (min2 == max2) { in gst_value_create_new_range() 5370 if (min1 <= max1 && min2 <= max2) { in gst_value_create_new_range() 5420 gint max2 = gst_value_get_int_range_max (subtrahend); in gst_value_subtract_int_range_int_range() local 5434 if (max2 >= max1 && min2 <= min1) { in gst_value_subtract_int_range_int_range() [all …]
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | rtsp.c | 364 fail_unless (range->max2.frames == 20.89); in GST_START_TEST() 383 fail_unless (range->max2.frames == 20.89); in GST_START_TEST() 403 fail_unless (range->max2.frames == 24.99); in GST_START_TEST() 454 fail_unless (range->max2.year == 3000); in GST_START_TEST() 455 fail_unless (range->max2.month == 12); in GST_START_TEST() 456 fail_unless (range->max2.day == 30); in GST_START_TEST()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | lower_blend_equation_advanced.cpp | 78 return max2(src, dst); in blend_lighten() 180 return max2(max2(swizzle_x(v), swizzle_y(v)), swizzle_z(v)); in maxv3()
|
D | ir_builder.h | 205 ir_expression *max2(operand a, operand b);
|
D | ir_builder.cpp | 219 ir_expression *max2(operand a, operand b) in max2() function
|
D | lower_ubo_reference.cpp | 267 index = max2(index, zero); in clamp_to_array_bounds()
|
D | builtin_functions.cpp | 5250 max2(abs(y_over_x), in do_atan() 5336 body.emit(assign(t, min2(max2(x, imm(-10.0f)), imm(10.0f)))); in _tanh() 7393 ir_expression *max3 = max2(x, max2(y,z)); in _max3() 7407 ir_expression *mid3 = max2(min2(x, y), max2(min2(x, z), min2(y, z))); in _mid3()
|
/third_party/ffmpeg/libavcodec/ |
D | vorbisenc.c | 919 float max1 = 0.0, max2 = 0.0; in residue_encode() local 923 max2 = FFMAX(max2, fabs(coeffs[samples + k / real_ch])); in residue_encode() 927 if (max1 < rc->maxes[i][0] && max2 < rc->maxes[i][1]) in residue_encode()
|
D | ratecontrol.c | 221 double max2 = log(qmax); in modify_qscale() local 224 q = (q - min2) / (max2 - min2) - 0.5; in modify_qscale() 227 q = q * (max2 - min2) + min2; in modify_qscale()
|
/third_party/boost/libs/geometry/test/algorithms/set_operations/intersection/ |
D | intersection.cpp | 876 void test_boxes_per_d(P const& min1, P const& max1, P const& min2, P const& max2, bool expected_res… in test_boxes_per_d() argument 881 bool detected = bg::intersection(box(min1, max1), box(min2, max2), box_out); in test_boxes_per_d()
|
/third_party/toybox/toys/pending/ |
D | bc.c | 1457 size_t max = maxof(a->len, b->len), max2 = (max + 1) / 2; in bc_num_k() local 1517 bc_num_split(a, max2, &l1, &h1); in bc_num_k() 1518 bc_num_split(b, max2, &l2, &h2); in bc_num_k() 1537 s = bc_num_shift(&z0, max2 * 2); in bc_num_k() 1539 s = bc_num_shift(&z1, max2); in bc_num_k()
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsVertexArrayTests.cpp | 1425 const deUint32 max2 = 4; in createQuadsPacked() local 1443 deUint32 w = deRandom_getUint32(&rnd) % max2; in createQuadsPacked()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | dec_neon.c | 699 const uint8x16_t max2 = vmaxq_u8(a_p1_p0, a_q3_q2); in NeedsFilter2_NEON() local 701 const uint8x16_t max12 = vmaxq_u8(max1, max2); in NeedsFilter2_NEON()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | dec_neon.c | 699 const uint8x16_t max2 = vmaxq_u8(a_p1_p0, a_q3_q2); in NeedsFilter2_NEON() local 701 const uint8x16_t max12 = vmaxq_u8(max1, max2); in NeedsFilter2_NEON()
|
/third_party/gstreamer/gstplugins_good/gst/rtsp/ |
D | gstrtspsrc.c | 8520 range.max2.year = g_date_time_get_year (datetime); in gen_range_header() 8521 range.max2.month = g_date_time_get_month (datetime); in gen_range_header() 8522 range.max2.day = g_date_time_get_day_of_month (datetime); in gen_range_header()
|