Home
last modified time | relevance | path

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

12345678910>>...19

/external/harfbuzz_ng/src/
Dhb-mutex-private.hh51 #define hb_mutex_impl_init(M) InitializeCriticalSection (M) argument
52 #define hb_mutex_impl_lock(M) EnterCriticalSection (M) argument
53 #define hb_mutex_impl_unlock(M) LeaveCriticalSection (M) argument
54 #define hb_mutex_impl_finish(M) DeleteCriticalSection (M) argument
62 #define hb_mutex_impl_init(M) pthread_mutex_init (M, NULL) argument
63 #define hb_mutex_impl_lock(M) pthread_mutex_lock (M) argument
64 #define hb_mutex_impl_unlock(M) pthread_mutex_unlock (M) argument
65 #define hb_mutex_impl_finish(M) pthread_mutex_destroy (M) argument
80 #define hb_mutex_impl_init(M) *(M) = 0 argument
81 #define hb_mutex_impl_lock(M) HB_STMT_START { while (__sync_lock_test_and_set((M), 1)) HB_SCHED_YIE… argument
[all …]
/external/clang/test/CodeGenCXX/
Ddefault-destructor-synthesis.cpp19 struct M : Q, P { struct
31 M a; in f() argument
Dconstructor-for-array-members.cpp19 struct M { struct
20 double dM; argument
34 S MULTI_ARR[2][3][4]; argument
38 M m1; in main() argument
Dnested-base-member-access.cpp5 struct M { struct
6 M(int i){ iM = i; } in M() argument
7 int iM; argument
8 void MPR() { printf("iM = %d\n", iM); } in MPR() argument
Ddestructor-calls.cpp13 struct M : B { struct
14 M() : iM(++val) { printf("M()\n"); } in M() argument
15 int iM; argument
16 ~M() { printf("~M(%d)\n", iM); --val; } in ~M() argument
Dcopy-assign-synthesis.cpp20 struct M { struct
21 M() : M1(10), M2(11) , auM1(12) {} in M() argument
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
Dthiscall-struct-return.cpp12 struct M { struct
26 struct M __attribute__((thiscall)) Medium() const { in Medium() argument
Dcopy-assign-synthesis-1.cpp25 struct M { struct
26 M() : M1(10), M2(11) , auM1(12) {} in M() function
27 int M1; argument
28 int M2; argument
30 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2); in pr() argument
33 int auM1; argument
Ddefault-constructor-for-members.cpp14 struct M { struct
19 M m1; in main() argument
/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/unittests/ExecutionEngine/MCJIT/
DMCJITTestBase.h102 Module * M = new Module(Name, Context); in createEmptyModule() local
108 Function *startFunction(Module *M, StringRef Name) { in startFunction()
126 Function *insertSimpleCallFunction(Module *M, Function *Callee) { in insertSimpleCallFunction()
143 Function *insertMainFunction(Module *M, uint32_t returnCode) { in insertMainFunction()
169 Function *insertExternalReferenceToFunction(Module *M, StringRef Name, in insertExternalReferenceToFunction()
178 Function *insertExternalReferenceToFunction(Module *M, Function *Func) { in insertExternalReferenceToFunction()
186 GlobalVariable *insertGlobalInt32(Module *M, in insertGlobalInt32()
200 void createJIT(Module *M) { in createJIT()
239 OwningPtr<Module> M; variable
/external/llvm/lib/Bitcode/Writer/
DBitWriter.cpp18 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { in LLVMWriteBitcodeToFile()
29 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD()
37 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle()
/external/clang/lib/Headers/
Dsmmintrin.h60 #define _mm_round_ps(X, M) __extension__ ({ \ argument
64 #define _mm_round_ss(X, Y, M) __extension__ ({ \ argument
69 #define _mm_round_pd(X, M) __extension__ ({ \ argument
73 #define _mm_round_sd(X, Y, M) __extension__ ({ \ argument
79 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \ argument
84 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \ argument
110 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \ argument
129 #define _mm_dp_ps(X, Y, M) __extension__ ({ \ argument
134 #define _mm_dp_pd(X, Y, M) __extension__ ({\ argument
261 #define _mm_test_mix_ones_zeros(M, V) _mm_testnzc_si128((M), (V)) argument
[all …]
/external/clang/test/SemaCXX/
Dcompound-literal.cpp10 template <typename T> struct M { T m; }; argument
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
D3d-cube.js108 function VMulti(M, V) { argument
115 function VMulti2(M, V) { argument
134 function Translate(M, Dx, Dy, Dz) { argument
144 function RotateX(M, Phi) { argument
158 function RotateY(M, Phi) { argument
172 function RotateZ(M, Phi) { argument
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
D3d-cube.js108 function VMulti(M, V) { argument
115 function VMulti2(M, V) { argument
134 function Translate(M, Dx, Dy, Dz) { argument
144 function RotateX(M, Phi) { argument
158 function RotateY(M, Phi) { argument
172 function RotateZ(M, Phi) { argument
/external/llvm/lib/IR/
DIRBuilder.cpp28 Module &M = *BB->getParent()->getParent(); in CreateGlobalString() local
69 Module *M = BB->getParent()->getParent(); in CreateMemSet() local
89 Module *M = BB->getParent()->getParent(); in CreateMemCpy() local
113 Module *M = BB->getParent()->getParent(); in CreateMemMove() local
135 Module *M = BB->getParent()->getParent(); in CreateLifetimeStart() local
150 Module *M = BB->getParent()->getParent(); in CreateLifetimeEnd() local
/external/llvm/lib/Transforms/Utils/
DModuleUtils.cpp23 Module &M, Function *F, int Priority) { in appendToGlobalArray()
58 void llvm::appendToGlobalCtors(Module &M, Function *F, int Priority) { in appendToGlobalCtors()
62 void llvm::appendToGlobalDtors(Module &M, Function *F, int Priority) { in appendToGlobalDtors()
DBuildLibCalls.cpp40 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrLen() local
69 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrNLen() local
99 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrChr() local
125 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrNCmp() local
158 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrCpy() local
182 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrNCpy() local
209 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitMemCpyChk() local
237 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitMemChr() local
265 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitMemCmp() local
306 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitUnaryFloatFnCall() local
[all …]
/external/clang/test/Rewriter/
Drewrite-foreach-in-block.mm14 - (void)M; method
20 - (void)M { method
/external/llvm/bindings/ocaml/bitwriter/
Dbitwriter_ocaml.c27 CAMLprim value llvm_write_bitcode_file(value M, value Path) { in llvm_write_bitcode_file()
33 CAMLprim value llvm_write_bitcode_to_fd(value U, value M, value FD) { in llvm_write_bitcode_to_fd()
/external/dropbear/libtomcrypt/src/hashes/
Dmd5.c46 #define FF(a,b,c,d,M,s,t) \ argument
49 #define GG(a,b,c,d,M,s,t) \ argument
52 #define HH(a,b,c,d,M,s,t) \ argument
55 #define II(a,b,c,d,M,s,t) \ argument
85 #define FF(a,b,c,d,M,s,t) \ argument
88 #define GG(a,b,c,d,M,s,t) \ argument
91 #define HH(a,b,c,d,M,s,t) \ argument
94 #define II(a,b,c,d,M,s,t) \ argument
/external/llvm/utils/TableGen/
DDAGISelMatcher.h102 bool isEqual(const Matcher *M) const { in isEqual()
180 virtual bool isContradictoryImpl(const Matcher *M) const { return false; } in isContradictoryImpl()
225 virtual bool isEqualImpl(const Matcher *M) const { return false; } in isEqualImpl()
252 virtual bool isEqualImpl(const Matcher *M) const { return true; } in isEqualImpl()
287 virtual bool isEqualImpl(const Matcher *M) const { in isEqualImpl()
306 virtual bool isEqualImpl(const Matcher *M) const { return true; } in isEqualImpl()
325 virtual bool isEqualImpl(const Matcher *M) const { return true; } in isEqualImpl()
346 virtual bool isEqualImpl(const Matcher *M) const { in isEqualImpl()
366 virtual bool isEqualImpl(const Matcher *M) const { return true; } in isEqualImpl()
389 virtual bool isEqualImpl(const Matcher *M) const { in isEqualImpl()
[all …]
/external/stlport/src/
Dmessage_facets.h37 ~_Catalog_locale_map() { if (M) delete M; } in ~_Catalog_locale_map() local
45 map_type *M; member
111 map_type M; variable
/external/llvm/bindings/ocaml/analysis/
Danalysis_ocaml.c25 CAMLprim value llvm_verify_module(LLVMModuleRef M) { in llvm_verify_module()
51 CAMLprim value llvm_assert_valid_module(LLVMModuleRef M) { in llvm_assert_valid_module()

12345678910>>...19