Home
last modified time | relevance | path

Searched +full:- +full:m (Results 1 – 25 of 1428) sorted by relevance

12345678910>>...58

/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/types/internal/
Dtransform_args.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
19 // This file contains a higher-order macro that "transforms" each element of a
42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
46 // passed-in macro once for each of the additional arguments, with the
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
[all …]
/external/openscreen/third_party/abseil/src/absl/types/internal/
Dtransform_args.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
19 // This file contains a higher-order macro that "transforms" each element of a
42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
46 // passed-in macro once for each of the additional arguments, with the
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
[all …]
/external/libtextclassifier/abseil-cpp/absl/types/internal/
Dtransform_args.h7 // https://www.apache.org/licenses/LICENSE-2.0
15 // -----------------------------------------------------------------------------
17 // -----------------------------------------------------------------------------
19 // This file contains a higher-order macro that "transforms" each element of a
42 // ABSL_INTERNAL_TRANSFORM_ARGS(m, ...)
46 // passed-in macro once for each of the additional arguments, with the
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
[all …]
/external/llvm-project/llvm/test/CodeGen/ARM/
Dcmse-clear-float.ll2 ; RUN: llc %s -o - -mtriple=thumbv8m.main -mattr=+fp-armv8d16sp,+dsp | \
3 ; RUN: FileCheck %s --check-prefix=CHECK-8M --check-prefix=CHECK-8M-LE
4 ; RUN: llc %s -o - -mtriple=thumbebv8m.main -mattr=+fp-armv8d16sp,+dsp | \
5 ; RUN: FileCheck %s --check-prefix=CHECK-8M --check-prefix=CHECK-8M-BE
7 ; RUN: llc %s -o - -mtriple=thumbv8.1m.main -mattr=+fp-armv8d16sp,+dsp | \
8 ; RUN: FileCheck %s --check-prefix=CHECK-81M --check-prefix=CHECK-81M-LE
9 ; RUN: llc %s -o - -mtriple=thumbebv8.1m.main -mattr=+fp-armv8d16sp,+dsp | \
10 ; RUN: FileCheck %s --check-prefix=CHECK-81M --check-prefix=CHECK-81M-BE
11 ; RUN: llc %s -o - -mtriple=thumbv8.1m.main -mattr=+mve | \
12 ; RUN: FileCheck %s --check-prefix=CHECK-81M --check-prefix=CHECK-81M-LE
[all …]
/external/swiftshader/src/Renderer/
DMatrix.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
40 Matrix Matrix::operator-() const in operator -()
42 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 !()
[all …]
/external/ImageMagick/images/
Dbitcoin.svg3 <!-- Created with https://api.qrserver.com (QR Code API, see goQR.me/api for information) -->
6 <rect style="fill:rgb(255, 255, 255);fill-opacity:1" x="0" y="0" width="234" height="234" />
8M 6,6 l 6,0 0,6 -6,0 z M 12,6 l 6,0 0,6 -6,0 z M 18,6 l 6,0 0,6 -6,0 z M 24,6 l 6,0 0,6 -6,0 z M 3…
/external/python/cpython2/Tools/pybench/
DTuples.py18 m = t[50:]
19 m = t[:25]
20 m = t[50:55]
21 m = t[:-1]
22 m = t[1:]
23 m = t[-10:]
24 m = t[:10]
26 m = t[50:]
27 m = t[:25]
28 m = t[50:55]
[all …]
/external/llvm-project/libcxx/test/std/re/re.alg/re.alg.search/
Decma.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // REQUIRES: locale.cs_CZ.ISO8859-2
19 // match_results<BidirectionalIterator, Allocator>& m,
24 // XFAIL: linux-gnu
36 std::cmatch m; in main() local
38 assert(std::regex_search(s, m, std::regex("a"))); in main()
39 assert(m.size() == 1); in main()
40 assert(!m.empty()); in main()
[all …]
Dbasic.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // REQUIRES: locale.cs_CZ.ISO8859-2
19 // match_results<BidirectionalIterator, Allocator>& m,
24 // XFAIL: linux-gnu
36 std::cmatch m; in main() local
37 assert(!std::regex_search("a", m, std::regex())); in main()
38 assert(m.size() == 0); in main()
39 assert(m.empty()); in main()
[all …]
/external/libcxx/test/std/re/re.alg/re.alg.search/
Decma.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_search(s, m, std::regex("a"))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
Dextended.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::extended))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
Dbasic.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
38 assert(!std::regex_search("a", m, std::regex())); in main()
39 assert(m.size() == 0); in main()
40 assert(m.empty()); in main()
43 std::cmatch m; in main() local
[all …]
/external/llvm-project/libcxx/test/std/re/re.alg/re.alg.match/
Decma.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // REQUIRES: locale.cs_CZ.ISO8859-2
19 // match_results<BidirectionalIterator, Allocator>& m,
24 // XFAIL: linux-gnu
36 std::cmatch m; in main() local
38 assert(std::regex_match(s, m, std::regex("a"))); in main()
39 assert(m.size() == 1); in main()
40 assert(!m.empty()); in main()
[all …]
Dextended.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // REQUIRES: locale.cs_CZ.ISO8859-2
19 // match_results<BidirectionalIterator, Allocator>& m,
24 // XFAIL: linux-gnu
36 std::cmatch m; in main() local
38 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended))); in main()
39 assert(m.size() == 1); in main()
40 assert(!m.empty()); in main()
[all …]
Dbasic.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 // REQUIRES: locale.cs_CZ.ISO8859-2
19 // match_results<BidirectionalIterator, Allocator>& m,
24 // XFAIL: linux-gnu
36 std::cmatch m; in main() local
37 assert(!std::regex_match("a", m, std::regex())); in main()
38 assert(m.size() == 0); in main()
39 assert(m.empty()); in main()
[all …]
Dawk.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 // match_results<BidirectionalIterator, Allocator>& m,
21 // XFAIL: linux-gnu, netbsd
22 // REQUIRES: locale.cs_CZ.ISO8859-2
34 std::cmatch m; in main() local
36 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk))); in main()
37 assert(m.size() == 1); in main()
38 assert(!m.empty()); in main()
[all …]
/external/libcxx/test/std/re/re.alg/re.alg.match/
Decma.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_match(s, m, std::regex("a"))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
Dextended.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
13 // REQUIRES: locale.cs_CZ.ISO8859-2
20 // match_results<BidirectionalIterator, Allocator>& m,
25 // XFAIL: linux-gnu
37 std::cmatch m; in main() local
39 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended))); in main()
40 assert(m.size() == 1); in main()
41 assert(!m.empty()); in main()
42 assert(!m.prefix().matched); in main()
[all …]
/external/llvm-project/libcxx/test/std/containers/associative/map/map.ops/
Dlower_bound.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
28 typedef std::map<int, double> M; in main() typedef
30 typedef M::iterator R; in main()
42 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
43 R r = m.lower_bound(5); in main()
44 assert(r == m.begin()); in main()
45 r = m.lower_bound(7); in main()
46 assert(r == next(m.begin())); in main()
[all …]
/external/libcxx/test/std/containers/associative/map/map.ops/
Dlower_bound.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
29 typedef std::map<int, double> M; in main() typedef
31 typedef M::iterator R; in main()
43 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
44 R r = m.lower_bound(5); in main()
45 assert(r == m.begin()); in main()
46 r = m.lower_bound(7); in main()
47 assert(r == next(m.begin())); in main()
48 r = m.lower_bound(9); in main()
[all …]
/external/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 …]
/external/llvm-project/libcxx/test/std/containers/associative/set/
Dupper_bound.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
27 typedef std::set<int> M; in main() typedef
29 typedef M::iterator R; in main()
41 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
42 R r = m.upper_bound(5); in main()
43 assert(r == next(m.begin(), 1)); in main()
44 r = m.upper_bound(7); in main()
45 assert(r == next(m.begin(), 2)); in main()
[all …]
Dlower_bound.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
27 typedef std::set<int> M; in main() typedef
29 typedef M::iterator R; in main()
41 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
42 R r = m.lower_bound(5); in main()
43 assert(r == m.begin()); in main()
44 r = m.lower_bound(7); in main()
45 assert(r == next(m.begin())); in main()
[all …]
/external/libcxx/test/std/containers/associative/set/
Dupper_bound.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
28 typedef std::set<int> M; in main() typedef
30 typedef M::iterator R; in main()
42 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
43 R r = m.upper_bound(5); in main()
44 assert(r == next(m.begin(), 1)); in main()
45 r = m.upper_bound(7); in main()
46 assert(r == next(m.begin(), 2)); in main()
47 r = m.upper_bound(9); in main()
[all …]
Dlower_bound.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
28 typedef std::set<int> M; in main() typedef
30 typedef M::iterator R; in main()
42 M m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() local
43 R r = m.lower_bound(5); in main()
44 assert(r == m.begin()); in main()
45 r = m.lower_bound(7); in main()
46 assert(r == next(m.begin())); in main()
47 r = m.lower_bound(9); in main()
[all …]

12345678910>>...58