Home
last modified time | relevance | path

Searched refs:_u (Results 1 – 25 of 73) sorted by relevance

123

/third_party/boost/boost/random/
Dbinomial_distribution.hpp281 _u.q_n = pow((1 - p), static_cast<RealType>(t)); in init()
283 _u.btrd.r = p/(1-p); in init()
284 _u.btrd.nr = (t+1)*_u.btrd.r; in init()
285 _u.btrd.npq = t*p*(1-p); in init()
286 RealType sqrt_npq = sqrt(_u.btrd.npq); in init()
287 _u.btrd.b = 1.15 + 2.53 * sqrt_npq; in init()
288 _u.btrd.a = -0.0873 + 0.0248*_u.btrd.b + 0.01*p; in init()
289 _u.btrd.c = t*p + 0.5; in init()
290 _u.btrd.alpha = (2.83 + 5.1/_u.btrd.b) * sqrt_npq; in init()
291 _u.btrd.v_r = 0.92 - 4.2/_u.btrd.b; in init()
[all …]
Dpoisson_distribution.hpp258 _u._exp_mean = exp(-_mean); in init()
260 _u._ptrd.smu = sqrt(_mean); in init()
261 _u._ptrd.b = 0.931 + 2.53 * _u._ptrd.smu; in init()
262 _u._ptrd.a = -0.059 + 0.02483 * _u._ptrd.b; in init()
263 _u._ptrd.inv_alpha = 1.1239 + 1.1328 / (_u._ptrd.b - 3.4); in init()
264 _u._ptrd.v_r = 0.9277 - 3.6224 / (_u._ptrd.b - 2); in init()
278 if(v <= 0.86 * _u._ptrd.v_r) { in generate()
279 u = v / _u._ptrd.v_r - 0.43; in generate()
281 (2*_u._ptrd.a/(0.5-abs(u)) + _u._ptrd.b)*u + _mean + 0.445)); in generate()
284 if(v >= _u._ptrd.v_r) { in generate()
[all …]
/third_party/mesa3d/src/util/format/
Du_format_yuv.h68 const int _u = scale * (-(0.148f * _r) - (0.291f * _g) + (0.439f * _b)); in util_format_rgb_float_to_yuv() local
72 *u = _u + 128; in util_format_rgb_float_to_yuv()
82 const int _u = u - 128; in util_format_yuv_to_rgb_float() local
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()
110 const int _u = u - 128; in util_format_yuv_to_rgb_8unorm() local
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/pulseaudio/src/modules/
Dmodule-equalizer-sink.c1410 static void manager_get_revision(DBusConnection *conn, DBusMessage *msg, void *_u);
1411 static void manager_get_sinks(DBusConnection *conn, DBusMessage *msg, void *_u);
1412 static void manager_get_profiles(DBusConnection *conn, DBusMessage *msg, void *_u);
1413 static void manager_get_all(DBusConnection *conn, DBusMessage *msg, void *_u);
1414 static void manager_handle_remove_profile(DBusConnection *conn, DBusMessage *msg, void *_u);
1415 static void equalizer_get_revision(DBusConnection *conn, DBusMessage *msg, void *_u);
1416 static void equalizer_get_sample_rate(DBusConnection *conn, DBusMessage *msg, void *_u);
1417 static void equalizer_get_filter_rate(DBusConnection *conn, DBusMessage *msg, void *_u);
1418 static void equalizer_get_n_coefs(DBusConnection *conn, DBusMessage *msg, void *_u);
1419 static void equalizer_get_n_channels(DBusConnection *conn, DBusMessage *msg, void *_u);
[all …]
/third_party/typescript/tests/baselines/reference/
DnoImplicitAnyDestructuringVarDeclaration2.js23 var _u = { x2: 1, y2: 2, z2: 3 }, _v = _u.x2, x2 = _v === void 0 ? undefined : _v, _w = _u.y2, y2 =… variable
DdestructuringVariableDeclaration1ES5iterable.js92 var _u = __read({ e: [1, 2, { b1: 4, b4: 0 }] }.e, 3), e1 = _u[0], e2 = _u[1], _v = _u[2], e3 = _v … variable
DsourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3.js58 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z,… variable
79 …[1], nameB = _t === void 0 ? "helloNoName" : _t, _u = robotB[2], skillB = _u === void 0 ? "noSkill…
DstaticFieldWithInterfaceContext.js108 var _u = [][0], c9 = _u === void 0 ? (_l = /** @class */ (function () {
114 _l) : _u;
DdestructuringVariableDeclaration1ES5.js81 var _u = { g: { g1: [1, 2] } }.g.g1, g1 = _u === void 0 ? [undefined, null] : _u; variable
DdestructuringSameNames.js55 var _u = { foo5: 50, bar5: 550 }, foo5 = _u.foo5, foo5 = _u.bar5; variable
DsourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues.js122 for (var _u = 0, _v = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } },
123 …{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _u < _v.length; _u++) {
124 …var _w = _v[_u].skills, _x = _w === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _w, _y…
DsourceMapValidationDestructuringForOfArrayBindingPattern.js135 for (var _u = 0, robots_2 = robots; _u < robots_2.length; _u++) {
136 var numberB = robots_2[_u][0];
DcomputedPropertiesInDestructuring1.js49 var _u = [{ bar: "bar" }], _v = foo2(), bar5 = _u[0][_v]; variable
DsourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js118 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z,… variable
148 …marySkillA = _t === void 0 ? "primary" : _t, _u = _s[1], secondarySkillA = _u === void 0 ? "second…
DsourceMapValidationDestructuringForOfArrayBindingPattern2.js104 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w; variable
194 _u = robots_4[_26], numberA3 = _u[0], robotAInfo = _u.slice(1);
DsourceMapValidationDestructuringForObjectBindingPattern2.js114 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v; variable
197 for (_u = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, name = _u.name…
DsourceMapValidationDestructuringForOfObjectBindingPattern.js113 for (var _t = 0, _u = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }];…
114 var _v = _u[_t], nameA = _v.name, skillA = _v.skill;
DdestructuringArrayBindingPatternAndAssignment1ES5iterable.js115 var _t = __read([[1], true], 2), _u = __read(_t[0], 1), c5 = _u[0], c6 = _t[1]; variable
DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js130 for (var _t = getRobot(), _u = _t.name, nameA = _u === void 0 ? "noName" : _u, _v = _t.skill, skill…
DsourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js113 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z,… variable
151 …[_46], _t = _s[1], _u = _t === void 0 ? ["skill1", "skill2"] : _t, _v = _u[0], primarySkillA = _v …
DsourceMapValidationDestructuringForArrayBindingPatternDefaultValues.js136 …marySkillA = _t === void 0 ? "primary" : _t, _u = _s[1], secondarySkillA = _u === void 0 ? "second…
DsourceMapValidationDestructuringForOfObjectBindingPattern2.js113 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z; variable
213_u = multiRobots_4[_34], name = _u.name, _v = _u.skills, primary = _v.primary, secondary = _v.seco…
DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js178 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z,… variable
217 for (_u = multiRobot.skills, _v = _u === void 0 ? { primary: "none", secondary: "none" } : _u, _w =…
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcPolygonOffsetClampTests.hpp43 PolygonOffsetClampValues(GLfloat _f, GLfloat _u, GLfloat _c) : factor(_f), units(_u), clamp(_c) in PolygonOffsetClampValues()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderVertexSpacing.hpp135 _tess_coordinate(float _u, float _v, float _w) in _tess_coordinate()
137 this->u = _u; in _tess_coordinate()

123