Home
last modified time | relevance | path

Searched refs:maskKey (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/undici/src/lib/websocket/
Dframe.js19 this.maskKey = crypto.randomBytes(4)
45 buffer[offset - 4] = this.maskKey[0]
46 buffer[offset - 3] = this.maskKey[1]
47 buffer[offset - 2] = this.maskKey[2]
48 buffer[offset - 1] = this.maskKey[3]
64 buffer[offset + i] = this.frameData[i] ^ this.maskKey[i % 4]
/third_party/skia/src/gpu/
DGrBlurUtils.cpp286 static bool compute_key_and_clip_bounds(GrUniqueKey* maskKey, in compute_key_and_clip_bounds() argument
330 GrUniqueKey::Builder builder(maskKey, kDomain, 5 + 2 + shape.unstyledKeySize(), in compute_key_and_clip_bounds()
511 GrUniqueKey maskKey; in draw_shape_with_mask_filter() local
513 if (!compute_key_and_clip_bounds(&maskKey, &boundsForClip, in draw_shape_with_mask_filter()
529 &maskRect, &maskKey); in draw_shape_with_mask_filter()
544 &maskRect, &maskKey); in draw_shape_with_mask_filter()
/third_party/skia/src/gpu/ops/
DSoftwarePathRenderer.cpp281 GrUniqueKey maskKey; in onDrawPath() local
289 GrUniqueKey::Builder builder(&maskKey, kDomain, 7 + args.fShape->unstyledKeySize(), in onDrawPath()
323 sk_sp<GrTextureProxy> proxy = fProxyProvider->findOrCreateProxyByUniqueKey(maskKey); in onDrawPath()
381 auto listener = GrMakeUniqueKeyInvalidationListener(&maskKey, in onDrawPath()
383 fProxyProvider->assignUniqueKeyToProxy(maskKey, view.asTextureProxy()); in onDrawPath()
/third_party/node/deps/undici/
Dundici.js11926 this.maskKey = crypto.randomBytes(4);
11943 buffer[offset - 4] = this.maskKey[0];
11944 buffer[offset - 3] = this.maskKey[1];
11945 buffer[offset - 2] = this.maskKey[2];
11946 buffer[offset - 1] = this.maskKey[3];
11956 buffer[offset + i] = this.frameData[i] ^ this.maskKey[i % 4];