/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-mutex.hh | 54 #define hb_mutex_impl_init(M) pthread_mutex_init (M, nullptr) argument 55 #define hb_mutex_impl_lock(M) pthread_mutex_lock (M) argument 56 #define hb_mutex_impl_unlock(M) pthread_mutex_unlock (M) argument 57 #define hb_mutex_impl_finish(M) pthread_mutex_destroy (M) argument 64 #define hb_mutex_impl_init(M) InitializeCriticalSectionEx (M, 0, 0) argument 66 #define hb_mutex_impl_init(M) InitializeCriticalSection (M) argument 68 #define hb_mutex_impl_lock(M) EnterCriticalSection (M) argument 69 #define hb_mutex_impl_unlock(M) LeaveCriticalSection (M) argument 70 #define hb_mutex_impl_finish(M) DeleteCriticalSection (M) argument 77 #define hb_mutex_impl_init(M) HB_STMT_START { new (M) hb_mutex_impl_t; } HB_STMT_END argument [all …]
|
/third_party/vixl/test/aarch64/ |
D | test-disasm-neon-aarch64.cc | 348 #define DISASM_INST(M, S) \ in TEST() argument 369 #define DISASM_INST(M, S) \ in TEST() argument 466 #define DISASM_INST(M, S) \ in TEST() argument 485 #define DISASM_INST(M, S) \ in TEST() argument 1480 #define DISASM_INST(M, S) \ in TEST() argument 1485 #define DISASM_INST(M, S) \ in TEST() argument 1490 #define DISASM_INST(M, S) \ in TEST() argument 1495 #define DISASM_INST(M, S) \ in TEST() argument 1500 #define DISASM_INST(M, S) \ in TEST() argument 1505 #define DISASM_INST(M, S) \ in TEST() argument [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | duplicateIdentifiersAcrossContainerBoundaries.js | 56 var M; variable 57 (function (M) { argument 65 (function (M) { argument 69 (function (M) { argument 77 (function (M) { argument 80 (function (M) { argument 88 (function (M) { argument 96 (function (M) { argument 99 (function (M) { argument 102 (function (M) { argument
|
D | collisionCodeGenModuleWithModuleChildren.js | 5 var M = 10; variable 12 class M { class 46 var M; variable 58 var M = /** @class */ (function () { class 59 function M() { class in anonymousFunction43d8aab70500.anonymousFunction43d8aab70600.M 70 function M() { class 76 (function (M) { argument 87 (function (M) { argument
|
D | collisionCodeGenModuleWithMethodChildren.js | 5 fn(M, p = x) { } argument 21 function M() { class 30 M() { method in f 36 var M; variable 42 c.prototype.fn = function (M, p) { argument 64 function M() { class 71 (function (M) { argument 75 f.prototype.M = function () { method in f
|
D | mergedDeclarations3.js | 44 (function (M) { argument 51 (function (M) { argument 58 (function (M) { argument 63 (function (M) { argument 69 (function (M) { argument 75 (function (M) { argument
|
D | moduleVariables.js | 22 var M; variable 23 (function (M) { argument 27 (function (M) { argument 30 (function (M) { argument
|
D | tsxEmit3.js | 37 var M = 100; variable 44 var M; variable 45 (function (M) { argument 64 (function (M) { argument 75 (function (M) { argument
|
D | collisionCodeGenModuleWithFunctionChildren.js | 4 function fn(M, p = x) { } argument 16 function M() { class 23 var M; variable 26 function fn(M, p) { argument 38 function M() { class
|
D | alwaysStrictModule2.js | 19 var M; variable 20 (function (M) { argument 26 var M; variable 27 (function (M) { argument
|
D | optionalPropertiesTest.js | 30 var test5: i1 = { M: function () { } }; method 31 var test6: i3 = { M: 5 }; property 32 var test7: i2 = { M: function () { } }; method 34 var test8: i4 = { M: 5 } property 61 var test5 = { M: function () { } }; method 62 var test6 = { M: 5 }; property 63 var test7 = { M: function () { } }; method 65 var test8 = { M: 5 }; property
|
D | collisionCodeGenModuleWithConstructorChildren.js | 5 constructor(M, p = x) { argument 12 constructor(private M, p = x) { 27 var M; variable 31 function c(M, p) { argument 39 function d(M, p) { argument
|
D | mergedModuleDeclarationWithSharedExportedVar.js | 11 var M; variable 12 (function (M) { argument 16 (function (M) { argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 96 void addModule(std::unique_ptr<Module> M) { in addModule() 100 bool removeModule(Module *M) { in removeModule() 105 bool hasModuleBeenAddedButNotLoaded(Module *M) { in hasModuleBeenAddedButNotLoaded() 109 bool hasModuleBeenLoaded(Module *M) { in hasModuleBeenLoaded() 115 bool hasModuleBeenFinalized(Module *M) { in hasModuleBeenFinalized() 119 bool ownsModule(Module* M) { in ownsModule() 124 void markModuleAsLoaded(Module *M) { in markModuleAsLoaded() 138 void markModuleAsFinalized(Module *M) { in markModuleAsFinalized() 158 Module *M = *I; in markAllLoadedModulesAsFinalized() local 172 Module *M = *I; in freeModulePtrSet() local [all …]
|
/third_party/skia/third_party/externals/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 …]
|
/third_party/typescript/tests/baselines/reference/extractFunction/ |
D | extractFunction17.ts | 3 M(t1: T1, t2: T2) { method in C 9 M(t1: T1, t2: T2) { method in C 19 M(t1: T1, t2: T2) { method in C 29 M(t1: T1, t2: T2) { method in C
|
D | extractFunction18.ts | 3 M<T1, T2>(t1: T1, t2: T2) { method in C 9 M<T1, T2>(t1: T1, t2: T2) { method in C 19 M<T1, T2>(t1: T1, t2: T2) { method in C 29 M<T1, T2>(t1: T1, t2: T2) { method in C
|
D | extractFunction_NamelessClass.js | 4 M() { method in AnonymousClass109263230101 11 M() { method in AnonymousClass109263230201 22 M() { method in AnonymousClass109263230301 33 M() { method in AnonymousClass109263230401
|
/third_party/skia/third_party/harfbuzz/ |
D | config-override.h | 8 #define hb_mutex_impl_init(M) HB_STMT_START { new (M) hb_mutex_impl_t; } HB_STMT_END argument 9 #define hb_mutex_impl_lock(M) (M)->lock () argument 10 #define hb_mutex_impl_unlock(M) (M)->unlock () argument 11 #define hb_mutex_impl_finish(M) HB_STMT_START { (M)->~hb_mutex_impl_t(); } HB_STMT_END argument
|
/third_party/typescript/tests/baselines/reference/extractConstant/ |
D | extractConstant_Method.ts | 3 M() { method in C 9 M() { method in C 18 M() { method in C 25 M() { method in C
|
D | extractConstant_StatementInsertionPosition7.ts | 5 M() { method in C 16 M() { method in C 30 M() { method in C 42 M() { method in C
|
D | extractConstant_Method.js | 3 M() { method in C 9 M() { method in C 17 M() { method in C
|
/third_party/typescript/tests/cases/compiler/ |
D | collisionCodeGenModuleWithModuleChildren.ts | 4 var M = 10; variable 11 class M { class 20 function M() { function 29 interface M { interface
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | ModuleUtils.cpp | 23 static void appendToGlobalArray(const char *Array, Module &M, Function *F, in appendToGlobalArray() 64 void llvm::appendToGlobalCtors(Module &M, Function *F, int Priority, Constant *Data) { in appendToGlobalCtors() 68 void llvm::appendToGlobalDtors(Module &M, Function *F, int Priority, Constant *Data) { in appendToGlobalDtors() 72 static void appendToUsedList(Module &M, StringRef Name, ArrayRef<GlobalValue *> Values) { in appendToUsedList() 102 void llvm::appendToUsed(Module &M, ArrayRef<GlobalValue *> Values) { in appendToUsed() 106 void llvm::appendToCompilerUsed(Module &M, ArrayRef<GlobalValue *> Values) { in appendToCompilerUsed() 111 llvm::declareSanitizerInitFunction(Module &M, StringRef InitName, in declareSanitizerInitFunction() 121 Module &M, StringRef CtorName, StringRef InitName, in createSanitizerCtorAndInitFunctions() 146 Module &M, StringRef CtorName, StringRef InitName, in getOrCreateSanitizerCtorAndInitFunctions() 167 Function *llvm::getOrCreateInitFunction(Module &M, StringRef Name) { in getOrCreateInitFunction() [all …]
|
/third_party/glfw/deps/ |
D | linmath.h | 84 static inline void mat4x4_identity(mat4x4 M) in mat4x4_identity() 91 static inline void mat4x4_dup(mat4x4 M, mat4x4 N) in mat4x4_dup() 98 static inline void mat4x4_row(vec4 r, mat4x4 M, int i) in mat4x4_row() 104 static inline void mat4x4_col(vec4 r, mat4x4 M, int i) in mat4x4_col() 110 static inline void mat4x4_transpose(mat4x4 M, mat4x4 N) in mat4x4_transpose() 117 static inline void mat4x4_add(mat4x4 M, mat4x4 a, mat4x4 b) in mat4x4_add() 123 static inline void mat4x4_sub(mat4x4 M, mat4x4 a, mat4x4 b) in mat4x4_sub() 129 static inline void mat4x4_scale(mat4x4 M, mat4x4 a, float k) in mat4x4_scale() 135 static inline void mat4x4_scale_aniso(mat4x4 M, mat4x4 a, float x, float y, float z) in mat4x4_scale_aniso() 145 static inline void mat4x4_mul(mat4x4 M, mat4x4 a, mat4x4 b) in mat4x4_mul() [all …]
|