Home
last modified time | relevance | path

Searched refs:ww (Results 1 – 25 of 101) sorted by relevance

12345

/third_party/node/deps/npm/lib/
Dupdate.js29 const outdated = rawOutdated.map(function (ww) { argument
31 dep: ww[0],
32 depname: ww[1],
33 current: ww[2],
34 wanted: ww[3],
35 latest: ww[4],
36 req: ww[5],
37 what: ww[1] + '@' + ww[3]
41 const wanted = outdated.filter(function (ww) { argument
42 if (ww.current === ww.wanted && ww.wanted !== ww.latest) {
[all …]
/third_party/libpsl/fuzz/libpsl_load_fuzzer.in/
D2fd1ed4859ddbeee7fee52e0b6b480e8a59a667b3 !!ww!ww.��������.��������
19 w!ww.��������.��������
24 !!ww!ww.��������.��������
40 w!ww.��������.��������
D544079278758acc209d372b86033bdbae511ff8b3 !!ww!ww.��������.��������
19 w!ww.��������.��������
/third_party/boost/libs/math/example/
Dlambert_w_precision_example.cpp129 double ww = lambert_w_halley_step(lambert_w0(z), z); in main() local
132 std::cout << "absolute difference from Halley step = " << w - ww << std::endl; in main()
133 … std::cout << "relative difference from Halley step = " << relative_difference(w, ww) << std::endl; in main()
134 … std::cout << "epsilon difference from Halley step = " << epsilon_difference(w, ww) << std::endl; in main()
136 …std::cout << "bits different from Halley step = " << static_cast<int>(float_distance(w, ww)) … in main()
180 double ww = lambert_w_halley_step(lambert_wm1(z), z); in main() local
183 std::cout << "absolute difference from Halley step = " << w - ww << std::endl; in main()
184 … std::cout << "relative difference from Halley step = " << relative_difference(w, ww) << std::endl; in main()
185 … std::cout << "epsilon difference from Halley step = " << epsilon_difference(w, ww) << std::endl; in main()
187 …std::cout << "bits different from Halley step = " << static_cast<int>(float_distance(w, ww)) … in main()
/third_party/musl/src/math/
Dpowl.c455 long double ww, y; in powil() local
503 ww = x; in powil()
506 ww = ww * ww; /* arg to the 2-to-the-kth power */ in powil()
508 y *= ww; in powil()
/third_party/musl/porting/liteos_a/kernel/src/math/
Dpowl.c455 long double ww, y; in powil() local
503 ww = x; in powil()
506 ww = ww * ww; /* arg to the 2-to-the-kth power */ in powil()
508 y *= ww; in powil()
/third_party/skia/samplecode/
DSampleXfermodesBlur.cpp46 SkScalar ww = SkIntToScalar(W); in draw_mode() local
53 r.setLTRB(0, 0, ww*3/4, hh*3/4); in draw_mode()
62 r.setLTRB(ww/3, hh/3, ww*19/20, hh*19/20); in draw_mode()
/third_party/flutter/skia/samplecode/
DSampleXfermodesBlur.cpp46 SkScalar ww = SkIntToScalar(W); in draw_mode() local
53 r.set(0, 0, ww*3/4, hh*3/4); in draw_mode()
62 r.set(ww/3, hh/3, ww*19/20, hh*19/20); in draw_mode()
/third_party/typescript/tests/baselines/reference/
DpropertyAccess.js125 var ww = bothIndex[Compass.East]; variable
126 var ww: B; variable
270 var ww = bothIndex[Compass.East];
271 var ww; variable
/third_party/node/test/pummel/
Dtest-stream-pipe-multi.js30 const ww = []; variable
90 ww.push(w);
/third_party/node/src/
Dstream_wrap.cc90 Local<FunctionTemplate> ww = in Initialize() local
92 ww->InstanceTemplate()->SetInternalFieldCount( in Initialize()
94 ww->Inherit(AsyncWrap::GetConstructorTemplate(env)); in Initialize()
95 env->SetConstructorFunction(target, "WriteWrap", ww); in Initialize()
96 env->set_write_wrap_template(ww->InstanceTemplate()); in Initialize()
/third_party/ffmpeg/libavfilter/
Davf_abitscope.c185 int ww = (s->counter[16 - b - 1] / (float)insamples->nb_samples) * (w - 1); in filter_frame() local
187 for (i = 0; i < ww; i++) { in filter_frame()
208 int ww = (s->counter[32 - b - 1] / (float)insamples->nb_samples) * (w - 1); in filter_frame() local
210 for (i = 0; i < ww; i++) { in filter_frame()
Dvf_datascope.c440 int ww, wh; member
518 s->ww = 300; in pixscope_config_input()
554 w = s->ww / s->w; in pixscope_filter_frame()
555 h = s->ww / s->h; in pixscope_filter_frame()
558 X = (in->width - s->ww) * s->wx; in pixscope_filter_frame()
560 X = (in->width - s->ww) * -s->wx; in pixscope_filter_frame()
569 if (s->x + s->w >= X && (s->x + s->w <= X + s->ww) && in pixscope_filter_frame()
571 X = (in->width - s->ww) * (1 + s->wx); in pixscope_filter_frame()
576 if (s->x + s->w >= X && (s->x + s->w <= X + s->ww) && in pixscope_filter_frame()
586 s->ww, in pixscope_filter_frame()
[all …]
/third_party/typescript/tests/cases/conformance/expressions/propertyAccess/
DpropertyAccess.ts124 var ww = bothIndex[Compass.East]; variable
125 var ww: B; variable
/third_party/flutter/skia/gm/
Dxfermodes.cpp100 SkScalar ww = SkIntToScalar(w); in make_bitmaps() local
106 r.set(0, 0, ww*3/4, hh*3/4); in make_bitmaps()
116 r.set(ww/3, hh/3, ww*19/20, hh*19/20); in make_bitmaps()
/third_party/skia/gm/
Dxfermodes.cpp100 SkScalar ww = SkIntToScalar(w); in make_bitmaps() local
106 r.setWH(ww*3/4, hh*3/4); in make_bitmaps()
116 r.setLTRB(ww/3, hh/3, ww*19/20, hh*19/20); in make_bitmaps()
/third_party/skia/tests/sksl/shared/
DNormalizationVert.glsl5 …gl_Position = vec4(gl_Position.xy * sk_RTAdjust.xz + gl_Position.ww * sk_RTAdjust.yw, 0.0, gl_Posi…
DNoFragCoordsPosRT.glsl7 …gl_Position = vec4(gl_Position.xy * sk_RTAdjust.xz + gl_Position.ww * sk_RTAdjust.yw, 0.0, gl_Posi…
DNormalizationVert.metal17 …_out.sk_Position = float4(_out.sk_Position.xy * _uniforms.sk_RTAdjust.xz + _out.sk_Position.ww * _…
DNoFragCoordsPosRT.metal18 …_out.sk_Position = float4(_out.sk_Position.xy * _uniforms.sk_RTAdjust.xz + _out.sk_Position.ww * _…
/third_party/libwebsockets/scripts/
Dattack.sh380 /../ww \
431 //..ww \
502 /ww../ \
503 /ww/.. \
/third_party/boost/boost/phoenix/function/
Dlazy_reuse.hpp253 Thunk4( const F& ff, const W& ww, const X& xx, const Y& yy, const Z& zz ) in Thunk4()
254 : f(ff), w(ww), x(xx), y(yy), z(zz) {} in Thunk4()
255 void init( const F& ff, const W& ww, const X& xx, const Y& yy, const Z& zz ) const { in init()
257 Maybe_Var_Inv<V2,W>::remake( w, ww ); in init()
/third_party/flutter/skia/src/core/
DSkGeometry.h353 Sk2s ww(conic.fW); in SkConicCoeff()
355 Sk2s p1w = p1 * ww; in SkConicCoeff()
361 fDenom.fB = times_2(ww - fDenom.fC); in SkConicCoeff()
/third_party/python/Objects/
Dmemoryobject.c2807 Py_buffer *ww = NULL; in memory_richcompare() local
2828 ww = VIEW_ADDR(w); in memory_richcompare()
2835 ww = &wbuf; in memory_richcompare()
2838 if (!equiv_shape(vv, ww)) { in memory_richcompare()
2847 if (get_native_fmtchar(&wfmt, ww->format) < 0) in memory_richcompare()
2860 unpack_w = struct_get_unpacker(ww->format, ww->itemsize); in memory_richcompare()
2868 equal = unpack_cmp(vv->buf, ww->buf, in memory_richcompare()
2872 equal = cmp_base(vv->buf, ww->buf, vv->shape, in memory_richcompare()
2874 ww->strides, ww->suboffsets, in memory_richcompare()
2878 equal = cmp_rec(vv->buf, ww->buf, vv->ndim, vv->shape, in memory_richcompare()
[all …]
Dfloatobject.c455 PyObject *ww = w; in float_richcompare() local
458 ww = PyNumber_Negative(w); in float_richcompare()
459 if (ww == NULL) in float_richcompare()
463 Py_INCREF(ww); in float_richcompare()
476 temp = _PyLong_Lshift(ww, 1); in float_richcompare()
479 Py_DECREF(ww); in float_richcompare()
480 ww = temp; in float_richcompare()
495 r = PyObject_RichCompareBool(vv, ww, op); in float_richcompare()
501 Py_XDECREF(ww); in float_richcompare()

12345