/third_party/ffmpeg/libavcodec/x86/ |
H A D | mpegvideoenc_template.c | 33 #undef MM macro 43 #define MM "%%xmm" macro 58 #define MM "%%mm" macro 144 "movd %%"FF_REG_a", "MM"3 \n\t" // last_non_zero_p1 in dct_quantize() 145 SPREADW(MM"3") in dct_quantize() 146 "pxor "MM"7, "MM"7 \n\t" // 0 in dct_quantize() 147 "pxor "MM"4, "MM"4 \n\t" // 0 in dct_quantize() 148 MOVQ" (%2), "MM" in dct_quantize() [all...] |
/third_party/ltp/testcases/realtime/stress/pi-tests/ |
H A D | lookup_pi_state.c | 42 pthread_mutex_t MM; variable 83 pthread_mutex_lock(&MM); // make sure the master thread is waiting in slave_thread() 85 pthread_mutex_unlock(&MM); in slave_thread() 89 // should be MS or MM in slave_thread() 112 pthread_mutex_lock(&MM); in master_thread() 119 pthread_cond_wait(&CM, &MM); in master_thread() 146 pthread_cond_timedwait(&CM, &MM, &ts_abs_timeout); in master_thread() 148 pthread_mutex_unlock(&MM); in master_thread() 155 * docs say MM, but that doesn't make sense.. in master_thread() 176 init_pi_mutex(&MM); in main() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_misc.cpp | 253 GeneratedCode(BaseMemoryManager *MM) { in GeneratedCode() 254 TheMM = MM; in GeneratedCode() 269 ShaderMemoryManager(BaseMemoryManager* MM) { in ShaderMemoryManager() argument 270 TheMM = MM; in ShaderMemoryManager() 271 code = new GeneratedCode(MM); in ShaderMemoryManager() 546 ShaderMemoryManager *MM = NULL; in lp_build_create_jit_compiler_for_module() local 548 MM = new ShaderMemoryManager(JMM); in lp_build_create_jit_compiler_for_module() 549 *OutCode = MM->getGeneratedCode(); in lp_build_create_jit_compiler_for_module() 551 builder.setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager>(MM)); in lp_build_create_jit_compiler_for_module() 552 MM in lp_build_create_jit_compiler_for_module() [all...] |
H A D | lp_bld_misc.h | 73 LLVMMCJITMemoryManagerRef MM,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
H A D | RuntimeDyldELFMips.h | 24 RuntimeDyldELFMips(RuntimeDyld::MemoryManager &MM, in RuntimeDyldELFMips() argument 26 : RuntimeDyldELF(MM, Resolver) {} in RuntimeDyldELFMips()
|
H A D | RuntimeDyldCOFFI386.h | 26 RuntimeDyldCOFFI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFI386() argument 28 : RuntimeDyldCOFF(MM, Resolver) {} in RuntimeDyldCOFFI386()
|
H A D | RuntimeDyldCOFFThumb.h | 49 RuntimeDyldCOFFThumb(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFThumb() argument 51 : RuntimeDyldCOFF(MM, Resolver) {} in RuntimeDyldCOFFThumb()
|
H A D | RuntimeDyldCOFFX86_64.h | 57 RuntimeDyldCOFFX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFX86_64() argument 59 : RuntimeDyldCOFF(MM, Resolver), ImageBase(0) {} in RuntimeDyldCOFFX86_64()
|
H A D | RuntimeDyldMachOI386.h | 25 RuntimeDyldMachOI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOI386() argument 27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOI386()
|
H A D | RuntimeDyldMachOX86_64.h | 25 RuntimeDyldMachOX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOX86_64() argument 27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOX86_64()
|
H A D | RuntimeDyldCOFFAArch64.h | 90 RuntimeDyldCOFFAArch64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFAArch64() argument 92 : RuntimeDyldCOFF(MM, Resolver), ImageBase(0) {} in RuntimeDyldCOFFAArch64()
|
H A D | RuntimeDyldMachOAArch64.h | 25 RuntimeDyldMachOAArch64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOAArch64() argument 27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOAArch64()
|
H A D | RuntimeDyldMachOARM.h | 28 RuntimeDyldMachOARM(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOARM() argument 30 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOARM()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/ |
H A D | hash_test.cc | 576 using MM = std::multimap<int, std::string>; in TEST() 578 MM{}, MM{{0, "foo"}}, MM{{1, "foo"}}, MM{{0, "bar"}}, MM{{1, "bar"}}, in TEST() 579 MM{{0, "foo"}, {0, "bar"}}, MM{{0, "bar"}, {0, "foo"}}, in TEST() 580 MM{{0, "foo"}, {42, "bar"}}, MM{{ in TEST() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
H A D | SectionMemoryManager.cpp | 263 SectionMemoryManager::SectionMemoryManager(MemoryMapper *MM) in SectionMemoryManager() argument 264 : MMapper(MM ? *MM : DefaultMMapperInstance) {} in SectionMemoryManager()
|
H A D | ExecutionEngineBindings.cpp | 410 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM) { in LLVMDisposeMCJITMemoryManager() argument 411 delete unwrap(MM); in LLVMDisposeMCJITMemoryManager()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
H A D | ExecutionEngine.h | 141 std::shared_ptr<MCJITMemoryManager> MM, 146 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MM, 570 setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
|
H A D | SectionMemoryManager.h | 105 /// Creates a SectionMemoryManager instance with \p MM as the associated 106 /// memory mapper. If \p MM is nullptr then a default memory mapper is used 108 SectionMemoryManager(MemoryMapper *MM = nullptr);
|
/third_party/lwip/test/fuzz/ |
H A D | Makefile | 51 $(CCDEP) $(CFLAGS) -MM $^ > .depend || rm -f .depend
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyld.cpp | 1273 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldCOFF() 1277 RuntimeDyldCOFF::create(Arch, MM, Resolver); in createRuntimeDyldCOFF() 1284 createRuntimeDyldELF(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldELF() argument 1288 RuntimeDyldELF::create(Arch, MM, Resolver); in createRuntimeDyldELF() 1296 Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, in createRuntimeDyldMachO() 1301 RuntimeDyldMachO::create(Arch, MM, Resolver); in createRuntimeDyldMachO() 1272 createRuntimeDyldCOFF( Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver, bool ProcessAllSections, RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted) createRuntimeDyldCOFF() argument 1295 createRuntimeDyldMachO( Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver, bool ProcessAllSections, RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted) createRuntimeDyldMachO() argument
|
/third_party/pulseaudio/speex/tmv/ |
H A D | preprocess_tm.h | 777 register spx_word32_t MM; in preprocess_compute_emgain() local 790 MM = hypergeom_gain(theta); in preprocess_compute_emgain() 791 gain[i] = EXTRACT16(MIN32(Q15_ONE, MULT16_32_Q15(prior_ratio, MM))); in preprocess_compute_emgain() 834 register spx_word32_t MM; in preprocess_compute_linear_gain() local 844 MM = hypergeom_gain(theta); in preprocess_compute_linear_gain() 846 g = EXTRACT16(MIN32(Q15_ONE, MULT16_32_Q15(prior_ratio, MM))); in preprocess_compute_linear_gain()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateTimeGeneratorTest.java | 1251 String[] cases = {"MMDDYY", "HHMMSS", "", "MM/DD/YYYY HH:MM:SS", in TestHasDateAndTimeFields() 1289 String[] cases = {"MMDDYY", "HHMMSS", "", "MM/DD/YYYY HH:MM:SS", in TestGetFields() 1644 assertEquals(message, "G ├'F7': d┤ ├'F3': MM┤ ├'F1': y┤", dtpg.getBestPattern(skeleton)); in TestEmptyInstance() 1645 dtpg.addPattern("d-MM-yyyy", false, new DateTimePatternGenerator.PatternInfo()); in TestEmptyInstance() 1646 assertEquals(message, "d-MM-y ├'F0': G┤", dtpg.getBestPattern(skeleton)); in TestEmptyInstance() 1648 assertEquals(message, "d-MM-y, G", dtpg.getBestPattern(skeleton)); in TestEmptyInstance() 1819 "en_US", "yMMEEdd", "EEE, MM/dd/y", in testBestPattern() 1820 "en_US", "yMMccdd", "ee, MM/d in testBestPattern() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | RDFGraph.h | 914 NodeList MM; in members_if() local 917 return MM; in members_if() 921 MM.push_back(M); in members_if() 924 return MM; in members_if()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
H A D | ExecutionEngine.h | 182 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM);
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | DateTimeGeneratorTest.java | 1254 String[] cases = {"MMDDYY", "HHMMSS", "", "MM/DD/YYYY HH:MM:SS", in TestHasDateAndTimeFields() 1292 String[] cases = {"MMDDYY", "HHMMSS", "", "MM/DD/YYYY HH:MM:SS", in TestGetFields() 1647 assertEquals(message, "G ├'F7': d┤ ├'F3': MM┤ ├'F1': y┤", dtpg.getBestPattern(skeleton)); in TestEmptyInstance() 1648 dtpg.addPattern("d-MM-yyyy", false, new DateTimePatternGenerator.PatternInfo()); in TestEmptyInstance() 1649 assertEquals(message, "d-MM-y ├'F0': G┤", dtpg.getBestPattern(skeleton)); in TestEmptyInstance() 1651 assertEquals(message, "d-MM-y, G", dtpg.getBestPattern(skeleton)); in TestEmptyInstance()
|