| /freebsd-14.2/usr.bin/ruptime/ |
| H A D | ruptime.c | 169 strcmp(HS(a1)->hs_wd.wd_hostname, HS(a2)->hs_wd.wd_hostname)); in hscmp() 176 if (ISDOWN(HS(a1))) in lcmp() 177 if (ISDOWN(HS(a2))) in lcmp() 185 (HS(a2)->hs_wd.wd_loadav[0] - HS(a1)->hs_wd.wd_loadav[0])); in lcmp() 292 if (ISDOWN(HS(a1))) in ucmp() 293 if (ISDOWN(HS(a2))) in ucmp() 300 return (rflg * (HS(a2)->hs_nusers - HS(a1)->hs_nusers)); in ucmp() 308 (ISDOWN(HS(a2)) ? HS(a2)->hs_wd.wd_recvtime - now in tcmp() 309 : HS(a2)->hs_wd.wd_sendtime - HS(a2)->hs_wd.wd_boottime) in tcmp() 311 (ISDOWN(HS(a1)) ? HS(a1)->hs_wd.wd_recvtime - now in tcmp() [all …]
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/i2c/ |
| H A D | i2c-imx.txt | 1 * Freescale Inter IC (I2C) and High Speed Inter IC (HS-I2C) for i.MX 8 - reg : Should contain I2C/HS-I2C registers location and length 9 - interrupts : Should contain I2C/HS-I2C interrupt 10 - clocks : Should contain the I2C/HS-I2C clock specifier 13 - clock-frequency : Constains desired I2C/HS-I2C bus clock frequency in Hz. 30 i2c@70038000 { /* HS-I2C on i.MX51 */
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/phy/ |
| H A D | phy-stm32-usbphyc.yaml | 7 title: STMicroelectronics STM32 USB HS PHY controller 87 # all optional parameters to tune the interface of the PHY (HS for High-Speed, FS for Full- 99 description: Decreases the HS driver slew rate by 10% 104 Tunes the HS driver DC level 119 description: Enables the HS rise/fall reduction feature 124 Controls HS driver current trimming for choke compensation 148 Controls HS driver impedance tuning for choke compensation 171 description: Enables the HS Rx gain equalizer 176 Adjusts the HS Rx offset 187 description: Disables the HS fall time control of single ended signals during pre-emphasis [all …]
|
| H A D | brcm,stingray-usb-phy.txt | 5 - "brcm,sr-usb-combo-phy" is combo PHY has two PHYs, one SS and one HS. 6 - "brcm,sr-usb-hs-phy" is a single HS PHY. 10 the PHY number of two PHYs. 0 for HS PHY and 1 for SS PHY.
|
| H A D | nvidia,tegra20-usb-phy.txt | 45 - Either one of the following for HS driver output control: 54 - nvidia,xcvr-hsslew : HS slew rate control. 55 - nvidia,hssquelch-level : HS squelch detector level. 56 - nvidia,hsdiscon-level : HS disconnect detector level.
|
| H A D | qcom,usb-snps-femto-v2.yaml | 93 HS pre-emphasis current is sourced onto DP<#> or DM<#>. 94 The HS Transmitter pre-emphasis duration is defined in terms of 106 The HS Transmitter pre-emphasis current is defined in terms of unit 125 signals cross while transmitting in HS mode.
|
| H A D | renesas,rcar-gen2-usb-phy.yaml | 64 - 1 for HS-USB 67 - 1 for HS-USB (channel 0) or xHCI (channel 2)
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | HeaderSearch.h | 178 : HS(Other.HS), Idx(Other.Idx) {} in SearchDirIteratorImpl() 185 return HS == RHS.HS && Idx == RHS.Idx; 196 return HS->SearchDirs[Idx]; 200 SearchDirIteratorImpl(std::nullptr_t) : HS(nullptr), Idx(0) {} in SearchDirIteratorImpl() 203 explicit operator bool() const { return HS != nullptr; } 207 Qualified<IsConst, HeaderSearch> *HS; 213 SearchDirIteratorImpl(Qualified<IsConst, HeaderSearch> &HS, size_t Idx) in SearchDirIteratorImpl() 214 : HS(&HS), Idx(Idx) {} in SearchDirIteratorImpl() 947 void ApplyHeaderSearchOptions(HeaderSearch &HS,
|
| H A D | DirectoryLookup.h | 188 LookupFile(StringRef &Filename, HeaderSearch &HS, SourceLocation IncludeLoc, 198 StringRef Filename, HeaderSearch &HS, SmallVectorImpl<char> *SearchPath,
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FormatProviders.h | 133 HexPrintStyle HS; 135 if (consumeHexStyle(Style, HS)) { 136 Digits = consumeNumHexDigits(Style, HS, 0); 137 write_hex(Stream, V, HS, Digits); 182 HexPrintStyle HS = HexPrintStyle::PrefixUpper; 183 consumeHexStyle(Style, HS); 184 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2); 185 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/usr.bin/sed/ |
| H A D | process.c | 62 static SPACE HS, PS, SS, YS; variable 67 #define hs HS.space 68 #define hsl HS.len 164 cspace(&HS, ps, psl, REPLACE); in process() 167 cspace(&HS, "\n", 1, APPEND); in process() 168 cspace(&HS, ps, psl, APPEND); in process() 259 cspace(&HS, "", 0, REPLACE); in process() 261 PS = HS; in process() 263 HS = tspace; in process() 374 cspace(&HS, "", 0, REPLACE); in resetstate()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/arc/ |
| H A D | archs-pct.txt | 1 * ARC HS Performance Counters 3 The ARC HS can be configured with a pipeline performance monitor for counting
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm64/mediatek/ |
| H A D | mt6797-x20-dev.dts | 38 /* HS - I2C2 */ 45 /* HS - I2C3 */
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/usb/ |
| H A D | mediatek,mtk-xhci.yaml | 98 - description: USB2/HS PHY # required, others are optional 100 - description: USB2/HS PHY 102 - description: USB2/HS PHY 104 - description: USB2/HS PHY 106 - description: USB2/HS PHY
|
| H A D | mediatek,mtu3.yaml | 88 - description: USB2/HS PHY # required, others are optional 90 - description: USB2/HS PHY # the following for backward compatible 92 - description: USB2/HS PHY 94 - description: USB2/HS PHY 96 - description: USB2/HS PHY
|
| /freebsd-14.2/contrib/llvm-project/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() 543 void clang::ApplyHeaderSearchOptions(HeaderSearch &HS, in ApplyHeaderSearchOptions() argument 547 InitHeaderSearch Init(HS, HSOpts.Verbose, HSOpts.Sysroot); in ApplyHeaderSearchOptions() 569 if (auto Dir = HS.getFileMgr().getOptionalDirectoryRef(P)) in ApplyHeaderSearchOptions() 570 HS.getModuleMap().setBuiltinIncludeDir(*Dir); in ApplyHeaderSearchOptions()
|
| H A D | HeaderSearch.cpp | 448 StringRef &Filename, HeaderSearch &HS, SourceLocation IncludeLoc, in LookupFile() argument 473 return HS.getFileAndSuggestModule( in LookupFile() 479 return DoFrameworkLookup(Filename, HS, SearchPath, RelativePath, in LookupFile() 520 if (auto Res = HS.getFileMgr().getOptionalFileRef(Dest, OpenFile)) { in LookupFile() 528 HS.noteLookupUsage(HS.searchDirIdx(*this), IncludeLoc); in LookupFile() 597 FileManager &FileMgr = HS.getFileMgr(); in DoFrameworkLookup() 607 HS.LookupFrameworkCache(Filename.substr(0, SlashPos)); in DoFrameworkLookup() 715 if (!HS.findUsableModuleForFrameworkHeader(*File, FrameworkPath, in DoFrameworkLookup() 1585 static bool suggestModule(HeaderSearch &HS, FileEntryRef File, in suggestModule() argument 1589 HS.findModuleForHeader(File, /*AllowTextual*/true); in suggestModule() [all …]
|
| /freebsd-14.2/contrib/llvm-project/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)
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | twl4030-audio.txt | 16 -ti,ramp_delay_value: HS ramp delay configuration to reduce pop noise 17 -ti,hs_extmute: Use external mute for HS pop reduction
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/connector/ |
| H A D | samsung,usb-connector-11pin.txt | 19 0: High Speed (HS), 27 Micro-USB connector with HS lines routed via controller (MUIC) and MHL lines
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm/ |
| H A D | socfpga_cyclone5_chameleon96.dts | 90 label = "HS-I2C2"; 102 label = "HS-SPI1";
|
| H A D | omap3-cm-t3x.dtsi | 24 /* HS USB Port 1 Power */ 33 /* HS USB Port 2 Power */ 42 /* HS USB Host PHY on PORT 1 */ 49 /* HS USB Host PHY on PORT 2 */
|