| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/Utils/ |
| H A D | ARMBaseInfo.h | 33 HS, // Carry set >, ==, or unordered enumerator 53 case HS: return LO; in getOppositeCondition() 54 case LO: return HS; in getOppositeCondition() 76 case ARMCC::HS: return ARMCC::LS; in getSwappedCondition() 79 case ARMCC::LS: return ARMCC::HS; in getSwappedCondition() 150 case ARMCC::HS: return "hs"; in ARMCondCodeToString() 171 .Case("hs", ARMCC::HS) in ARMCondCodeFromString() 172 .Case("cs", ARMCC::HS) in ARMCondCodeFromString()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Lex/ |
| H A D | HeaderSearch.h | 169 : HS(Other.HS), Idx(Other.Idx) {} in SearchDirIteratorImpl() 176 return HS == RHS.HS && Idx == RHS.Idx; 187 return HS->SearchDirs[Idx]; 191 SearchDirIteratorImpl(std::nullptr_t) : HS(nullptr), Idx(0) {} in SearchDirIteratorImpl() 194 explicit operator bool() const { return HS != nullptr; } 198 Qualified<IsConst, HeaderSearch> *HS; 204 SearchDirIteratorImpl(Qualified<IsConst, HeaderSearch> &HS, size_t Idx) in SearchDirIteratorImpl() 205 : HS(&HS), Idx(Idx) {} in SearchDirIteratorImpl() 934 void ApplyHeaderSearchOptions(HeaderSearch &HS,
|
| H A D | DirectoryLookup.h | 184 LookupFile(StringRef &Filename, HeaderSearch &HS, SourceLocation IncludeLoc, 194 StringRef Filename, HeaderSearch &HS, SmallVectorImpl<char> *SearchPath,
|
| /openbsd-src/usr.bin/sed/ |
| H A D | process.c | 53 static SPACE HS, PS, SS; variable 58 #define hs HS.space 59 #define hsl HS.len 151 cspace(&HS, ps, psl, REPLACE); in process() 154 cspace(&HS, "\n", 1, 0); in process() 155 cspace(&HS, ps, psl, 0); in process() 236 cspace(&HS, "", 0, REPLACE); in process() 238 PS = HS; in process() 240 HS = tspace; in process() 318 free(HS in resetstate() [all...] |
| /openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/ |
| H A D | ppphbin | 38 my $HS = "[ \t]"; # horizontal whitespace 494 ( ^$HS*\#$HS*include\b[^\r\n]+\b(?:\Q$ppport\E|XSUB\.h)\b[^\r\n]* 495 | ^$HS*\#$HS*(?:define|elif|if(?:def)?)\b[^\r\n]* ) 496 | ( ^$HS*\#[^\r\n]* 505 $file{has_inc_ppport} = $c =~ /^$HS*#$HS*include[^\r\n]+\b\Q$ppport\E\b/m; 543 while ($c =~ /^$HS*#$HS*define$HS+(NEED_(\w+?)(_GLOBAL)?)\b/mg) { 640 $file{changes} += ($c =~ s/^$HS*#$HS*define$HS+NEED_$func\b.*$LF//mg); 659 $file{changes} += ($c =~ s/^$HS*#$HS*define$HS+NEED_${func}_GLOBAL\b.*$LF//mg); 683 if ($pp && ($c =~ s/^(?=$HS*#$HS*define$HS+NEED_\w+)/$pp/m)) { 694 $file{changes} += ($c =~ s/^($HS*#$HS*define$HS+NEED_\w+.*?)^/$1$pp/ms) [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | FormatProviders.h | 132 HexPrintStyle HS; 134 if (consumeHexStyle(Style, HS)) { 135 Digits = consumeNumHexDigits(Style, HS, 0); 136 write_hex(Stream, V, HS, Digits); 181 HexPrintStyle HS = HexPrintStyle::PrefixUpper; 182 consumeHexStyle(Style, HS); 183 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2); 184 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | TpiStream.cpp | 81 auto HS = Pdb.safelyCreateIndexedStream(Header->HashStreamIndex); in reload() local 82 if (!HS) { in reload() 83 consumeError(HS.takeError()); in reload() 87 BinaryStreamReader HSR(**HS); in reload() 112 HashStream = std::move(*HS); in reload()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderInternals.h | 246 HeaderSearch *HS; variable 265 HeaderFileInfoTrait(ASTReader &Reader, ModuleFile &M, HeaderSearch *HS, in HeaderFileInfoTrait() argument 267 : Reader(Reader), M(M), HS(HS), FrameworkStrings(FrameworkStrings) {} in HeaderFileInfoTrait()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/Windows/ |
| H A D | DynamicLibrary.inc | 62 if (HandleSet *HS = IsOpenedHandlesInstance(Handle)) 63 HS->Process = nullptr; // Just drop the *Process* handle. 87 HandleSet *HS = IsOpenedHandlesInstance(Handle); 88 if (!HS) 92 if (!HS->Process)
|
| /openbsd-src/gnu/llvm/clang/lib/Lex/ |
| H A D | InitHeaderSearch.cpp | 58 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot) in InitHeaderSearch() argument 59 : Headers(HS), Verbose(verbose), IncludeSysroot(std::string(sysroot)), in InitHeaderSearch() 654 void clang::ApplyHeaderSearchOptions(HeaderSearch &HS, in ApplyHeaderSearchOptions() argument 658 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot); in ApplyHeaderSearchOptions() 680 if (auto Dir = HS.getFileMgr().getDirectory(P)) in ApplyHeaderSearchOptions() 681 HS.getModuleMap().setBuiltinIncludeDir(*Dir); in ApplyHeaderSearchOptions()
|
| H A D | HeaderSearch.cpp | 451 StringRef &Filename, HeaderSearch &HS, SourceLocation IncludeLoc, in LookupFile() argument 476 return HS.getFileAndSuggestModule( in LookupFile() 482 return DoFrameworkLookup(Filename, HS, SearchPath, RelativePath, in LookupFile() 516 if (auto Res = HS.getFileMgr().getOptionalFileRef(Dest, OpenFile)) { in LookupFile() 525 HS.noteLookupUsage(HS.searchDirIdx(*this), IncludeLoc); in LookupFile() 590 StringRef Filename, HeaderSearch &HS, SmallVectorImpl<char> *SearchPath, in DoFrameworkLookup() argument 594 FileManager &FileMgr = HS.getFileMgr(); in DoFrameworkLookup() 604 HS.LookupFrameworkCache(Filename.substr(0, SlashPos)); in DoFrameworkLookup() 712 if (!HS.findUsableModuleForFrameworkHeader( in DoFrameworkLookup() 717 if (!HS.findUsableModuleForHeader(&File->getFileEntry(), getDir(), in DoFrameworkLookup() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/ |
| H A D | ProfileGenerator.h | 207 uint32_t HS = static_cast<uint32_t>(Context.size() / 2); variable 209 CSize == -1 ? HS : std::min(static_cast<uint32_t>(CSize), HS);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARC/MCTargetDesc/ |
| H A D | ARCInfo.h | 31 HS = 0x6, enumerator
|
| /openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| H A D | 540.crt | 10 AQEA0mak6fIc18d3nKhKYfHKMXcp4rYeeriMSsG8b8PJwb4J7uLuFX4XH43Hh+HS
|
| H A D | 1559.key | 16 c++F1FIJK8Ys75leS3LvUDibeRE6bNZpuTHmY/HS/a5KT1UW43B4J28DnP7xFa/1
|
| H A D | 1695.chain | 42 5uOQPY7fvCrGm2P7UtShhKZJbSAGT6pwgIsUlhI+ngV3J1Z/NpegXD/HS/C7/dfm
|
| H A D | 886.chain | 44 MGs0EjQ6TfulO7C6RpXtkvm0dX6WvCwNj+VjY5Vzpb7uNkLJhFiHYIlIVxbX+8HS
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | FrontendAction.cpp | 447 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); in loadModuleMapForModuleBuild() local 464 if (HS.loadModuleMapFile(ModuleMap, IsSystem, ModuleMapID, &Offset, in loadModuleMapForModuleBuild() 472 if (HS.getModuleMap().canInferFrameworkModule(ModuleMap->getDir())) { in loadModuleMapForModuleBuild() 477 (void)HS.getModuleMap().inferFrameworkModule(*Dir, IsSystem, nullptr); in loadModuleMapForModuleBuild() 496 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); in prepareToBuildModule() local 497 Module *M = HS.lookupModule(CI.getLangOpts().CurrentModule, SourceLocation(), in prepareToBuildModule() 822 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); in BeginSourceFile() local 830 HS.LookupFile(FileName, SourceLocation(), in BeginSourceFile()
|
| H A D | CompilerInstance.cpp | 223 static void collectHeaderMaps(const HeaderSearch &HS, in collectHeaderMaps() argument 226 HS.getHeaderMapFileNames(HeaderMapFileNames); in collectHeaderMaps() 1765 HeaderSearch &HS) { in selectModuleSource() argument 1777 const HeaderSearchOptions &HSOpts = HS.getHeaderSearchOpts(); in selectModuleSource() 1780 ModuleFilename = HS.getPrebuiltModuleFileName(ModuleName); in selectModuleSource() 1782 ModuleFilename = HS.getPrebuiltImplicitModuleFileName(M); in selectModuleSource() 1789 ModuleFilename = HS.getCachedModuleFileName(M); in selectModuleSource() 1800 HeaderSearch &HS = PP->getHeaderSearchInfo(); in findOrCompileModuleAndReadAST() local 1802 HS.lookupModule(ModuleName, ImportLoc, true, !IsInclusionDirective); in findOrCompileModuleAndReadAST() 1807 selectModuleSource(M, ModuleName, ModuleFilename, BuiltModules, HS); in findOrCompileModuleAndReadAST() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangModulesDeclVendor.cpp | 310 clang::HeaderSearch &HS = in AddModule() local 333 HS.getFileMgr().getDirectory(module.search_path.GetStringRef()); in AddModule() 336 auto *file = HS.lookupModuleMapFile(*dir, is_framework); in AddModule() 339 if (!HS.loadModuleMapFile(file, is_system)) in AddModule() 343 if (!HS.lookupModule(module.path.front().GetStringRef())) { in AddModule()
|
| /openbsd-src/sys/dev/usb/dwc2/ |
| H A D | files.dwc2 | 4 # DesignWare HS OTG Controller
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/Utils/ |
| H A D | AArch64BaseInfo.h | 257 HS = 0x2, // Unsigned higher or same >, ==, or unordered enumerator 286 case HS: return "hs"; in getCondCodeName() 320 case HS: return C; // C == 1 in getNZCVToSatisfyCondCode() 340 case HS: in isReflexive()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/NVPTX/ |
| H A D | NVPTX.h | 162 HS, enumerator
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARC/ |
| H A D | ARCInstrInfo.cpp | 111 return ARCCC::HS; in getOppositeBranchCondition() 112 case ARCCC::HS: in getOppositeBranchCondition()
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | os2 | 31 # int16 ID; // ID magic word (5348h = "HS")
|