Home
last modified time | relevance | path

Searched defs:M (Results 1 – 25 of 1452) sorted by relevance

12345678910>>...59

/external/harfbuzz_ng/src/
Dhb-mutex-private.hh57 #define hb_mutex_impl_init(M) InitializeCriticalSectionEx (M, 0, 0) argument
59 #define hb_mutex_impl_init(M) InitializeCriticalSection (M) argument
61 #define hb_mutex_impl_lock(M) EnterCriticalSection (M) argument
62 #define hb_mutex_impl_unlock(M) LeaveCriticalSection (M) argument
63 #define hb_mutex_impl_finish(M) DeleteCriticalSection (M) argument
71 #define hb_mutex_impl_init(M) pthread_mutex_init (M, NULL) argument
72 #define hb_mutex_impl_lock(M) pthread_mutex_lock (M) argument
73 #define hb_mutex_impl_unlock(M) pthread_mutex_unlock (M) argument
74 #define hb_mutex_impl_finish(M) pthread_mutex_destroy (M) argument
89 #define hb_mutex_impl_init(M) *(M) = 0 argument
[all …]
/external/clang/lib/Headers/
Davx512erintrin.h36 #define _mm512_mask_exp2a23_round_pd(S, M, A, R) __extension__ ({ \ argument
41 #define _mm512_maskz_exp2a23_round_pd(M, A, R) __extension__ ({ \ argument
49 #define _mm512_mask_exp2a23_pd(S, M, A) \ argument
52 #define _mm512_maskz_exp2a23_pd(M, A) \ argument
60 #define _mm512_mask_exp2a23_round_ps(S, M, A, R) __extension__ ({ \ argument
65 #define _mm512_maskz_exp2a23_round_ps(M, A, R) __extension__ ({ \ argument
73 #define _mm512_mask_exp2a23_ps(S, M, A) \ argument
76 #define _mm512_maskz_exp2a23_ps(M, A) \ argument
85 #define _mm512_mask_rsqrt28_round_pd(S, M, A, R) __extension__ ({ \ argument
90 #define _mm512_maskz_rsqrt28_round_pd(M, A, R) __extension__ ({ \ argument
[all …]
/external/vixl/test/aarch64/
Dtest-disasm-aarch64.cc3114 #define DISASM_INST(M, S) \ in TEST() argument
3135 #define DISASM_INST(M, S) \ in TEST() argument
3232 #define DISASM_INST(M, S) \ in TEST() argument
3251 #define DISASM_INST(M, S) \ in TEST() argument
4243 #define DISASM_INST(M, S) \ in TEST() argument
4248 #define DISASM_INST(M, S) \ in TEST() argument
4253 #define DISASM_INST(M, S) \ in TEST() argument
4258 #define DISASM_INST(M, S) \ in TEST() argument
4263 #define DISASM_INST(M, S) \ in TEST() argument
4268 #define DISASM_INST(M, S) \ in TEST() argument
[all …]
/external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
Demplace.pass.cpp28 typedef std::multimap<int, DefaultOnly> M; in main() typedef
55 typedef std::multimap<int, Emplaceable> M; in main() typedef
78 typedef std::multimap<int, double> M; in main() typedef
89 …td::multimap<int, DefaultOnly, std::less<int>, min_allocator<std::pair<const int, DefaultOnly>>> M; in main() typedef
116 …td::multimap<int, Emplaceable, std::less<int>, min_allocator<std::pair<const int, Emplaceable>>> M; in main() typedef
139 … typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M; in main() typedef
Demplace_hint.pass.cpp28 typedef std::multimap<int, DefaultOnly> M; in main() typedef
57 typedef std::multimap<int, Emplaceable> M; in main() typedef
83 typedef std::multimap<int, double> M; in main() typedef
94 …td::multimap<int, DefaultOnly, std::less<int>, min_allocator<std::pair<const int, DefaultOnly>>> M; in main() typedef
123 …td::multimap<int, Emplaceable, std::less<int>, min_allocator<std::pair<const int, Emplaceable>>> M; in main() typedef
149 … typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M; in main() typedef
Dinsert_rv.pass.cpp29 typedef std::multimap<int, MoveOnly> M; in do_insert_rv_test() typedef
62 …edef std::multimap<int, MoveOnly, std::less<int>, min_allocator<std::pair<const int, MoveOnly>>> M; in main() typedef
66 typedef std::multimap<int, MoveOnly> M; in main() typedef
/external/libcxx/test/std/containers/associative/map/map.modifiers/
Demplace_hint.pass.cpp28 typedef std::map<int, DefaultOnly> M; in main() typedef
57 typedef std::map<int, Emplaceable> M; in main() typedef
83 typedef std::map<int, double> M; in main() typedef
94 …def std::map<int, DefaultOnly, std::less<int>, min_allocator<std::pair<const int, DefaultOnly>>> M; in main() typedef
123 …def std::map<int, Emplaceable, std::less<int>, min_allocator<std::pair<const int, Emplaceable>>> M; in main() typedef
149 … typedef std::map<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M; in main() typedef
Demplace.pass.cpp29 typedef std::map<int, DefaultOnly> M; in main() typedef
59 typedef std::map<int, Emplaceable> M; in main() typedef
85 typedef std::map<int, double> M; in main() typedef
97 …def std::map<int, DefaultOnly, std::less<int>, min_allocator<std::pair<const int, DefaultOnly>>> M; in main() typedef
127 …def std::map<int, Emplaceable, std::less<int>, min_allocator<std::pair<const int, Emplaceable>>> M; in main() typedef
153 … typedef std::map<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M; in main() typedef
/external/clang/test/SemaTemplate/
Dinstantiate-sizeof.cpp18 struct M { struct
19M() {}; // expected-note {{in instantiation of default member initializer 'M<S>::m' requested here… in M() argument
28 template struct M<S>; // expected-note {{in instantiation of member function 'M<S>::M' requested he… argument
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.h97 void addModule(std::unique_ptr<Module> M) { in addModule()
101 bool removeModule(Module *M) { in removeModule()
106 bool hasModuleBeenAddedButNotLoaded(Module *M) { in hasModuleBeenAddedButNotLoaded()
110 bool hasModuleBeenLoaded(Module *M) { in hasModuleBeenLoaded()
116 bool hasModuleBeenFinalized(Module *M) { in hasModuleBeenFinalized()
120 bool ownsModule(Module* M) { in ownsModule()
125 void markModuleAsLoaded(Module *M) { in markModuleAsLoaded()
139 void markModuleAsFinalized(Module *M) { in markModuleAsFinalized()
159 Module *M = *I; in markAllLoadedModulesAsFinalized() local
173 Module *M = *I; in freeModulePtrSet() local
[all …]
/external/clang/test/CodeGenCXX/
Dconstructor-for-array-members.cpp18 struct M { struct
19 double dM; argument
33 S MULTI_ARR[2][3][4]; argument
37 M m1; in main() argument
/external/libcxx/test/std/containers/associative/set/
Demplace_hint.pass.cpp28 typedef std::set<DefaultOnly> M; in main() typedef
46 typedef std::set<Emplaceable> M; in main() typedef
63 typedef std::set<int> M; in main() typedef
73 typedef std::set<int, std::less<int>, min_allocator<int>> M; in main() typedef
Demplace.pass.cpp28 typedef std::set<DefaultOnly> M; in main() typedef
48 typedef std::set<Emplaceable> M; in main() typedef
68 typedef std::set<int> M; in main() typedef
79 typedef std::set<int, std::less<int>, min_allocator<int>> M; in main() typedef
/external/libcxx/test/std/containers/associative/multiset/
Demplace.pass.cpp28 typedef std::multiset<DefaultOnly> M; in main() typedef
46 typedef std::multiset<Emplaceable> M; in main() typedef
63 typedef std::multiset<int> M; in main() typedef
73 typedef std::multiset<int, std::less<int>, min_allocator<int>> M; in main() typedef
Demplace_hint.pass.cpp28 typedef std::multiset<DefaultOnly> M; in main() typedef
46 typedef std::multiset<Emplaceable> M; in main() typedef
63 typedef std::multiset<int> M; in main() typedef
73 typedef std::multiset<int, std::less<int>, min_allocator<int>> M; in main() typedef
Dcount.pass.cpp27 typedef std::multiset<int> M; in main() typedef
62 typedef std::multiset<int, std::less<int>, min_allocator<int>> M; in main() typedef
98 typedef std::multiset<int, std::less<>> M; in main() typedef
131 typedef std::multiset<V, std::less<>> M; in main() typedef
/external/swiftshader/src/Renderer/
DMatrix.cpp42 const Matrix &M = *this; in operator -() local
52 const Matrix &M = *this; in operator !() local
106 const Matrix &M = *this; in operator ~() local
116 Matrix &M = *this; in operator +=() local
128 Matrix &M = *this; in operator -=() local
140 Matrix &M = *this; in operator *=() local
150 Matrix &Matrix::operator*=(const Matrix &M) in operator *=()
162 bool operator==(const Matrix &M, const Matrix &N) in operator ==()
173 bool operator!=(const Matrix &M, const Matrix &N) in operator !=()
184 Matrix operator+(const Matrix &M, const Matrix &N) in operator +()
[all …]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
Dp2.cpp9 namespace M { } namespace
14 namespace M { namespace
18 namespace M { namespace
/external/llvm/lib/Bitcode/Writer/
DBitWriter.cpp20 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { in LLVMWriteBitcodeToFile()
31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD()
39 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle()
43 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M) { in LLVMWriteBitcodeToMemoryBuffer()
/external/llvm/include/llvm/Transforms/Utils/
DFunctionImportUtils.h28 Module &M; variable
76 : M(M), ImportIndex(Index), GlobalsToImport(GlobalsToImport) { in M() function
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/
Dcount.pass.cpp28 typedef std::multimap<int, double> M; in main() typedef
62 … typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M; in main() typedef
98 typedef std::multimap<int, double, std::less<>> M; in main() typedef
146 typedef std::multimap<PC, double, std::less<>> M; in main() typedef
/external/llvm/bindings/ocaml/bitwriter/
Dbitwriter_ocaml.c25 CAMLprim value llvm_write_bitcode_file(LLVMModuleRef M, value Path) { in llvm_write_bitcode_file()
31 CAMLprim value llvm_write_bitcode_to_fd(value U, LLVMModuleRef M, value FD) { in llvm_write_bitcode_to_fd()
46 CAMLprim LLVMMemoryBufferRef llvm_write_bitcode_to_memory_buffer(LLVMModuleRef M) { in llvm_write_bitcode_to_memory_buffer()
/external/libcxx/test/std/containers/associative/map/map.ops/
Dcount.pass.cpp28 typedef std::map<int, double> M; in main() typedef
66 typedef std::map<int, double, std::less<int>, min_allocator<V>> M; in main() typedef
105 typedef std::map<int, double, std::less <>> M; in main() typedef
161 typedef std::map<PC, double, std::less<>> M; in main() typedef
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
Dinsert_const_lvalue.pass.cpp28 typedef Container M; in do_insert_cv_test() typedef
71 typedef std::unordered_map<double, int> M; in main() typedef
77 min_allocator<std::pair<const double, int>>> M; in main() typedef
/external/llvm/tools/lli/
DOrcLazyJIT.cpp53 return [](std::unique_ptr<Module> M) { return M; }; in createDebugDumper()
56 return [](std::unique_ptr<Module> M) { in createDebugDumper()
75 return [](std::unique_ptr<Module> M) { in createDebugDumper()
83 return [](std::unique_ptr<Module> M) { in createDebugDumper()
108 int llvm::runOrcLazyJIT(std::unique_ptr<Module> M, int ArgC, char* ArgV[]) { in runOrcLazyJIT()

12345678910>>...59