Home
last modified time | relevance | path

Searched refs:MM (Results 1 - 25 of 39) sorted by relevance

12

/third_party/ffmpeg/libavcodec/x86/
H A Dmpegvideoenc_template.c33 #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 Dlookup_pi_state.c42 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 Dlp_bld_misc.cpp253 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 Dlp_bld_misc.h73 LLVMMCJITMemoryManagerRef MM,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.h24 RuntimeDyldELFMips(RuntimeDyld::MemoryManager &MM, in RuntimeDyldELFMips() argument
26 : RuntimeDyldELF(MM, Resolver) {} in RuntimeDyldELFMips()
H A DRuntimeDyldCOFFI386.h26 RuntimeDyldCOFFI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFI386() argument
28 : RuntimeDyldCOFF(MM, Resolver) {} in RuntimeDyldCOFFI386()
H A DRuntimeDyldCOFFThumb.h49 RuntimeDyldCOFFThumb(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFThumb() argument
51 : RuntimeDyldCOFF(MM, Resolver) {} in RuntimeDyldCOFFThumb()
H A DRuntimeDyldCOFFX86_64.h57 RuntimeDyldCOFFX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFX86_64() argument
59 : RuntimeDyldCOFF(MM, Resolver), ImageBase(0) {} in RuntimeDyldCOFFX86_64()
H A DRuntimeDyldMachOI386.h25 RuntimeDyldMachOI386(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOI386() argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOI386()
H A DRuntimeDyldMachOX86_64.h25 RuntimeDyldMachOX86_64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOX86_64() argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOX86_64()
H A DRuntimeDyldCOFFAArch64.h90 RuntimeDyldCOFFAArch64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldCOFFAArch64() argument
92 : RuntimeDyldCOFF(MM, Resolver), ImageBase(0) {} in RuntimeDyldCOFFAArch64()
H A DRuntimeDyldMachOAArch64.h25 RuntimeDyldMachOAArch64(RuntimeDyld::MemoryManager &MM, in RuntimeDyldMachOAArch64() argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {} in RuntimeDyldMachOAArch64()
H A DRuntimeDyldMachOARM.h28 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 Dhash_test.cc576 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 DSectionMemoryManager.cpp263 SectionMemoryManager::SectionMemoryManager(MemoryMapper *MM) in SectionMemoryManager() argument
264 : MMapper(MM ? *MM : DefaultMMapperInstance) {} in SectionMemoryManager()
H A DExecutionEngineBindings.cpp410 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 DExecutionEngine.h141 std::shared_ptr<MCJITMemoryManager> MM,
146 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MM,
570 setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
H A DSectionMemoryManager.h105 /// 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 DMakefile51 $(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 DRuntimeDyld.cpp1273 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 Dpreprocess_tm.h777 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 DDateTimeGeneratorTest.java1251 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 DRDFGraph.h914 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 DExecutionEngine.h182 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM);
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDateTimeGeneratorTest.java1254 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()

Completed in 22 milliseconds

12