/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_zzdummy.py | 67 zz = self.zz = zzdummy.ZzDummy(self.editor) 72 del self.zz 86 zz = self.zz 87 self.assertEqual(zz.editwin, self.editor) 88 self.assertEqual(zz.text, self.editor.text) 91 self.assertEqual(self.zz.ztext, '# ignore #') 94 self.assertEqual(self.zz.ztext, 'spam') 98 zz [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | typeParametersShouldNotBeEqual2.js | 3 var zz: Object; 10 x = zz; // Error 11 zz = x; // Ok 17 var zz;
24 x = zz; // Error
25 zz = x; // Ok
|
H A D | inferenceShouldFailOnEvolvingArrays.js | 17 let zz = []; 18 zz.push(logLength(42)); // no error; T is inferred as `any` 19 zz = logFirstLength([42]); // no error; T is inferred as `any[]`
37 var zz = [];
variable 38 zz.push(logLength(42)); // no error; T is inferred as `any`
39 zz = logFirstLength([42]); // no error; T is inferred as `any[]`
|
H A D | exportAssignClassAndModule.js | 18 var zz: Foo; variable 19 zz.x;
33 var zz;
variable 34 zz.x;
|
H A D | directDependenceBetweenTypeAliases.js | 40 type T13 = typeof zz 41 var zz: { x: T11 } 60 var zz;
variable
|
H A D | recursiveInferenceBug.js | 8 var zz = { 19 var zz = {
|
H A D | typeArgumentDefaultUsesConstraintOnCircularDefault.js | 4 let zz: Test = { foo: "abc" }; // should error on comparison with Test<string> 16 var zz = { foo: "abc" }; // should error on comparison with Test<string>
|
H A D | propertyAccess.js | 137 var zz = bothIndex['1.0']; variable 138 var zz: A; variable 279 var zz = bothIndex['1.0'];
variable 280 var zz;
variable
|
H A D | unionWithIndexSignature.js | 12 let zz = arr[1]; // Error 35 var zz = arr[1]; // Error
|
H A D | nonNullableTypes1.js | 33 let zz = this?.x; // string 68 var zz = this === null || this === void 0 ? void 0 : this.x; // string
|
H A D | inferFromGenericFunctionReturnTypes3.js | 114 let zz: Box<WinCondition> = box({ type: 'draw' }); 265 let zz = box({ type: 'draw' });
|
/third_party/skia/src/core/ |
H A D | SkPoint3.cpp | 42 double zz = z; in Length() local 43 return (float)sqrt(xx * xx + yy * yy + zz * zz); in Length() 72 double zz = fZ; in normalize() local 73 invScale = xx * xx + yy * yy + zz * zz; in normalize()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_gf2m.c | 296 BN_ULONG zz, *z; in BN_GF2m_mod_arr() local 323 zz = z[j]; in BN_GF2m_mod_arr() 336 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr() 338 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr() 345 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr() 347 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr() 354 zz = z[dN] >> d0; in BN_GF2m_mod_arr() 355 if (zz == 0) in BN_GF2m_mod_arr() 364 z[0] ^= zz; /* reduction t^0 component */ in BN_GF2m_mod_arr() 373 z[n] ^= (zz << d in BN_GF2m_mod_arr() 415 BN_ULONG x1, x0, y1, y0, zz[4]; BN_GF2m_mod_mul_arr() local [all...] |
/third_party/openssl/crypto/bn/ |
H A D | bn_gf2m.c | 297 BN_ULONG zz, *z; in BN_GF2m_mod_arr() local 324 zz = z[j]; in BN_GF2m_mod_arr() 337 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr() 339 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr() 346 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr() 348 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr() 355 zz = z[dN] >> d0; in BN_GF2m_mod_arr() 356 if (zz == 0) in BN_GF2m_mod_arr() 365 z[0] ^= zz; /* reduction t^0 component */ in BN_GF2m_mod_arr() 374 z[n] ^= (zz << d in BN_GF2m_mod_arr() 416 BN_ULONG x1, x0, y1, y0, zz[4]; BN_GF2m_mod_mul_arr() local [all...] |
/third_party/skia/tests/ |
H A D | UtilsTest.cpp | 445 auto zz{z}; in DEF_TEST() 447 for (auto [a, b, c, d, s] : zz) { in DEF_TEST() 530 auto zz = SkMakeZip(&A[0], B, C, D, S, P); in DEF_TEST() local 533 for (auto [a, b, c, d, s, p] : zz) { in DEF_TEST() 608 auto zz = SkMakeZip(A, B, C, D, S); in DEF_TEST() local 609 for (auto [i, a, b, c, d, s] : SkMakeEnumerate(zz)) { in DEF_TEST() 620 const auto& zz = SkMakeZip(A, B, C, D, S); in DEF_TEST() local 621 for (auto [i, a, b, c, d, s] : SkMakeEnumerate(zz)) { in DEF_TEST()
|
/third_party/ffmpeg/libavutil/ |
H A D | libm.h | 158 double zz = z * z; in erf() local 159 return z * (y + ff_eval_poly(p, FF_ARRAY_ELEMS(p), zz) / ff_eval_poly(q, FF_ARRAY_ELEMS(q), zz)); in erf()
|
/third_party/typescript/tests/baselines/reference/tscWatch/emit/when-module-emit-is-specified-as-node/ |
H A D | when-instead-of-filechanged-recursive-directory-watcher-is-invoked.js | 9 var zz = 10;
variable 73 var zz = 10;
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | pgen.py | 256 zz = NFAState() 258 z.addarc(zz) 263 z.addarc(zz) 264 return aa, zz
|
/third_party/mbedtls/3rdparty/everest/library/legacy/ |
H A D | Hacl_Curve25519.c | 646 uint64_t *zz; in Hacl_EC_AddAndDouble_fmonty() local 672 zz = buf + (uint32_t)20U; in Hacl_EC_AddAndDouble_fmonty() 673 Hacl_Bignum_fmul(x2, xx, zz); in Hacl_EC_AddAndDouble_fmonty() 674 Hacl_Bignum_fdifference(zz, xx); in Hacl_EC_AddAndDouble_fmonty() 676 Hacl_Bignum_fscalar(zzz, zz, scalar); in Hacl_EC_AddAndDouble_fmonty() 678 Hacl_Bignum_fmul(z2, zzz, zz); in Hacl_EC_AddAndDouble_fmonty()
|
/third_party/mbedtls/3rdparty/everest/library/ |
H A D | Hacl_Curve25519.c | 601 uint64_t *zz; in Hacl_EC_AddAndDouble_fmonty() local 627 zz = buf + (uint32_t)20U; in Hacl_EC_AddAndDouble_fmonty() 628 Hacl_Bignum_fmul(x2, xx, zz); in Hacl_EC_AddAndDouble_fmonty() 629 Hacl_Bignum_fdifference(zz, xx); in Hacl_EC_AddAndDouble_fmonty() 631 Hacl_Bignum_fscalar(zzz, zz, scalar); in Hacl_EC_AddAndDouble_fmonty() 633 Hacl_Bignum_fmul(z2, zzz, zz); in Hacl_EC_AddAndDouble_fmonty()
|
/third_party/lzma/C/ |
H A D | LzmaEnc.c | 178 #define BSR2_RET(pos, res) { unsigned long zz; _BitScanReverse(&zz, (pos)); zz--; \
179 res = (zz + zz) + (pos >> zz); }
188 #define BSR2_RET(pos, res) { unsigned zz = 30 - MY_clz(pos); \
189 res = (zz + zz) + (pos >> zz); }
[all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | APFloat.cpp | 4019 APFloat zz = aa; 4020 Status |= zz.add(cc, RM); 4022 // Floats[1] = a - z + c + zz; 4026 Status |= Floats[1].add(zz, RM); 4028 // Floats[1] = c - z + a + zz; 4032 Status |= Floats[1].add(zz, RM); 4039 // zz = q + c + (a - (q + z)) + aa + cc; 4041 auto zz = q; 4042 Status |= zz.add(c, RM); 4046 Status |= zz [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_xfade.c | 435 const int zz = zx % width + width * (zx < 0); \ 436 dst[x] = (zx >= 0) && (zx < width) ? xf1[zz] : xf0[zz]; \ 468 const int zz = zx % width + width * (zx < 0); \ 469 dst[x] = (zx >= 0) && (zx < width) ? xf1[zz] : xf0[zz]; \ 497 const int zz = zy % height + height * (zy < 0); \ 498 const type *xf0 = (const type *)(a->data[p] + zz * a->linesize[p]); \ 499 const type *xf1 = (const type *)(b->data[p] + zz * b->linesize[p]); \ 528 const int zz [all...] |
/third_party/toybox/toys/pending/ |
H A D | awk.c | 4170 struct zstring *zz = to_str(STKP - nargs + 1)->vst; in interpx() local 4171 int nchars = utf8cnt(zz->str, zz->size); // number of utf8 codepoints in interpx() 4176 mm = bytesinutf8(zz->str, zz->size, mm); in interpx() 4177 nn = bytesinutf8(zz->str + mm, zz->size - mm, nn); in interpx() 4178 struct zstring *zzz = new_zstring(zz->str + mm, nn); in interpx() 4217 zz = zstring_update(0, zzlen, "", 0); in interpx() 4218 char *p = z->str, *e = z->str + z->size, *q = zz in interpx() [all...] |
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/ |
H A D | CubeActivity.java | 84 zz = x*v.y - y*v.x; in cross() 85 x = xx; y = yy; z = zz; in cross()
|