Home
last modified time | relevance | path

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

12345678910>>...43

/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 …]
Dsmmintrin.h59 #define _mm_round_ps(X, M) __extension__ ({ \ argument
62 #define _mm_round_ss(X, Y, M) __extension__ ({ \ argument
66 #define _mm_round_pd(X, M) __extension__ ({ \ argument
69 #define _mm_round_sd(X, Y, M) __extension__ ({ \ argument
74 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \ argument
80 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \ argument
108 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \ argument
134 #define _mm_dp_ps(X, Y, M) __extension__ ({ \ argument
138 #define _mm_dp_pd(X, Y, M) __extension__ ({\ argument
270 #define _mm_test_mix_ones_zeros(M, V) _mm_testnzc_si128((M), (V)) argument
[all …]
/external/vixl/test/
Dtest-disasm-a64.cc2853 #define DISASM_INST(M, S) \ in TEST() argument
2875 #define DISASM_INST(M, S) \ in TEST() argument
2942 #define DISASM_INST(M, S) \ in TEST() argument
2962 #define DISASM_INST(M, S) \ in TEST() argument
3583 #define DISASM_INST(M, S) \ in TEST() argument
3588 #define DISASM_INST(M, S) \ in TEST() argument
3593 #define DISASM_INST(M, S) \ in TEST() argument
3598 #define DISASM_INST(M, S) \ in TEST() argument
3603 #define DISASM_INST(M, S) \ in TEST() argument
3608 #define DISASM_INST(M, S) \ in TEST() argument
[all …]
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.h98 void addModule(std::unique_ptr<Module> M) { in addModule()
102 bool removeModule(Module *M) { in removeModule()
107 bool hasModuleBeenAddedButNotLoaded(Module *M) { in hasModuleBeenAddedButNotLoaded()
111 bool hasModuleBeenLoaded(Module *M) { in hasModuleBeenLoaded()
117 bool hasModuleBeenFinalized(Module *M) { in hasModuleBeenFinalized()
121 bool ownsModule(Module* M) { in ownsModule()
126 void markModuleAsLoaded(Module *M) { in markModuleAsLoaded()
140 void markModuleAsFinalized(Module *M) { in markModuleAsFinalized()
160 Module *M = *I; in markAllLoadedModulesAsFinalized() local
174 Module *M = *I; in freeModulePtrSet() local
[all …]
/external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
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
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
/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/vulkan-validation-layers/demos/
Dlinmath.h123 static inline void mat4x4_identity(mat4x4 M) { in mat4x4_identity()
129 static inline void mat4x4_dup(mat4x4 M, mat4x4 N) { in mat4x4_dup()
135 static inline void mat4x4_row(vec4 r, mat4x4 M, int i) { in mat4x4_row()
140 static inline void mat4x4_col(vec4 r, mat4x4 M, int i) { in mat4x4_col()
145 static inline void mat4x4_transpose(mat4x4 M, mat4x4 N) { in mat4x4_transpose()
151 static inline void mat4x4_add(mat4x4 M, mat4x4 a, mat4x4 b) { in mat4x4_add()
156 static inline void mat4x4_sub(mat4x4 M, mat4x4 a, mat4x4 b) { in mat4x4_sub()
161 static inline void mat4x4_scale(mat4x4 M, mat4x4 a, float k) { in mat4x4_scale()
166 static inline void mat4x4_scale_aniso(mat4x4 M, mat4x4 a, float x, float y, in mat4x4_scale_aniso()
176 static inline void mat4x4_mul(mat4x4 M, mat4x4 a, mat4x4 b) { in mat4x4_mul()
[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
Dcopy-assign-synthesis.cpp20 struct M { struct
21 M() : M1(10), M2(11) , auM1(12) {} in M() function
22 int M1; argument
23 int M2; argument
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2); in pr() argument
28 int auM1; argument
Dcopy-assign-synthesis-1.cpp24 struct M { struct
25 M() : M1(10), M2(11) , auM1(12) {} in M() function
26 int M1; argument
27 int M2; argument
29 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2); in pr() argument
32 int auM1; argument
/external/libcxx/test/std/containers/associative/multiset/
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
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
/external/libcxx/test/std/containers/associative/set/
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
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
/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/lib/Transforms/Utils/
DBuildLibCalls.cpp41 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrLen() local
66 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrChr() local
90 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrNCmp() local
117 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrCpy() local
140 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrNCpy() local
167 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitMemCpyChk() local
191 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitMemChr() local
213 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitMemCmp() local
257 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitUnaryFloatFnCall() local
278 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitBinaryFloatFnCall() local
[all …]
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITTestBase.h49 Function *startFunction(Module *M, StringRef Name) { in startFunction()
67 Function *insertSimpleCallFunction(Module *M, Function *Callee) { in insertSimpleCallFunction()
83 Function *insertMainFunction(Module *M, uint32_t returnCode) { in insertMainFunction()
110 Function *insertExternalReferenceToFunction(Module *M, StringRef Name) { in insertExternalReferenceToFunction()
118 Function *insertExternalReferenceToFunction(Module *M, StringRef Name, in insertExternalReferenceToFunction()
127 Function *insertExternalReferenceToFunction(Module *M, Function *Func) { in insertExternalReferenceToFunction()
136 GlobalVariable *insertGlobalInt32(Module *M, in insertGlobalInt32()
312 void createJIT(std::unique_ptr<Module> M) { in createJIT()
342 std::unique_ptr<Module> M; variable
/external/llvm/tools/verify-uselistorder/
Dverify-uselistorder.cpp175 std::unique_ptr<Module> M = parseAssemblyFile(Filename, Err, Context); in readAssembly() local
181 ValueMapping::ValueMapping(const Module &M) { in ValueMapping()
254 static void debugValue(const ValueMapping &M, unsigned I, StringRef Desc) { in debugValue()
300 const ValueMapping &M) { in matches()
340 static void verifyAfterRoundTrip(const Module &M, in verifyAfterRoundTrip()
350 static void verifyBitcodeUseListOrder(const Module &M) { in verifyBitcodeUseListOrder()
362 static void verifyAssemblyUseListOrder(const Module &M) { in verifyAssemblyUseListOrder()
374 static void verifyUseListOrder(const Module &M) { in verifyUseListOrder()
458 static void changeUseLists(Module &M, Changer changeValueUseList) { in changeUseLists()
507 static void shuffleUseLists(Module &M, unsigned SeedOffset) { in shuffleUseLists()
[all …]
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/
Dcount.pass.cpp27 typedef std::multimap<int, double> M; in main() typedef
61 … typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M; in main() typedef
97 typedef std::multimap<int, double, std::less<>> M; in main() typedef
145 typedef std::multimap<PC, double, std::less<>> M; in main() typedef
/external/llvm/utils/TableGen/
DDAGISelMatcher.h105 bool isEqual(const Matcher *M) const { in isEqual()
185 virtual bool isContradictoryImpl(const Matcher *M) const { return false; } in isContradictoryImpl()
230 bool isEqualImpl(const Matcher *M) const override { return false; } in isEqualImpl()
257 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
292 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
311 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
330 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
351 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
371 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
394 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
[all …]
/external/llvm/lib/IR/
DDebugInfo.cpp99 void DebugInfoFinder::InitializeTypeMap(const Module &M) { in InitializeTypeMap()
107 void DebugInfoFinder::processModule(const Module &M) { in processModule()
133 else if (auto *M = dyn_cast<DIModule>(Entity)) in processModule() local
140 void DebugInfoFinder::processLocation(const Module &M, const DILocation *Loc) { in processLocation()
193 } else if (auto *M = dyn_cast<DIModule>(Scope)) { in processScope() local
212 void DebugInfoFinder::processDeclare(const Module &M, in processDeclare()
229 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { in processValue()
318 bool llvm::StripDebugInfo(Module &M) { in StripDebugInfo()
360 unsigned llvm::getDebugMetadataVersionFromModule(const Module &M) { in getDebugMetadataVersionFromModule()
/external/llvm/tools/lli/
DOrcLazyJIT.cpp78 return [](std::unique_ptr<Module> M) { return M; }; in createDebugDumper()
81 return [](std::unique_ptr<Module> M) { in createDebugDumper()
100 return [](std::unique_ptr<Module> M) { in createDebugDumper()
108 return [](std::unique_ptr<Module> M) { in createDebugDumper()
133 int llvm::runOrcLazyJIT(std::unique_ptr<Module> M, int ArgC, char* ArgV[]) { in runOrcLazyJIT()

12345678910>>...43