| /freebsd-13.1/sys/dev/ath/ath_hal/ar5416/ |
| H A D | ar5416_phy.c | 31 #define HT IEEE80211_T_HT macro 53 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x81, 0x00, 1, 8 }, 55 /* 26 Mb */ { AH_TRUE, HT, 26000, 0x83, 0x00, 3, 8 }, 56 /* 39 Mb */ { AH_TRUE, HT, 39000, 0x84, 0x00, 4, 8 }, 58 /*58.5 Mb */ { AH_TRUE, HT, 58500, 0x86, 0x00, 6, 8 }, 59 /* 65 Mb */ { AH_TRUE, HT, 65000, 0x87, 0x00, 7, 8 }, 60 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x88, 0x00, 8, 8 }, 65 /* 104 Mb */ { AH_TRUE, HT, 104000, 0x8d, 0x00, 13, 8 }, 66 /* 117 Mb */ { AH_TRUE, HT, 117000, 0x8e, 0x00, 14, 8 }, 67 /* 130 Mb */ { AH_TRUE, HT, 130000, 0x8f, 0x00, 15, 8 }, [all …]
|
| /freebsd-13.1/sys/net80211/ |
| H A D | ieee80211_phy.c | 69 #define HT IEEE80211_T_HT macro 206 [12] = { .phy = HT, 6500, 0x00, N(0), 4 }, 207 [13] = { .phy = HT, 13000, 0x00, N(1), 6 }, 208 [14] = { .phy = HT, 19500, 0x00, N(2), 6 }, 209 [15] = { .phy = HT, 26000, 0x00, N(3), 8 }, 210 [16] = { .phy = HT, 39000, 0x00, N(4), 8 }, 211 [17] = { .phy = HT, 52000, 0x00, N(5), 8 }, 212 [18] = { .phy = HT, 58500, 0x00, N(6), 8 }, 213 [19] = { .phy = HT, 65000, 0x00, N(7), 8 }, 215 [20] = { .phy = HT, 13000, 0x00, N(8), 4 }, [all …]
|
| /freebsd-13.1/sys/contrib/dev/ath/ath_hal/ar9300/ |
| H A D | ar9300_phy.c | 29 #define HT IEEE80211_T_HT macro 224 /* 6.5 Mb */ { AH_TRUE, HT, 6500, 0x80, 0x00, 0, 4 }, 225 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x81, 0x00, 1, 6 }, 226 /*19.5 Mb */ { AH_TRUE, HT, 19500, 0x82, 0x00, 2, 6 }, 227 /* 26 Mb */ { AH_TRUE, HT, 26000, 0x83, 0x00, 3, 8 }, 228 /* 39 Mb */ { AH_TRUE, HT, 39000, 0x84, 0x00, 4, 8 }, 229 /* 52 Mb */ { AH_TRUE, HT, 52000, 0x85, 0x00, 5, 8 }, 230 /*58.5 Mb */ { AH_TRUE, HT, 58500, 0x86, 0x00, 6, 8 }, 231 /* 65 Mb */ { AH_TRUE, HT, 65000, 0x87, 0x00, 7, 8 }, 233 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x88, 0x00, 8, 4 }, [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ScopedHashTable.h | 87 ScopedHashTable<K, V, KInfo, AllocatorTy> &HT; variable 97 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT); 229 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, Allocator> &ht) : HT(ht) { in ScopedHashTableScope() 230 PrevScope = HT.CurScope; in ScopedHashTableScope() 231 HT.CurScope = this; in ScopedHashTableScope() 237 assert(HT.CurScope == this && "Scope imbalance!"); in ~ScopedHashTableScope() 238 HT.CurScope = PrevScope; in ~ScopedHashTableScope() 244 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope() 246 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope() 248 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()]; in ~ScopedHashTableScope() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | MultiOnDiskHashTable.h | 153 auto &HT = ODT->Table; in condense() local 154 Info &InfoObj = HT.getInfoObj(); in condense() 156 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in condense() 249 auto &HT = ODT->Table; in find() local 250 auto It = HT.find_hashed(Key, KeyHash); in find() 251 if (It != HT.end()) in find() 252 HT.getInfoObj().ReadDataInto(Key, It.getDataPtr(), It.getDataLen(), in find() 274 auto &HT = ODT->Table; in findAll() local 275 Info &InfoObj = HT.getInfoObj(); in findAll() 276 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in findAll()
|
| /freebsd-13.1/contrib/netbsd-tests/usr.bin/rump_server/ |
| H A D | t_disk.sh | 95 env LD_PRELOAD=/usr/lib/librumphijack.so stat -f %HT /rump/img 102 env LD_PRELOAD=/usr/lib/librumphijack.so stat -f %HT /rump/img 109 env LD_PRELOAD=/usr/lib/librumphijack.so stat -f %HT /rump/img 116 env LD_PRELOAD=/usr/lib/librumphijack.so stat -f %HT /rump/img
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGVLIW.cpp | 215 ScheduleHazardRecognizer::HazardType HT = in listScheduleTopDown() local 217 if (HT == ScheduleHazardRecognizer::NoHazard) { in listScheduleTopDown() 223 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in listScheduleTopDown()
|
| /freebsd-13.1/sys/contrib/device-tree/src/mips/loongson/ |
| H A D | loongson64c-package.dtsi | 22 /* 3A HT Config Space */ 24 /* 3B HT Config Space */
|
| H A D | loongson3-package.dtsi | 22 /* 3A HT Config Space */ 24 /* 3B HT Config Space */
|
| /freebsd-13.1/contrib/bearssl/test/ |
| H A D | test_x509.c | 203 } HT; typedef 205 static HT * 208 HT *ht; in HT_new() 265 HT_expand(HT *ht) in HT_expand() 297 HT_put(HT *ht, const char *name, void *value) in HT_put() 348 HT_get(const HT *ht, const char *name) in HT_get() 387 HT_free(HT *ht, void (*free_value)(void *value)) in HT_free() 829 parse_keyvalue(HT *d) in parse_keyvalue() 874 static HT *keys; 880 static HT *trust_anchors; [all …]
|
| /freebsd-13.1/share/examples/diskless/ |
| H A D | ME | 44 /conf/HT.<category> directories. You put the actual configuration file in 45 /conf/HT.<category> and make a softlink from 46 /conf/ME/<appropriate-machines>/config-file to "../HT.<category/config-file".
|
| H A D | README.BOOTP | 43 involved are HT.DISKLESS/ and 192.157.86.12/. 46 /conf/$IP/ ) contains all the junk. The HT.DISKLESS directory exists 55 >> NOTE << HT.DISKLESS/ttys contains the typical configuration required
|
| H A D | README.TEMPLATING | 58 /conf/HT.SHELL/resolv.conf. It may sound a little messy, but this 167 "../HT.xxxx/filename", where HT.xxxx is something like HT.STD ... this
|
| /freebsd-13.1/contrib/ntp/include/ |
| H A D | ascii.h | 50 #define HT 9 macro
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | WinEHPrepare.cpp | 150 WinEHHandlerType HT; in addTryBlockMapEntry() local 153 HT.TypeDescriptor = nullptr; in addTryBlockMapEntry() 155 HT.TypeDescriptor = cast<GlobalVariable>(TypeInfo->stripPointerCasts()); in addTryBlockMapEntry() 156 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); in addTryBlockMapEntry() 157 HT.Handler = CPI->getParent(); in addTryBlockMapEntry() 160 HT.CatchObj.Alloca = AI; in addTryBlockMapEntry() 162 HT.CatchObj.Alloca = nullptr; in addTryBlockMapEntry() 163 TBME.HandlerArray.push_back(HT); in addTryBlockMapEntry()
|
| H A D | PostRASchedulerList.cpp | 573 ScheduleHazardRecognizer::HazardType HT = in ListScheduleTopDown() local 575 if (HT == ScheduleHazardRecognizer::NoHazard) { in ListScheduleTopDown() 592 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in ListScheduleTopDown()
|
| /freebsd-13.1/contrib/ntp/sntp/libopts/ |
| H A D | putshell.c | 96 case HT: in string_size() 150 case HT: add_esc_ch('t'); break; in optionQuoteString()
|
| H A D | autoopts.h | 61 #define HT '\t' macro
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinException.cpp | 854 for (const WinEHHandlerType &HT : TBME.HandlerArray) { in emitCXXFrameHandler3Table() local 859 if (HT.CatchObj.FrameIndex != INT_MAX) { in emitCXXFrameHandler3Table() 860 int Offset = getFrameIndexOffset(HT.CatchObj.FrameIndex, FuncInfo); in emitCXXFrameHandler3Table() 868 getMCSymbolForMBB(Asm, HT.Handler.dyn_cast<MachineBasicBlock *>()); in emitCXXFrameHandler3Table() 871 OS.emitInt32(HT.Adjectives); in emitCXXFrameHandler3Table() 874 OS.emitValue(create32bitRef(HT.TypeDescriptor), 4); in emitCXXFrameHandler3Table()
|
| /freebsd-13.1/usr.sbin/kbdcontrol/ |
| H A D | lex.l | 90 HT|ht { number = 9; return TNUM; }
|
| /freebsd-13.1/libexec/getty/ |
| H A D | gettytab.h | 147 #define HT gettyflags[0].value macro
|
| /freebsd-13.1/tools/lua/ |
| H A D | template.lua | 82 local HT = byte("\t") 128 if c == SP or c == HT or c == VT or c == NUL then
|
| /freebsd-13.1/lib/libomp/ |
| H A D | kmp_i18n_default.inc | 62 "HT enabled", 63 "HT disabled", 294 "%1$s: HT enabled; %2$d packages; %3$d TPU; %4$d TPUs per package", 295 "%1$s: HT disabled; %2$d packages",
|
| /freebsd-13.1/sys/contrib/openzfs/config/ |
| H A D | ax_count_cpus.m4 | 12 # virtual and HT cores) currently available to use on the machine and
|
| /freebsd-13.1/contrib/sendmail/contrib/ |
| H A D | mail.local.linux | 60 MB(A$HT/1H5:4)AJ]*$8S0E>.=H2&'H7,420CE))`Y:0.1VE*N*K2E03<M6)Y 94 M:J-RX*$@BAHB:C(E.B8HJA\JVALL6I.7B1PHP)X0F@`L09$HT).OEYUUP`;Z 148 M`?"^A`O49.K.R<TH&5CQII=P8%N=POSQOMAGJ$3")9L-+HT,[*<F-<U@G]@2
|