/external/ppp/pppd/plugins/radius/etc/ |
D | dictionary.microsoft | 9 ATTRIBUTE MS-CHAP-Response 1 string Microsoft 10 ATTRIBUTE MS-CHAP-Error 2 string Microsoft 11 ATTRIBUTE MS-CHAP-CPW-1 3 string Microsoft 12 ATTRIBUTE MS-CHAP-CPW-2 4 string Microsoft 13 ATTRIBUTE MS-CHAP-LM-Enc-PW 5 string Microsoft 14 ATTRIBUTE MS-CHAP-NT-Enc-PW 6 string Microsoft 15 ATTRIBUTE MS-MPPE-Encryption-Policy 7 string Microsoft 18 ATTRIBUTE MS-MPPE-Encryption-Type 8 string Microsoft 19 ATTRIBUTE MS-MPPE-Encryption-Types 8 string Microsoft 20 ATTRIBUTE MS-RAS-Vendor 9 integer Microsoft [all …]
|
/external/clang/unittests/Driver/ |
D | MultilibTest.cpp | 183 MultilibSet MS; in TEST() local 184 ASSERT_TRUE(MS.size() == 0); in TEST() 185 MS.Maybe(Multilib("64").flag("+m64")); in TEST() 186 ASSERT_TRUE(MS.size() == 2); in TEST() 187 for (MultilibSet::const_iterator I = MS.begin(), E = MS.end(); I != E; ++I) { in TEST() 199 MultilibSet MS; in TEST() local 200 MS.Maybe(Multilib("sof").flag("+sof")); in TEST() 201 MS.Maybe(Multilib("el").flag("+EL")); in TEST() 202 ASSERT_TRUE(MS.size() == 4); in TEST() 203 for (MultilibSet::const_iterator I = MS.begin(), E = MS.end(); I != E; ++I) { in TEST() [all …]
|
/external/ltp/testcases/realtime/stress/pi-tests/ |
D | lookup_pi_state.c | 43 pthread_mutex_t MS; variable 79 pthread_mutex_lock(&MS); in slave_thread() 88 pthread_cond_wait(&CS, &MS); // docs are contradictory on if this in slave_thread() 97 pthread_cond_wait(&CS, &MS); in slave_thread() 100 pthread_mutex_unlock(&MS); in slave_thread() 122 pthread_mutex_lock(&MS); in master_thread() 135 pthread_mutex_unlock(&MS); in master_thread() 151 pthread_mutex_lock(&MS); in master_thread() 159 pthread_mutex_unlock(&MS); in master_thread() 177 init_pi_mutex(&MS); in main()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 624 MemorySanitizer &MS; member 648 MemorySanitizerVisitor(Function &F, MemorySanitizer &MS) in MemorySanitizerVisitor() 649 : F(F), MS(MS), VAHelper(CreateVarArgHelper(F, MS, *this)) { in MemorySanitizerVisitor() 658 TLI = &MS.getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); in MemorySanitizerVisitor() 666 if (MS.TrackOrigins <= 1) return V; in updateOrigin() 667 return IRB.CreateCall(MS.MsanChainOriginFn, V); in updateOrigin() 672 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy); in originToIntptr() 675 Origin = IRB.CreateIntCast(Origin, MS.IntptrTy, /* isSigned */ false); in originToIntptr() 683 unsigned IntptrAlignment = DL.getABITypeAlignment(MS.IntptrTy); in paintOrigin() 684 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy); in paintOrigin() [all …]
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.construct/ |
D | source.pass.cpp | 34 void RunTestCase(MultiStringType const& MS) { in RunTestCase() argument 36 const char* Expect = MS; in RunTestCase() 37 const CharT* TestPath = MS; in RunTestCase() 115 for (auto const& MS : PathList) { in main() local 116 RunTestCase<char>(MS); in main() 117 RunTestCase<wchar_t>(MS); in main() 118 RunTestCase<char16_t>(MS); in main() 119 RunTestCase<char32_t>(MS); in main()
|
/external/clang/test/SemaCXX/ |
D | dllimport.cpp | 51 #ifdef MS 62 #ifdef MS 73 #ifdef MS 84 #ifdef MS 173 #ifdef MS 186 #ifdef MS 299 #ifdef MS 314 #ifdef MS 331 #ifdef MS 338 #ifdef MS [all …]
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.native.obs/ |
D | named_overloads.pass.cpp | 40 auto const& MS = longString; in main() local 49 assert(s == (const char*)MS); in main() 53 assert(s == (const wchar_t*)MS); in main() 57 assert(s == (const char16_t*)MS); in main() 61 assert(s == (const char32_t*)MS); in main()
|
D | string_alloc.pass.cpp | 38 void doShortStringTest(MultiStringType const& MS) { in doShortStringTest() argument 43 Ptr value = MS; in doShortStringTest() 44 const path p((const char*)MS); in doShortStringTest() 80 void doLongStringTest(MultiStringType const& MS) { in doLongStringTest() argument 84 Ptr value = MS; in doLongStringTest() 85 const path p((const char*)MS); in doLongStringTest()
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.generic.obs/ |
D | named_overloads.pass.cpp | 40 auto const& MS = longString; in main() local 49 assert(s == (const char*)MS); in main() 53 assert(s == (const wchar_t*)MS); in main() 57 assert(s == (const char16_t*)MS); in main() 61 assert(s == (const char32_t*)MS); in main()
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.assign/ |
D | source.pass.cpp | 39 void RunTestCase(MultiStringType const& MS) { in RunTestCase() argument 41 const char* Expect = MS; in RunTestCase() 42 const CharT* TestPath = MS; in RunTestCase() 234 for (auto const& MS : PathList) { in main() local 235 RunTestCase<char>(MS); in main() 236 RunTestCase<wchar_t>(MS); in main() 237 RunTestCase<char16_t>(MS); in main() 238 RunTestCase<char32_t>(MS); in main() 239 RunStringMoveTest(MS); in main()
|
/external/clang/test/Sema/ |
D | dllimport.c | 41 #ifdef MS 52 #ifdef MS 63 #ifdef MS 74 #ifdef MS 175 #ifdef MS 198 #ifdef MS
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 478 MCStreamer *MS; // Owned by AsmPrinter member in llvm::dsymutil::__anon81c782ce0111::DwarfStreamer 624 MS = TheTarget->createMCObjectStreamer( in init() 628 if (!MS) in init() 637 Asm.reset(TheTarget->createAsmPrinter(*TM, std::unique_ptr<MCStreamer>(MS))); in init() 651 return MachOUtils::generateDsymCompanion(DM, *MS, *OutFile); in finish() 653 MS->Finish(); in finish() 660 MS->SwitchSection(MOFI->getDwarfInfoSection()); in switchToDebugInfoSection() 693 MS->SwitchSection(MOFI->getDwarfAbbrevSection()); in emitAbbrevs() 699 MS->SwitchSection(MOFI->getDwarfInfoSection()); in emitDIE() 721 MS->SwitchSection(MC->getObjectFileInfo()->getDwarfRangesSection()); in emitRangesEntries() [all …]
|
/external/llvm/test/Analysis/CFLAliasAnalysis/Steensgaard/ |
D | multilevel-combine.ll | 20 %M = alloca %T*, align 8 ; NoAlias with %A, %B, %MS, %AP 24 %MS = select i1 %C, %T* %B, %T* %A 26 store %T* %MS, %T** %M
|
/external/tcpdump/tests/ |
D | msnlb2.out | 1 [|MS NLB] 2 [|MS NLB]
|
D | msnlb.out | 1 MS NLB heartbeat, host priority: 2, cluster IP: 192.168.100.80, host IP: 192.168.100.82 2 MS NLB heartbeat, host priority: 1, cluster IP: 192.168.100.80, host IP: 192.168.100.81
|
/external/python/cpython2/Doc/library/ |
D | windows.rst | 4 MS Windows Specific Services 7 This chapter describes modules that are only available on MS Windows platforms.
|
/external/mdnsresponder/mDNSWindows/ControlPanel/ |
D | ControlPanelLocRes.rc | 108 FONT 8, "MS Sans Serif", 0, 0, 0x0 123 FONT 8, "MS Sans Serif", 0, 0, 0x0 137 FONT 8, "MS Sans Serif", 0, 0, 0x0 149 FONT 8, "MS Shell Dlg", 400, 0, 0x1 163 FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | Encodings.properties | 82 # MS-DOS Latin-1 85 # MS-DOS Latin-2 93 # MS-DOS Portuguese 95 # MS-DOS Icelandic 99 # MS-DOS Canadian French 103 # MS-DOS Nordic 105 # MS-DOS Russian 107 # MS-DOS Pakistan
|
/external/clang/test/SemaTemplate/ |
D | extern-templates.cpp | 25 #ifdef MS in g() 34 #ifdef MS in test_intptr()
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/ |
D | wait_terminates.sh.cpp | 111 typedef std::chrono::milliseconds MS; typedef 118 MS wait(250); in main()
|
/external/python/cpython2/PC/bdist_wininst/ |
D | install.rc | 98 FONT 8, "MS Sans Serif", 0, 0, 0x1 112 FONT 8, "MS Sans Serif", 0, 0, 0x1 132 FONT 8, "MS Sans Serif", 0, 0, 0x1 146 FONT 8, "MS Sans Serif"
|
/external/llvm/test/CodeGen/SystemZ/ |
D | int-mul-02.ll | 16 ; Check the low end of the MS range. 26 ; Check the high end of the aligned MS range. 37 ; Check the next word up, which should use MSY instead of MS. 107 ; Check that MS allows an index. 133 ; Check that multiplications of spilled values can use MS rather than MSR.
|
/external/abi-compliance-checker/ |
D | INSTALL | 24 3. Requirements for MS Windows 63 3. REQUIREMENTS FOR MS WINDOWS 67 2. MS Visual C++ (dumpbin, undname, cl)
|
/external/syslinux/core/ |
D | ldlinux.asm | 6 ; A program to boot Linux kernels off an MS-DOS formatted floppy disk. This 11 ; from MS-LOSS, and can be especially useful in conjunction with the
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVType.h | 344 SPIRVWord MS; member 351 Desc.MS, Desc.Sampled), Desc.Format); in getAsTuple() 354 MS(0), Sampled(0), Format(0){} in SPIRVTypeImageDescriptor() 357 Arrayed(Arr), MS(Comp), Sampled(Mult), Format(F){} in SPIRVTypeImageDescriptor() 424 if (Desc.MS) in getRequiredCapability() 438 Desc.Arrayed, Desc.MS, Desc.Sampled, Desc.Format, Acc) 447 assert(Desc.MS <= 1); in validate()
|