/third_party/musl/src/math/ |
D | powl.c | 455 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/ |
D | powl.c | 455 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/ |
D | SampleXfermodesBlur.cpp | 46 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/typescript/tests/baselines/reference/ |
D | propertyAccess.js | 125 var ww = bothIndex[Compass.East]; variable 126 var ww: B; variable 270 var ww = bothIndex[Compass.East]; 271 var ww; variable
|
D | propertyAccess.symbols | 299 var ww = bothIndex[Compass.East]; 300 >ww : Symbol(ww, Decl(propertyAccess.ts, 123, 3), Decl(propertyAccess.ts, 124, 3)) 306 var ww: B; 307 >ww : Symbol(ww, Decl(propertyAccess.ts, 123, 3), Decl(propertyAccess.ts, 124, 3))
|
D | propertyAccess.types | 353 var ww = bothIndex[Compass.East]; 354 >ww : B 361 var ww: B; 362 >ww : B
|
/third_party/node/src/ |
D | stream_wrap.cc | 95 Local<FunctionTemplate> ww = in Initialize() local 97 ww->InstanceTemplate()->SetInternalFieldCount( in Initialize() 99 ww->Inherit(AsyncWrap::GetConstructorTemplate(env)); in Initialize() 100 SetConstructorFunction(context, target, "WriteWrap", ww); in Initialize() 101 env->set_write_wrap_template(ww->InstanceTemplate()); in Initialize()
|
/third_party/skia/gm/ |
D | xfermodes.cpp | 100 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/node/test/pummel/ |
D | test-stream-pipe-multi.js | 30 const ww = []; variable 90 ww.push(w);
|
/third_party/typescript/tests/cases/conformance/expressions/propertyAccess/ |
D | propertyAccess.ts | 124 var ww = bothIndex[Compass.East]; variable 125 var ww: B; variable
|
/third_party/ffmpeg/libavfilter/ |
D | vf_datascope.c | 472 int ww, wh; member 550 s->ww = 300; in pixscope_config_input() 586 w = s->ww / s->w; in pixscope_filter_frame() 587 h = s->ww / s->h; in pixscope_filter_frame() 590 X = (in->width - s->ww) * s->wx; in pixscope_filter_frame() 592 X = (in->width - s->ww) * -s->wx; in pixscope_filter_frame() 601 if (s->x + s->w >= X && (s->x + s->w <= X + s->ww) && in pixscope_filter_frame() 603 X = (in->width - s->ww) * (1 + s->wx); in pixscope_filter_frame() 608 if (s->x + s->w >= X && (s->x + s->w <= X + s->ww) && in pixscope_filter_frame() 618 s->ww, in pixscope_filter_frame() [all …]
|
D | af_afreqshift.c | 228 const double ww = num / den; in compute_coef() local 229 const double wwsq = ww * ww; in compute_coef()
|
/third_party/libwebsockets/scripts/ |
D | attack.sh | 380 /../ww \ 431 //..ww \ 502 /ww../ \ 503 /ww/.. \
|
/third_party/python/Objects/ |
D | memoryobject.c | 2832 Py_buffer *ww = NULL; in memory_richcompare() local 2853 ww = VIEW_ADDR(w); in memory_richcompare() 2860 ww = &wbuf; in memory_richcompare() 2863 if (!equiv_shape(vv, ww)) { in memory_richcompare() 2872 if (get_native_fmtchar(&wfmt, ww->format) < 0) in memory_richcompare() 2885 unpack_w = struct_get_unpacker(ww->format, ww->itemsize); in memory_richcompare() 2893 equal = unpack_cmp(vv->buf, ww->buf, in memory_richcompare() 2897 equal = cmp_base(vv->buf, ww->buf, vv->shape, in memory_richcompare() 2899 ww->strides, ww->suboffsets, in memory_richcompare() 2903 equal = cmp_rec(vv->buf, ww->buf, vv->ndim, vv->shape, in memory_richcompare() [all …]
|
D | floatobject.c | 475 PyObject *ww = w; in float_richcompare() local 478 ww = PyNumber_Negative(w); in float_richcompare() 479 if (ww == NULL) in float_richcompare() 483 Py_INCREF(ww); in float_richcompare() 496 temp = _PyLong_Lshift(ww, 1); in float_richcompare() 499 Py_DECREF(ww); in float_richcompare() 500 ww = temp; in float_richcompare() 515 r = PyObject_RichCompareBool(vv, ww, op); in float_richcompare() 521 Py_XDECREF(ww); in float_richcompare()
|
/third_party/toybox/lib/ |
D | portability.c | 547 long long total = 0, len, ww; in sendfile_len() local 552 ww = 0; in sendfile_len() 566 ww = len = read(in, libbuf, len); in sendfile_len() 571 if (ww && writeall(out, libbuf, len) != len) return -1; in sendfile_len()
|
/third_party/skia/src/core/ |
D | SkGeometry.h | 425 Sk2s ww(conic.fW); in SkConicCoeff() 427 Sk2s p1w = p1 * ww; in SkConicCoeff() 433 fDenom.fB = times_2(ww - fDenom.fC); in SkConicCoeff()
|
/third_party/skia/tests/sksl/shared/ |
D | NormalizationVert.glsl | 5 …gl_Position = vec4(gl_Position.xy * sk_RTAdjust.xz + gl_Position.ww * sk_RTAdjust.yw, 0.0, gl_Posi…
|
D | NoFragCoordsPosRT.glsl | 7 …gl_Position = vec4(gl_Position.xy * sk_RTAdjust.xz + gl_Position.ww * sk_RTAdjust.yw, 0.0, gl_Posi…
|
D | NormalizationVert.metal | 17 …_out.sk_Position = float4(_out.sk_Position.xy * _uniforms.sk_RTAdjust.xz + _out.sk_Position.ww * _…
|
D | NoFragCoordsPosRT.metal | 18 …_out.sk_Position = float4(_out.sk_Position.xy * _uniforms.sk_RTAdjust.xz + _out.sk_Position.ww * _…
|
D | SwizzleOpt.glsl | 30 v.zyx = vec3(v.ww, 1.0);
|
/third_party/openssl/test/ |
D | testsid.pem | 13 OLvn96IVCTAF78rudPmJHfSCl++NFmg0yu7DPyuXf8YJfA6j8/kFueanK2B1y/ww
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrExtension.td | 95 "movs{ww|x}\t{$src, $dst|$dst, $src}", 98 "movz{ww|x}\t{$src, $dst|$dst, $src}", 102 "movs{ww|x}\t{$src, $dst|$dst, $src}", 105 "movz{ww|x}\t{$src, $dst|$dst, $src}",
|
/third_party/optimized-routines/math/tools/ |
D | remez.jl | 1248 ww = run(w,x,y) 1249 if !isfinite(ww) 1251 ") returned non-finite value " * string(ww)) 1253 return ww
|