Home
last modified time | relevance | path

Searched refs:ok (Results 1 – 25 of 3264) sorted by relevance

12345678910>>...131

/third_party/openssl/test/recipes/
D25-test_verify.t35 ok(verify("ee-cert", "sslserver", ["root-cert"], ["ca-cert"]),
39 ok(!verify("ee-cert", "sslserver", [qw(root-nonca)], [qw(ca-cert)]),
41 ok(!verify("ee-cert", "sslserver", [qw(nroot+serverAuth)], [qw(ca-cert)]),
43 ok(!verify("ee-cert", "sslserver", [qw(nroot+anyEKU)], [qw(ca-cert)]),
45 ok(!verify("ee-cert", "sslserver", [qw(root-cert2)], [qw(ca-cert)]),
47 ok(!verify("ee-cert", "sslserver", [qw(root-name2)], [qw(ca-cert)]),
52 ok(verify("ee-cert-noncrit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
54 ok(!verify("ee-cert-crit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
56 ok(verify("ee-cert-ocsp-nocheck", "", ["root-cert"], ["ca-cert"]),
61 ok(verify("ee-cert", "sslserver", [qw(sroot-cert)], [qw(ca-cert)]),
[all …]
D80-test_ssl_old.t127 ok(run(app([@reqcmd, "-config", $cnf,
133 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $CAreq, "-days", "30",
140 ok(run(app([@x509cmd, "-in", $CAcert,
146 ok(run(app([@reqcmd, "-config", $dummycnf,
152 ok(run(app([@reqcmd, "-config", $dummycnf,
157 ok(run(app([@verifycmd, "-CAfile", $CAcert, $CAcert])),
161 ok(run(app([@reqcmd, "-config", $cnf, "-section", "userreq",
167 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $Ureq, "-days", "30",
176 ok(run(app([@x509cmd,
191 ok(run(app([@genpkeycmd, "-out", $Dkey,
[all …]
D25-test_req.t46 ok( run(app([@addext_args, "-addext", $val])));
47 ok(!run(app([@addext_args, "-addext", $val, "-addext", $val])));
48 ok(!run(app([@addext_args, "-addext", $val, "-addext", $val2])));
49 ok(!run(app([@addext_args, "-addext", $val, "-addext", $val3])));
50 ok(!run(app([@addext_args, "-addext", $val2, "-addext", $val3])));
53 ok(!run(app(["openssl", "req", "-x509",
64 ok(run(app(["openssl", "req",
71 ok(run(app(["openssl", "req",
76 ok(run(app(["openssl", "req",
92 ok(!run(app(["openssl", "req",
[all …]
D03-test_fipsinstall.t83 ok(!run(app(['openssl', 'fipsinstall', '-out', 'fips.cnf', '-module',
90 ok(!run(app(['openssl', 'fipsinstall', '-in', 'dummy.tmp', '-module', $infile,
98 ok(run(app(['openssl', 'fipsinstall', '-out', 'fips.cnf', '-module', $infile,
105 ok(run(app(['openssl', 'fipsinstall', '-in', 'fips.cnf', '-module', $infile,
111 ok(replace_line_file('module-mac', '', 'fips_no_module_mac.cnf')
120 ok(replace_line_file('install-mac', '', 'fips_no_install_mac.cnf')
129 ok(replace_line_file('module-mac', '00:00:00:00:00:00',
139 ok(replace_line_file('install-mac', '00:00:00:00:00:00',
149 ok(replace_line_file('install-status', 'INCORRECT_STATUS_STRING',
160 ok(!run(app(['openssl', 'fipsinstall', '-in', 'fips.cnf', '-module', $infile,
[all …]
/third_party/skia/resources/sksl/folding/
DVectorVectorFolding.sksl7 bool ok = true;
8 ok = ok && (half4(half2(1), half2(2, 3)) + half4(5, 6, 7, 8)) == half4(6, 7, 9, 11);
9 ok = ok && (half4(8, half3(10)) - half4(1)) == half4(7, 9, 9, 9);
10 ok = ok && (half4(2) * half4(1, 2, 3, 4)) == half4(2, 4, 6, 8);
11 ok = ok && (half4(12) / half4(1, 2, 3, 4)) == half4(12, 6, 4, 3);
12 ok = ok && !(half4(1) == half4(2));
13 ok = ok && (half2(1) == half2(1, 1));
14 ok = ok && (half2(1, 1) == half2(1, 1));
15 ok = ok && !(half2(1) == half2(1, 0));
16 ok = ok && (half4(1) == half4(half2(1), half2(1)));
[all …]
DMatrixFoldingES2.sksl6 bool ok = true;
7 ok = ok && (float2x2(float2(1.0, 0.0), float2(0.0, 1.0)) ==
9 ok = ok && !(float2x2(float2(1.0, 0.0), float2(1.0, 1.0)) ==
12 ok = ok && ( float2x2(1) == float2x2(1));
13 ok = ok && !( float2x2(1) == float2x2(0));
14 ok = ok && ( float2x2(-1) == -float2x2(1));
15 ok = ok && ( float2x2(0) == -float2x2(0));
16 ok = ok && (-float2x2(-1) == float2x2(1));
17 ok = ok && (-float2x2(0) == -float2x2(-0));
19 ok = ok && (float2x2(1) == float2x2(float2(1.0, 0.0), float2(0.0, 1.0)));
[all …]
DIntFoldingES2.sksl7 bool ok = true;
9 ok = ok && (x == 34);
11 ok = ok && (x == 30);
13 ok = ok && (x == 64);
15 ok = ok && (x == 16);
17 ok = ok && (x == 1);
19 ok = ok && (x == -2);
21 ok = ok && (x == 3);
23 ok = ok && (x == -4);
25 ok = ok && (x == 5);
[all …]
DFloatFolding.sksl7 bool ok = true;
9 ok = ok && (x == 34);
11 ok = ok && (x == 30);
13 ok = ok && (x == 64);
15 ok = ok && (x == 16);
17 ok = ok && (x == 19);
19 ok = ok && (x == 1);
21 ok = ok && (x == -2);
23 ok = ok && (x == 3);
25 ok = ok && (x == -4);
[all …]
DVectorScalarFolding.sksl5 bool ok = true;
9 ok = ok && (x == half4(6, 6, 7, 8));
11 ok = ok && (x == half4(7, 9, 9, 9));
13 ok = ok && (x == half4(9, 9, 10, 10));
15 ok = ok && (x == half4(6, 6, 6, 10));
17 ok = ok && (x == half4(3, 3, 6, 10));
21 ok = ok && (x == half4(6));
25 ok = ok && (x == half4(6, 6, 7, 8));
27 ok = ok && (x == half4(-7, -9, -9, -9));
29 ok = ok && (x == half4(9, 9, 10, 10));
[all …]
/third_party/skia/resources/sksl/shared/
DNegation.sksl9 bool ok = true;
10 ok = ok && (half4(-1) == -one_splat);
11 ok = ok && (half4(-1, -1, -1, -1) == -one_splat);
12 ok = ok && (half4(-1) == -one_compound);
13 ok = ok && (half4(-1, -1, -1, -1) == -one_compound);
14 ok = ok && (-half4(1) == -one_splat);
15 ok = ok && (-half4(1, 1, 1, 1) == -one_splat);
16 ok = ok && (-half4(1) == -one_compound);
17 ok = ok && (-half4(1, 1, 1, 1) == -one_compound);
18 ok = ok && (half4(-1) == -one_compound);
[all …]
DMatricesNonsquare.sksl4 bool ok = true;
7 ok = ok && (m23 == float2x3(2, 0, 0,
10 ok = ok && (m24 == float2x4(3, 0, 0, 0,
13 ok = ok && (m32 == float3x2(4, 0,
17 ok = ok && (m34 == float3x4(5, 0, 0, 0,
21 ok = ok && (m42 == float4x2(6, 0,
26 ok = ok && (m43 == float4x3(7, 0, 0,
31 ok = ok && (m22 == float2x2(2 * 4));
33 ok = ok && (m33 == float3x3(7 * 5));
37 ok = ok && (m23 == float2x3(3, 1, 1,
[all …]
DVectorScalarMath.sksl5 bool ok = true;
11 ok = ok && (x == half4(3, 2, 2, 3));
13 ok = ok && (x == half4(-1, -1, -2, -2));
15 ok = ok && (x == half4(2, 1, 1, 2));
17 ok = ok && (x == half4(9, 9, 9, 2));
19 ok = ok && (x == half4(18, 4, 9, 2));
23 ok = ok && (x == half4(0, 5, 5, 0));
27 ok = ok && (x == half4(3, 2, 2, 3));
29 ok = ok && (x == half4(9, 9, 10, 10));
31 ok = ok && (x == half4(1, 2, 1, 2));
[all …]
DVectorToMatrixCast.sksl5 bool ok = true;
9 ok = ok && half2x2(testInputs) == half2x2(-1.25, 0, 0.75, 2.25);
10 ok = ok && half2x2(half4(1, 2, 3, 4)) == half2x2(1, 2, 3, 4);
11 ok = ok && half2x2(vec1234) == half2x2(1, 2, 3, 4);
12 ok = ok && half2x2(half4(2, 0, 0, 2)) == half2x2(2);
13 ok = ok && half2x2(half4(2)) == half2x2(2, 2, 2, 2);
15 ok = ok && float2x2(testInputs) == float2x2(-1.25, 0, 0.75, 2.25);
16 ok = ok && float2x2(half4(1, 2, 3, 4)) == float2x2(1, 2, 3, 4);
17 ok = ok && float2x2(vec1234) == float2x2(1, 2, 3, 4);
18 ok = ok && float2x2(half4(4, 0, 0, 4)) == float2x2(4);
[all …]
DMatrixToVectorCast.sksl8 bool ok = true;
10 ok = ok && half4(testMatrix2x2) == half4(1, 2, 3, 4);
11 ok = ok && half4(half2x2(1, 2, 3, 4)) == half4(1, 2, 3, 4);
12 ok = ok && half4(mat1234) == half4(1, 2, 3, 4);
13 ok = ok && half4(half2x2(2)) == half4(2, 0, 0, 2);
14 ok = ok && half4(half2x2(2, 2, 2, 2)) == half4(2);
16 ok = ok && float4(testMatrix2x2) == float4(1, 2, 3, 4);
17 ok = ok && float4(half2x2(1, 2, 3, 4)) == float4(1, 2, 3, 4);
18 ok = ok && float4(mat1234) == float4(1, 2, 3, 4);
19 ok = ok && float4(float2x2(4)) == float4(4, 0, 0, 4);
[all …]
DMatrixScalarSplat.sksl4 bool ok = true;
6 ok = ok && ((float3x3(2) + 4) == float3x3(6, 4, 4, 4, 6, 4, 4, 4, 6));
7 ok = ok && ((float3x3(2) - 4) == float3x3(-2, -4, -4, -4, -2, -4, -4, -4, -2));
8 ok = ok && ((float3x3(2) * 4) == float3x3(8));
9 ok = ok && ((float3x3(2) / 4) == float3x3(0.5));
11 ok = ok && (4 + (float3x3(2)) == float3x3(6, 4, 4, 4, 6, 4, 4, 4, 6));
12 ok = ok && (4 - (float3x3(2)) == float3x3(2, 4, 4, 4, 2, 4, 4, 4, 2));
13 ok = ok && (4 * (float3x3(2)) == float3x3(8));
14 ok = ok && (4 / (float2x2(2, 2, 2, 2)) == float2x2(2, 2, 2, 2));
16 return ok;
[all …]
DMatrices.sksl4 bool ok = true;
7 ok = ok && (m1 == float2x2(1, 2, 3, 4));
11 // ok = ok && (m2 == float2x2(5, 5, 5, 5));
14 ok = ok && (m3 == float2x2(1, 2, 3, 4));
17 ok = ok && (m4 == float2x2(6, 0, 0, 6));
20 ok = ok && (m3 == float2x2(6, 12, 18, 24));
23 ok = ok && (m5 == float2x2(4, 0, 0, 4));
26 ok = ok && (m1 == float2x2(5, 2, 3, 8));
29 ok = ok && (m7 == float2x2(5, 6, 7, 8));
32 ok = ok && (m9 == float3x3(9, 0, 0, 0, 9, 0, 0, 0, 9));
[all …]
/third_party/skia/tests/sksl/folding/
DVectorScalarFolding.glsl7 bool ok = true;
9 ok = ok && x == ivec4(6, 6, 7, 8);
11 ok = ok && x == ivec4(7, 9, 9, 9);
13 ok = ok && x == ivec4(9, 9, 10, 10);
15 ok = ok && x == ivec4(6, 6, 6, 10);
17 ok = ok && x == ivec4(3, 3, 6, 10);
19 ok = ok && x == ivec4(6);
21 ok = ok && x == ivec4(6, 6, 7, 8);
23 ok = ok && x == ivec4(-7, -9, -9, -9);
25 ok = ok && x == ivec4(9, 9, 10, 10);
[all …]
/third_party/skia/third_party/externals/expat/expat/doc/
Dok.min.css2ok-sans:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantare…
/third_party/skia/third_party/externals/libwebp/examples/
Dimg2webp.c77 int ok; in ReadImage() local
81 ok = ReadPictureWithWIC(filename, pic, 1, NULL); in ReadImage()
82 if (ok) return 1; in ReadImage()
86 ok = reader(data, data_size, pic, 1, NULL); in ReadImage()
88 return ok; in ReadImage()
92 int ok = 1; in SetLoopCount() local
100 ok = (err == WEBP_MUX_OK); in SetLoopCount()
101 if (!ok || !(features & ANIMATION_FLAG)) goto End; in SetLoopCount()
104 ok = (err == WEBP_MUX_OK); in SetLoopCount()
105 if (ok) { in SetLoopCount()
[all …]
/third_party/flutter/skia/third_party/externals/libwebp/examples/
Dimg2webp.c77 int ok; in ReadImage() local
81 ok = ReadPictureWithWIC(filename, pic, 1, NULL); in ReadImage()
82 if (ok) return 1; in ReadImage()
86 ok = reader(data, data_size, pic, 1, NULL); in ReadImage()
88 return ok; in ReadImage()
92 int ok = 1; in SetLoopCount() local
100 ok = (err == WEBP_MUX_OK); in SetLoopCount()
101 if (!ok || !(features & ANIMATION_FLAG)) goto End; in SetLoopCount()
104 ok = (err == WEBP_MUX_OK); in SetLoopCount()
105 if (ok) { in SetLoopCount()
[all …]
/third_party/typescript/tests/baselines/reference/
DextendedUnicodePlaneIdentifiers.types91 const Ɐⱱ = "ok"; // BMP
92 >Ɐⱱ : "ok"
93 >"ok" : "ok"
95 const ������ = "ok"; // SMP
96 >������ : "ok"
97 >"ok" : "ok"
99 const ������ = "ok"; // SIP
100 >������ : "ok"
101 >"ok" : "ok"
103 const ����ⱱ�� = "ok";
[all …]
DnumericIndexerConstrainsPropertyDeclarations.types15 constructor() { } // ok
17 a: string; // ok
20 b: number; // ok
23 c: () => {} // ok
26 "d": string; // ok
29 "e": number; // ok
32 1.0: string; // ok
38 "3.0": string; // ok
47 get X() { // ok
53 set X(v) { } // ok
[all …]
/third_party/skia/tests/sksl/shared/
DVectorScalarMath.glsl7 bool ok = true;
11 ok = ok && x == ivec4(3, 2, 2, 3);
13 ok = ok && x == ivec4(-1, -1, -2, -2);
15 ok = ok && x == ivec4(2, 1, 1, 2);
17 ok = ok && x == ivec4(9, 9, 9, 2);
19 ok = ok && x == ivec4(3, 0, 9, 2);
21 ok = ok && x == ivec4(0, 5, 5, 0);
23 ok = ok && x == ivec4(3, 2, 2, 3);
25 ok = ok && x == ivec4(9, 9, 10, 10);
27 ok = ok && x == ivec4(1, 2, 1, 2);
[all …]
DMatricesNonsquare.glsl6 bool ok = true;
8 ok = ok && m23 == mat2x3(2.0, 0.0, 0.0, 0.0, 2.0, 0.0);
10 ok = ok && m24 == mat2x4(3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0);
12 ok = ok && m32 == mat3x2(4.0, 0.0, 0.0, 4.0, 0.0, 0.0);
14 ok = ok && m34 == mat3x4(5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0);
16 ok = ok && m42 == mat4x2(6.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0);
18 ok = ok && m43 == mat4x3(7.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0);
20 ok = ok && m22 == mat2(8.0);
22 ok = ok && m33 == mat3(35.0);
24 ok = ok && m23 == mat2x3(3.0, 1.0, 1.0, 1.0, 3.0, 1.0);
[all …]
/third_party/node/deps/npm/test/tap/
Dpack-files-and-ignores.js33 t.ok(fileExists('include'), 'toplevel file included')
34 t.ok(fileExists('sub/include'), 'nested file included')
59 t.ok(fileExists('include'), 'unignored file included')
95 t.ok(fileExists('sub/shallow1'), 'nested ./ file included')
96 t.ok(fileExists('sub/shallow2'), 'nested / file included')
97 t.ok(fileExists('sub/sub/onelevel'), 'double-nested file included')
102 t.ok(fileExists('shallow1'), './ file included')
138 t.ok(fileExists('include'), 'unignored file included')
139 t.ok(fileExists('sub/ignore'), 'same-name file in nested dir included')
140 t.ok(fileExists('sub/include'), 'unignored nested dir file included')
[all …]

12345678910>>...131