/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 …]
|
D | smmintrin.h | 59 #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/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/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/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 …]
|
D | Matrix.hpp | 121 Matrix &M = *this; in Matrix() local 131 Matrix &M = *this; in Matrix() local 141 Matrix &M = *this; in Matrix() local 153 Matrix &M = *this; in Matrix() local 166 Matrix &M = *this; in Matrix() local 176 Matrix &M = *this; in Matrix() local 186 Matrix &M = *this; in operator =() local
|
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
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
|
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
|
/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() argument 28 template struct M<S>; // expected-note {{in instantiation of member function 'M<S>::M' requested he… argument
|
/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
|
/external/skia/src/jumper/ |
D | SkJumper.cpp | 43 #define STAGES(M) \ argument 144 #define M(st) StageFn sk_##st; macro 158 #define M(st) case SkRasterPipeline::st: return ASM(st,aarch64); in lookup_aarch64() macro 168 #define M(st) case SkRasterPipeline::st: return ASM(st,vfp4); in lookup_vfp4() macro 182 #define M(st) case SkRasterPipeline::st: return ASM(st,hsw); in lookup_hsw() macro 194 #define M(st) case SkRasterPipeline::st: return ASM(st,avx); in lookup_avx() macro 206 #define M(st) case SkRasterPipeline::st: return ASM(st,sse41); in lookup_sse41() macro 214 #define M(st) case SkRasterPipeline::st: return ASM(st,sse2); in lookup_sse2() macro 224 #define M(st) case SkRasterPipeline::st: return sk_##st; in lookup_portable() macro
|
/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
|
D | copy-assign-synthesis.cpp | 20 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
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVValue.h | 59 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVValue() 65 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVValue() 72 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVValue() 79 SPIRVValue(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode) in SPIRVValue() 130 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, in SPIRVConstant() 138 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, float TheValue) in SPIRVConstant() 145 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, double TheValue) in SPIRVConstant() 198 SPIRVConstantEmpty(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId) in SPIRVConstantEmpty() 215 SPIRVConstantBool(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId) in SPIRVConstantBool() 233 SPIRVConstantNull(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId) in SPIRVConstantNull() [all …]
|
D | SPIRVType.h | 61 SPIRVType(SPIRVModule *M, unsigned TheWordCount, Op TheOpCode, in SPIRVType() 109 SPIRVTypeVoid(SPIRVModule *M, SPIRVId TheId) in SPIRVTypeVoid() 120 SPIRVTypeBool(SPIRVModule *M, SPIRVId TheId) in SPIRVTypeBool() 132 SPIRVTypeInt(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth, in SPIRVTypeInt() 167 SPIRVTypeFloat(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth) in SPIRVTypeFloat() 197 SPIRVTypePointer(SPIRVModule *M, SPIRVId TheId, in SPIRVTypePointer() 238 SPIRVTypeForwardPointer(SPIRVModule *M, SPIRVTypePointer *Pointer, in SPIRVTypeForwardPointer() 255 SPIRVTypeVector(SPIRVModule *M, SPIRVId TheId, SPIRVType *TheCompType, in SPIRVTypeVector() 325 SPIRVTypeOpaque(SPIRVModule *M, SPIRVId TheId, const std::string& TheName) in SPIRVTypeOpaque() 393 SPIRVTypeImage(SPIRVModule *M, SPIRVId TheId, SPIRVId TheSampledType, in SPIRVTypeImage() [all …]
|
/external/vulkan-validation-layers/demos/ |
D | linmath.h | 116 static inline void mat4x4_identity(mat4x4 M) { in mat4x4_identity() 122 static inline void mat4x4_dup(mat4x4 M, mat4x4 N) { in mat4x4_dup() 128 static inline void mat4x4_row(vec4 r, mat4x4 M, int i) { in mat4x4_row() 133 static inline void mat4x4_col(vec4 r, mat4x4 M, int i) { in mat4x4_col() 138 static inline void mat4x4_transpose(mat4x4 M, mat4x4 N) { in mat4x4_transpose() 144 static inline void mat4x4_add(mat4x4 M, mat4x4 a, mat4x4 b) { in mat4x4_add() 149 static inline void mat4x4_sub(mat4x4 M, mat4x4 a, mat4x4 b) { in mat4x4_sub() 154 static inline void mat4x4_scale(mat4x4 M, mat4x4 a, float k) { in mat4x4_scale() 159 static inline void mat4x4_scale_aniso(mat4x4 M, mat4x4 a, float x, float y, in mat4x4_scale_aniso() 169 static inline void mat4x4_mul(mat4x4 M, mat4x4 a, mat4x4 b) { in mat4x4_mul() [all …]
|
/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
|
/external/libcxx/test/std/containers/associative/set/ |
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
|
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
|
/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/lib/IR/ |
D | DebugInfo.cpp | 53 void DebugInfoFinder::processModule(const Module &M) { in processModule() 77 else if (auto *M = dyn_cast<DIModule>(Entity)) in processModule() local 86 void DebugInfoFinder::processLocation(const Module &M, const DILocation *Loc) { in processLocation() 138 } else if (auto *M = dyn_cast<DIModule>(Scope)) { in processScope() local 157 void DebugInfoFinder::processDeclare(const Module &M, in processDeclare() 173 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { in processValue() 268 bool llvm::StripDebugInfo(Module &M) { in StripDebugInfo() 290 unsigned llvm::getDebugMetadataVersionFromModule(const Module &M) { in getDebugMetadataVersionFromModule()
|
/external/llvm/utils/TableGen/ |
D | DAGISelMatcher.h | 104 bool isEqual(const Matcher *M) const { in isEqual() 172 virtual bool isContradictoryImpl(const Matcher *M) const { return false; } in isContradictoryImpl() 217 bool isEqualImpl(const Matcher *M) const override { return false; } in isEqualImpl() 242 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl() 274 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl() 290 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl() 306 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl() 324 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl() 341 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl() 361 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl() [all …]
|