/third_party/boost/boost/date_time/ |
D | date_duration_types.hpp | 172 BOOST_CXX14_CONSTEXPR years_duration(int_rep num) : _y(num) {} in years_duration() 173 BOOST_CXX14_CONSTEXPR years_duration(special_values sv) : _y(sv) in years_duration() 175 _y = int_rep::from_special(sv); in years_duration() 177 BOOST_CXX14_CONSTEXPR int_rep number_of_years() const { return _y; } in number_of_years() 181 month_adjustor_type m_adj(_y.as_number() * 12); in get_neg_offset() 186 month_adjustor_type m_adj(_y.as_number() * 12); in get_offset() 191 return(_y == rhs._y); in operator ==() 195 return(_y != rhs._y); in operator !=() 199 return years_type(_y + rhs._y); in operator +() 203 _y = _y + rhs._y; in operator +=() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/ |
D | gstdrawhelpers.h | 24 #define draw_dot(_vd, _x, _y, _st, _c) G_STMT_START { \ argument 25 _vd[(_y * _st) + _x] = _c; \ 28 #define draw_dot_c(_vd, _x, _y, _st, _c) G_STMT_START { \ argument 29 _vd[(_y * _st) + _x] |= _c; \ 32 #define draw_dot_aa(_vd, _x, _y, _st, _c, _f) G_STMT_START { \ argument 35 _oc = _vd[(_y * _st) + _x]; \ 42 _vd[(_y * _st) + _x] = (_c1 << 16) | (_c2 << 8) | _c3; \ 46 guint _i, _j, _x, _y; \ 54 _y = _y1 + _dy * _f; \ 55 draw_dot (_vd, _x, _y, _st, _c); \ [all …]
|
/third_party/mesa3d/src/util/format/ |
D | u_format_yuv.h | 67 const int _y = scale * ( (0.257f * _r) + (0.504f * _g) + (0.098f * _b)); in util_format_rgb_float_to_yuv() local 71 *y = _y + 16; in util_format_rgb_float_to_yuv() 81 const int _y = y - 16; in util_format_yuv_to_rgb_float() local 89 *r = scale * (y_factor * _y + 1.596f * _v); in util_format_yuv_to_rgb_float() 90 *g = scale * (y_factor * _y - 0.391f * _u - 0.813f * _v); in util_format_yuv_to_rgb_float() 91 *b = scale * (y_factor * _y + 2.018f * _u ); in util_format_yuv_to_rgb_float() 109 const int _y = y - 16; in util_format_yuv_to_rgb_8unorm() local 113 const int _r = (298 * _y + 409 * _v + 128) >> 8; in util_format_yuv_to_rgb_8unorm() 114 const int _g = (298 * _y - 100 * _u - 208 * _v + 128) >> 8; in util_format_yuv_to_rgb_8unorm() 115 const int _b = (298 * _y + 516 * _u + 128) >> 8; in util_format_yuv_to_rgb_8unorm()
|
/third_party/typescript/tests/baselines/reference/ |
D | privateNameInLhsReceiverExpression.js | 26 var _y; variable 29 _y.set(this, 123); 40 _a)).s], _y, 1); 48 _b)).s], _y, __classPrivateFieldGet(_c, _y) + 1); 51 _y = new WeakMap(); variable
|
D | duplicateClassElements.js | 19 set y(_y: string) { 27 set z(_y: string) { 40 set z2(_y: string) { 68 set: function (_y) { argument 79 set: function (_y) { argument 97 set: function (_y) { argument
|
D | duplicateClassElements.symbols | 35 set y(_y: string) { 37 >_y : Symbol(_y, Decl(duplicateClassElements.ts, 17, 10)) 48 set z(_y: string) { 50 >_y : Symbol(_y, Decl(duplicateClassElements.ts, 25, 10)) 70 set z2(_y: string) { 72 >_y : Symbol(_y, Decl(duplicateClassElements.ts, 38, 11))
|
D | duplicateClassElements.types | 37 set y(_y: string) { 39 >_y : string 51 set z(_y: string) { 53 >_y : string 75 set z2(_y: string) { 77 >_y : string
|
D | privateNameComputedPropertyName3(target=es2015).js | 48 var _y; 52 _y.set(this, 100); 54 [(_y = new WeakMap(), __classPrivateFieldGet(obj, _name))]() { 55 return x + __classPrivateFieldGet(this, _y);
|
D | noImplicitAnyDestructuringVarDeclaration2.js | 24 var _y = { x3: 1, y3: 2, z3: 3 }, _z = _y.x3, x3 = _z === void 0 ? undefined : _z, _0 = _y.y3, y3 =… variable
|
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/EGLWLMockNavigation/include/ |
D | vec.h | 33 vec2(T _x, T _y) in vec2() argument 35 , y(_y) in vec2() 54 vec3(T _x, T _y, T _z) in vec3() argument 56 , y(_y) in vec3() 86 vec4(T _x, T _y, T _z, T _w) in vec4() argument 88 , y(_y) in vec4()
|
/third_party/boost/libs/parameter/test/ |
D | singular.cpp | 145 test::check1(test::_y = 20, test::_y, 20); in main() 148 test::check0(test::_y = 20, test::_y | 0, 20); in main() 151 test::check0(test::_y = 20, test::_y || test::default_src(), 20); in main() 153 test::check0(test::_y = 20, test::_x | 0, 0); in main() 154 test::check0(test::_y = 20, test::_x || test::default_src(), 0); in main()
|
D | deduced.cpp | 56 >((test::_x = 0, test::_y = 1), 0, 1); in main() 73 , test::_y = test::not_present in main() 93 (test::_x = 0, test::_y = 1, test::_z = std::string("foo")) in main() 112 (test::_x = 0, test::_y = 1, test::_z = std::string("foo")) in main() 131 (test::_x = 0, test::_y = 1, test::_z = std::string("foo")) in main() 133 , test::_y = 1 in main() 150 (test::_x = 0, test::_y = 1, test::_z = std::string("foo")) in main() 173 (test::_x = 0, test::_y = 1, test::_z = std::string("foo")) in main()
|
D | preprocessor_deduced.cpp | 224 : index(args[test::_y]), key(args[test::_z]) in char_read_base() 342 , test::_y = std::string("foo") in main() 356 , test::_y = std::string("foo") in main() 367 , test::_y = std::string("foo") in main() 372 , test::_y = std::string("foo") in main() 386 , test::_y = std::string("foo") in main() 397 , test::_y = std::string("foo") in main() 402 , test::_y = std::string("foo") in main() 409 , test::_y = std::string("foo") in main()
|
D | deduced_dependent_predicate.cpp | 76 >((test::_x = 0, test::_y = 1), 0, 1); in main() 114 >((test::_x = 0U, test::_y = 1U), 0U, 1U); in main() 136 >((test::_x = 0, test::_y = 1), 0, 1); in main() 158 >((test::_x = 0U, test::_y = 1U), 0U, 1U); in main()
|
D | earwicker.cpp | 97 BOOST_TEST_EQ(p[test::_w][1], p[test::_y | -2]); 111 test::f(test::_x = 1, test::_y = 2, test::_z = 3, test::_w = a); in main() 117 test::f(test::_y = 2, test::_w = a); in main()
|
/third_party/libnl/include/netlink-private/ |
D | netlink.h | 163 __typeof__(y) _y = (y); \ 164 (void) (&_x == &_y); \ 165 _x < _y ? _x : _y; }) 169 __typeof__(y) _y = (y); \ 170 (void) (&_x == &_y); \ 171 _x > _y ? _x : _y; })
|
/third_party/typescript/tests/cases/compiler/ |
D | duplicateClassElements.ts | 18 set y(_y: string) { 26 set z(_y: string) { 39 set z2(_y: string) {
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | test-sort.c | 14 #define MIN(_x,_y) ((_x) < (_y) ? (_x) : (_y)) argument
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | alignment.dart | 29 double get _y; 46 _y + other._y, 104 ui.lerpDouble(a._y, b._y, t), 122 return Alignment._stringify(_x, _y); 124 return AlignmentDirectional._stringify(_start, _y); 125 return Alignment._stringify(_x, _y) + ' + ' + AlignmentDirectional._stringify(_start, 0.0); 135 _y == typedOther._y; 139 int get hashCode => hashValues(_x, _start, _y); 214 double get _y => y; 427 double get _y => y; [all …]
|
/third_party/node/test/parallel/ |
D | test-util-inspect-getters-accessing-this.js | 14 this._y = 123; 18 return this._y;
|
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/ |
D | misc.h | 105 __typeof__ (y) _y = (y); \ 106 (void)(&_x == &_y); /* warn if types do not match */ \ 107 /* return */ (_x < _y) ? _x : _y; \ 113 __typeof__ (y) _y = (y); \ 114 (void)(&_x == &_y); /* warn if types do not match */ \ 115 /* return */ (_x > _y) ? _x : _y; \
|
/third_party/libinput/tools/ |
D | libinput-measure-touchpad-size.py | 67 self._y = y 84 return self._y 99 self._y.minimum = min(self.y.minimum, y) 100 self._y.maximum = max(self.y.maximum, y) 106 self.pos.y = min(0.99, (y - self._y.minimum) / self.yrange) 113 self._y.minimum = self.min.y 114 self._y.maximum = self.max.y
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/fork/ |
D | s-c1.c | 404 long _y; /* Value Y - Yavg */ member 514 Table[N]._y = Table[N].Y - Yavg; in parse_measure() 539 r1 += ((double)Table[r]._y / array_max) * (double)Table[r]._y; in parse_measure() 541 _q[0] += Table[r]._y * Table[r]._x; in parse_measure() 563 t = (Table[r]._y - ((_q[0] * Table[r]._x) / _d[0])); in parse_measure()
|
/third_party/boost/libs/phoenix/test/scope/ |
D | let_tests_rest.cpp | 42 using boost::phoenix::local_names::_y; in main() 72 let(_x = _1, _y = _2) in main() 76 _x + _y + _z in main()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cGlSpirvTests.hpp | 225 ValidationOutputStruct(GLubyte _x, GLubyte _y, GLuint _value) : x(_x), y(_y), z(0), value(_value) in ValidationOutputStruct() 229 …ValidationOutputStruct(GLubyte _x, GLubyte _y, GLubyte _z, GLuint _value) : x(_x), y(_y), z(_z), v… in ValidationOutputStruct()
|