/external/harfbuzz_ng/src/ |
D | hb-mutex-private.hh | 57 #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/ |
D | avx512erintrin.h | 36 #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/ |
D | test-disasm-aarch64.cc | 3114 #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/ |
D | emplace.pass.cpp | 28 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
|
D | emplace_hint.pass.cpp | 28 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
|
D | insert_rv.pass.cpp | 29 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/ |
D | emplace_hint.pass.cpp | 28 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
|
D | emplace.pass.cpp | 29 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/ |
D | instantiate-sizeof.cpp | 18 struct M { struct 19 …M() {}; // expected-note {{in instantiation of default member initializer 'M<S>::m' requested here… in M() function 28 template struct M<S>; // expected-note {{in instantiation of member function 'M<S>::M' requested he… variable
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 97 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/ |
D | constructor-for-array-members.cpp | 18 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/ |
D | emplace_hint.pass.cpp | 28 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
|
D | emplace.pass.cpp | 28 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/ |
D | emplace.pass.cpp | 28 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
|
D | emplace_hint.pass.cpp | 28 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
|
D | count.pass.cpp | 27 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/ |
D | Matrix.cpp | 42 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/ |
D | p2.cpp | 9 namespace M { } namespace 14 namespace M { namespace 18 namespace M { namespace
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitWriter.cpp | 20 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/ |
D | FunctionImportUtils.h | 28 Module &M; variable 76 : M(M), ImportIndex(Index), GlobalsToImport(GlobalsToImport) { in M() function
|
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/ |
D | count.pass.cpp | 28 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/ |
D | bitwriter_ocaml.c | 25 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/ |
D | count.pass.cpp | 28 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/ |
D | insert_const_lvalue.pass.cpp | 28 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/ |
D | OrcLazyJIT.cpp | 53 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()
|