/third_party/typescript/tests/baselines/reference/ |
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.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.errors.txt | 11 var max2: Comparer = (x, y) => { return (x.compareTo(y) > 0) ? x : y }; 12 var maxResult = max2(1, 2);
|
/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/lame/libmp3lame/ |
D | takehiro.c | 426 int max1 = 0, max2 = 0; in ix_max() local 434 if (max2 < x2) in ix_max() 435 max2 = x2; in ix_max() 437 if (max1 < max2) in ix_max() 438 max1 = max2; in ix_max()
|
/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 | 203 ir_expression *max2(operand a, operand b);
|
D | ir_builder.cpp | 206 ir_expression *max2(operand a, operand b) in max2() function
|
D | builtin_functions.cpp | 5953 body.emit(assign(t, min2(max2(x, imm(-10.0f)), imm(10.0f)))); in _tanh() 8090 ir_expression *max3 = max2(x, max2(y,z)); in _max3() 8104 ir_expression *mid3 = max2(min2(x, y), max2(min2(x, z), min2(y, z))); in _mid3()
|
/third_party/ffmpeg/libavcodec/ |
D | vorbisenc.c | 924 float max1 = 0.0, max2 = 0.0; in residue_encode() local 928 max2 = FFMAX(max2, fabs(coeffs[samples + k / real_ch])); in residue_encode() 932 if (max1 < rc->maxes[i][0] && max2 < rc->maxes[i][1]) in residue_encode()
|
D | ratecontrol.c | 220 double max2 = log(qmax); in modify_qscale() local 223 q = (q - min2) / (max2 - min2) - 0.5; in modify_qscale() 226 q = q * (max2 - min2) + min2; in modify_qscale()
|
/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/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()
|