Home
last modified time | relevance | path

Searched full:m (Results 1 – 25 of 9859) sorted by relevance

12345678910>>...395

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dtransform_args.h42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
58 #define ABSL_INTERNAL_TRANSFORM_ARGS(m, ...) \ argument
61 (m, __VA_ARGS__)
63 #define ABSL_INTERNAL_TRANSFORM_ARGS1(m, a0) m(a0) argument
65 #define ABSL_INTERNAL_TRANSFORM_ARGS2(m, a0, a1) m(a0), m(a1) argument
67 #define ABSL_INTERNAL_TRANSFORM_ARGS3(m, a0, a1, a2) m(a0), m(a1), m(a2) argument
69 #define ABSL_INTERNAL_TRANSFORM_ARGS4(m, a0, a1, a2, a3) \ argument
70 m(a0), m(a1), m(a2), m(a3)
72 #define ABSL_INTERNAL_TRANSFORM_ARGS5(m, a0, a1, a2, a3, a4) \ argument
73 m(a0), m(a1), m(a2), m(a3), m(a4)
[all …]
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Dview.js.test.cjs10 green@1.0.0 | ACME | deps: 2 | versions: …
13 DEPRECATED!! - true
15 keywords:,colors, green, crayola
17 bin:,green
20 .tarball:,http://hm.green.com/1.0.0.tgz
21 .shasum:,123
22 .integrity:,---
23 .unpackedSize:,1.0 GB
26 red: 1.0.0
27 yellow: 1.0.0
[all …]
/third_party/typescript/tests/baselines/reference/
DconstDeclarations-access3.types2 module M {
3 >M : typeof M
11 M.x = 1;
12 >M.x = 1 : 1
13 >M.x : any
14 >M : typeof M
18 M.x += 2;
19 >M.x += 2 : any
20 >M.x : any
21 >M : typeof M
[all …]
DconstDeclarations-access4.types2 declare module M {
3 >M : typeof M
10 M.x = 1;
11 >M.x = 1 : 1
12 >M.x : any
13 >M : typeof M
17 M.x += 2;
18 >M.x += 2 : any
19 >M.x : any
20 >M : typeof M
[all …]
DconstDeclarations-access5.types3 import m = require('constDeclarations_access_1');
4 >m : typeof m
7 m.x = 1;
8 >m.x = 1 : 1
9 >m.x : any
10 >m : typeof m
14 m.x += 2;
15 >m.x += 2 : any
16 >m.x : any
17 >m : typeof m
[all …]
DconstDeclarations-access5.symbols3 import m = require('constDeclarations_access_1');
4 >m : Symbol(m, Decl(constDeclarations_access_2.ts, 0, 0))
7 m.x = 1;
8 >m.x : Symbol(m.x, Decl(constDeclarations_access_1.ts, 0, 12))
9 >m : Symbol(m, Decl(constDeclarations_access_2.ts, 0, 0))
10 >x : Symbol(m.x, Decl(constDeclarations_access_1.ts, 0, 12))
12 m.x += 2;
13 >m.x : Symbol(m.x, Decl(constDeclarations_access_1.ts, 0, 12))
14 >m : Symbol(m, Decl(constDeclarations_access_2.ts, 0, 0))
15 >x : Symbol(m.x, Decl(constDeclarations_access_1.ts, 0, 12))
[all …]
DconstDeclarations-access4.symbols2 declare module M {
3 >M : Symbol(M, Decl(constDeclarations-access4.ts, 0, 0))
10 M.x = 1;
11 >M.x : Symbol(M.x, Decl(constDeclarations-access4.ts, 1, 9))
12 >M : Symbol(M, Decl(constDeclarations-access4.ts, 0, 0))
13 >x : Symbol(M.x, Decl(constDeclarations-access4.ts, 1, 9))
15 M.x += 2;
16 >M.x : Symbol(M.x, Decl(constDeclarations-access4.ts, 1, 9))
17 >M : Symbol(M, Decl(constDeclarations-access4.ts, 0, 0))
18 >x : Symbol(M.x, Decl(constDeclarations-access4.ts, 1, 9))
[all …]
DconstDeclarations-access3.symbols2 module M {
3 >M : Symbol(M, Decl(constDeclarations-access3.ts, 0, 0))
10 M.x = 1;
11 >M.x : Symbol(M.x, Decl(constDeclarations-access3.ts, 1, 16))
12 >M : Symbol(M, Decl(constDeclarations-access3.ts, 0, 0))
13 >x : Symbol(M.x, Decl(constDeclarations-access3.ts, 1, 16))
15 M.x += 2;
16 >M.x : Symbol(M.x, Decl(constDeclarations-access3.ts, 1, 16))
17 >M : Symbol(M, Decl(constDeclarations-access3.ts, 0, 0))
18 >x : Symbol(M.x, Decl(constDeclarations-access3.ts, 1, 16))
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DMatrix.cpp42 const Matrix &M = *this; in operator -() local
44 return Matrix(-M(1, 1), -M(1, 2), -M(1, 3), -M(1, 4), in operator -()
45 -M(2, 1), -M(2, 2), -M(2, 3), -M(2, 4), in operator -()
46 -M(3, 1), -M(3, 2), -M(3, 3), -M(3, 4), in operator -()
47 -M(4, 1), -M(4, 2), -M(4, 3), -M(4, 4)); in operator -()
52 const Matrix &M = *this; in operator !() local
55 float M3344 = M(3, 3) * M(4, 4) - M(4, 3) * M(3, 4); in operator !()
56 float M2344 = M(2, 3) * M(4, 4) - M(4, 3) * M(2, 4); in operator !()
57 float M2334 = M(2, 3) * M(3, 4) - M(3, 3) * M(2, 4); in operator !()
58 float M3244 = M(3, 2) * M(4, 4) - M(4, 2) * M(3, 4); in operator !()
[all …]
DMatrix.hpp28 Matrix(const float m[16]);
29 Matrix(const float m[4][4]);
40 float m[4][4]; member
64 friend bool operator==(const Matrix &M, const Matrix &N);
65 friend bool operator!=(const Matrix &M, const Matrix &N);
67 friend Matrix operator+(const Matrix &M, const Matrix &N);
68 friend Matrix operator-(const Matrix &M, const Matrix &N);
69 friend Matrix operator*(float s, const Matrix &M);
70 friend Matrix operator*(const Matrix &M, const Matrix &N);
71 friend Matrix operator/(const Matrix &M, float s);
[all …]
/third_party/skia/src/gpu/gl/egl/
DGrGLMakeEGLInterface.cpp21 #define M(X) if (0 == strcmp(#X, name)) { return (GrGLFuncPtr) X; } in egl_get_gl_proc() macro
22 M(eglGetCurrentDisplay) in egl_get_gl_proc()
23 M(eglQueryString) in egl_get_gl_proc()
24 M(glActiveTexture) in egl_get_gl_proc()
25 M(glAttachShader) in egl_get_gl_proc()
26 M(glBindAttribLocation) in egl_get_gl_proc()
27 M(glBindBuffer) in egl_get_gl_proc()
28 M(glBindFramebuffer) in egl_get_gl_proc()
29 M(glBindRenderbuffer) in egl_get_gl_proc()
30 M(glBindTexture) in egl_get_gl_proc()
[all …]
/third_party/skia/src/core/
DSkRasterPipeline.h28 * combinatoric: {N dst formats} x {M source formats} x {K mask formats} x {C transfer modes} ...
39 #define SK_RASTER_PIPELINE_STAGES(M) \ argument
40 M(callback) \
41 M(move_src_dst) M(move_dst_src) M(swap_src_dst) \
42 M(clamp_0) M(clamp_1) M(clamp_a) M(clamp_gamut) \
43 M(unpremul) M(premul) M(premul_dst) \
44 M(force_opaque) M(force_opaque_dst) \
45 M(set_rgb) M(unbounded_set_rgb) M(swap_rb) M(swap_rb_dst) \
46 M(black_color) M(white_color) \
47 M(uniform_color) M(unbounded_uniform_color) M(uniform_color_dst) \
[all …]
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/
Dexplain-dep.js.test.cjs25 bundle-of-joy@1.0.0 bundled
26 node_modules/bundle-of-joy
27 bundled prod-dep@"1.x" from the root project
37 bundle-of-joy@1.0.0 bundled
38 node_modules/bundle-of-joy
47 deep-dev@2.3.4 dev
48 node_modules/deep-dev
49 deep-dev@"2.x" from metadev@3.4.5
50 node_modules/dev/node_modules/metadev
51 metadev@"3.x" from topdev@4.5.6
[all …]
Dexplain-eresolve.js.test.cjs9 While resolving: project@1.2.3
10 Found: @isaacs/testing-peer-dep-conflict-chain-d@2.0.0
11 node_modules/@isaacs/testing-peer-dep-conflict-chain-d
12 @isaacs/testing-peer-dep-conflict-chain-d@"2" from the root project
15 … @isaacs/testing-peer-dep-conflict-chain-d@"1" from @isaacs/testing-pee…
16 node_modules/@isaacs/testing-peer-dep-conflict-chain-c
17 @isaacs/testing-peer-dep-conflict-chain-c@"1" from the root project
51 While resolving: project@1.2.3
52 Found: @isaacs/testing-peer-dep-conflict-chain-d@2.0.0
53 node_modules/@isaacs/testing-peer-dep-conflict-chain-d
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
Dmatrix_inverse.inl7 GLM_FUNC_QUALIFIER tmat3x3<T, P> affineInverse(tmat3x3<T, P> const & m) argument
9 tmat2x2<T, P> const Inv(inverse(tmat2x2<T, P>(m)));
14 tvec3<T, P>(-Inv * tvec2<T, P>(m[2]), static_cast<T>(1)));
18 GLM_FUNC_QUALIFIER tmat4x4<T, P> affineInverse(tmat4x4<T, P> const & m) argument
20 tmat3x3<T, P> const Inv(inverse(tmat3x3<T, P>(m)));
26 tvec4<T, P>(-Inv * tvec3<T, P>(m[3]), static_cast<T>(1)));
30 GLM_FUNC_QUALIFIER tmat2x2<T, P> inverseTranspose(tmat2x2<T, P> const & m) argument
32 T Determinant = m[0][0] * m[1][1] - m[1][0] * m[0][1];
35 + m[1][1] / Determinant,
36 - m[0][1] / Determinant,
[all …]
/third_party/protobuf/ruby/tests/
Dbasic_proto2.rb37 m = TestMessage.new
38 assert !m.has_optional_int32?
39 assert !TestMessage.descriptor.lookup('optional_int32').has?(m)
40 assert !m.has_optional_int64?
41 assert !TestMessage.descriptor.lookup('optional_int64').has?(m)
42 assert !m.has_optional_uint32?
43 assert !TestMessage.descriptor.lookup('optional_uint32').has?(m)
44 assert !m.has_optional_uint64?
45 assert !TestMessage.descriptor.lookup('optional_uint64').has?(m)
46 assert !m.has_optional_bool?
[all …]
Dcommon_tests.rb16 m = proto_module::TestMessage.new
17 assert m.optional_int32 == 0
18 assert m.optional_int64 == 0
19 assert m.optional_uint32 == 0
20 assert m.optional_uint64 == 0
21 assert m.optional_bool == false
22 assert m.optional_float == 0.0
23 assert m.optional_double == 0.0
24 assert m.optional_string == ""
25 assert m.optional_bytes == ""
[all …]
/third_party/openssl/test/recipes/10-test_bn_data/
Dbnmod.txt8 # These test vectors satisfy A * B = ModMul (mod M) and 0 <= ModMul < M.
16 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
21 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
26 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
31 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
36 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
41 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
46 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
51 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
56 M = c462c7cdd79b7604246a0cd97c017700feb25908656b4733353af8119ecfa0212e4bd24304edd566adb5c1e9daa4089…
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders-msl/comp/
Dinverse.comp41 float4x4 spvInverse4x4(float4x4 m)
46 …adj[0][0] = spvDet3x3(m[1][1], m[1][2], m[1][3], m[2][1], m[2][2], m[2][3], m[3][1], m[3][2], m[3…
47 …adj[0][1] = -spvDet3x3(m[0][1], m[0][2], m[0][3], m[2][1], m[2][2], m[2][3], m[3][1], m[3][2], m[3…
48 …adj[0][2] = spvDet3x3(m[0][1], m[0][2], m[0][3], m[1][1], m[1][2], m[1][3], m[3][1], m[3][2], m[3…
49 …adj[0][3] = -spvDet3x3(m[0][1], m[0][2], m[0][3], m[1][1], m[1][2], m[1][3], m[2][1], m[2][2], m[2…
51 …adj[1][0] = -spvDet3x3(m[1][0], m[1][2], m[1][3], m[2][0], m[2][2], m[2][3], m[3][0], m[3][2], m[3…
52 …adj[1][1] = spvDet3x3(m[0][0], m[0][2], m[0][3], m[2][0], m[2][2], m[2][3], m[3][0], m[3][2], m[3…
53 …adj[1][2] = -spvDet3x3(m[0][0], m[0][2], m[0][3], m[1][0], m[1][2], m[1][3], m[3][0], m[3][2], m[3…
54 …adj[1][3] = spvDet3x3(m[0][0], m[0][2], m[0][3], m[1][0], m[1][2], m[1][3], m[2][0], m[2][2], m[2…
56 …adj[2][0] = spvDet3x3(m[1][0], m[1][1], m[1][3], m[2][0], m[2][1], m[2][3], m[3][0], m[3][1], m[3…
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl/comp/
Dinverse.comp8 float2x2 spvInverse(float2x2 m)
13 adj[0][0] = m[1][1];
14 adj[0][1] = -m[0][1];
16 adj[1][0] = -m[1][0];
17 adj[1][1] = m[0][0];
20 float det = (adj[0][0] * m[0][0]) + (adj[0][1] * m[1][0]);
24 return (det != 0.0f) ? (adj * (1.0f / det)) : m;
35 float3x3 spvInverse(float3x3 m)
40 adj[0][0] = spvDet2x2(m[1][1], m[1][2], m[2][1], m[2][2]);
41 adj[0][1] = -spvDet2x2(m[0][1], m[0][2], m[2][1], m[2][2]);
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders-hlsl/comp/
Dinverse.comp8 float2x2 spvInverse(float2x2 m)
13 adj[0][0] = m[1][1];
14 adj[0][1] = -m[0][1];
16 adj[1][0] = -m[1][0];
17 adj[1][1] = m[0][0];
20 float det = (adj[0][0] * m[0][0]) + (adj[0][1] * m[1][0]);
24 return (det != 0.0f) ? (adj * (1.0f / det)) : m;
35 float3x3 spvInverse(float3x3 m)
40 adj[0][0] = spvDet2x2(m[1][1], m[1][2], m[2][1], m[2][2]);
41 adj[0][1] = -spvDet2x2(m[0][1], m[0][2], m[2][1], m[2][2]);
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/comp/
Dinverse.comp41 float4x4 spvInverse4x4(float4x4 m)
46 …adj[0][0] = spvDet3x3(m[1][1], m[1][2], m[1][3], m[2][1], m[2][2], m[2][3], m[3][1], m[3][2], m[3…
47 …adj[0][1] = -spvDet3x3(m[0][1], m[0][2], m[0][3], m[2][1], m[2][2], m[2][3], m[3][1], m[3][2], m[3…
48 …adj[0][2] = spvDet3x3(m[0][1], m[0][2], m[0][3], m[1][1], m[1][2], m[1][3], m[3][1], m[3][2], m[3…
49 …adj[0][3] = -spvDet3x3(m[0][1], m[0][2], m[0][3], m[1][1], m[1][2], m[1][3], m[2][1], m[2][2], m[2…
51 …adj[1][0] = -spvDet3x3(m[1][0], m[1][2], m[1][3], m[2][0], m[2][2], m[2][3], m[3][0], m[3][2], m[3…
52 …adj[1][1] = spvDet3x3(m[0][0], m[0][2], m[0][3], m[2][0], m[2][2], m[2][3], m[3][0], m[3][2], m[3…
53 …adj[1][2] = -spvDet3x3(m[0][0], m[0][2], m[0][3], m[1][0], m[1][2], m[1][3], m[3][0], m[3][2], m[3…
54 …adj[1][3] = spvDet3x3(m[0][0], m[0][2], m[0][3], m[1][0], m[1][2], m[1][3], m[2][0], m[2][2], m[2…
56 …adj[2][0] = spvDet3x3(m[1][0], m[1][1], m[1][3], m[2][0], m[2][1], m[2][3], m[3][0], m[3][1], m[3…
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_matrix.inl28 GLM_FUNC_QUALIFIER static tmat2x2<T, P> call(tmat2x2<T, P> const & m)
31 result[0][0] = m[0][0];
32 result[0][1] = m[1][0];
33 result[1][0] = m[0][1];
34 result[1][1] = m[1][1];
42 GLM_FUNC_QUALIFIER static tmat3x2<T, P> call(tmat2x3<T, P> const & m)
45 result[0][0] = m[0][0];
46 result[0][1] = m[1][0];
47 result[1][0] = m[0][1];
48 result[1][1] = m[1][1];
[all …]
/third_party/node/test/fixtures/test-runner/output/
Ddefault_output.snapshot1 [32m✔ should pass [90m(*ms)[39m[39m
2 [31m✖ should fail [90m(*ms)[39m[39m
4 *[39m
5 *[39m
6 *[39m
7 *[39m
8 *[39m
9 *[39m
10 *[39m
12 [90m﹣ should skip [90m(*ms)[39m # SKIP[39m
[all …]
/third_party/protobuf/php/tests/
DGeneratedClassTest.php36 $m = new TestMessage();
37 $m->setOptionalInt32(1);
38 $this->assertSame(1, $m->getOptionalInt32());
47 $m = new TestMessage();
50 $m->setOptionalInt32(MAX_INT32);
51 $this->assertSame(MAX_INT32, $m->getOptionalInt32());
52 $m->setOptionalInt32(MIN_INT32);
53 $this->assertSame(MIN_INT32, $m->getOptionalInt32());
56 $m->setOptionalInt32(1.1);
57 $this->assertSame(1, $m->getOptionalInt32());
[all …]

12345678910>>...395