| /src/sys/dev/ath/ath_hal/ar5416/ |
| H A D | ar5416_phy.c | 29 #define HT IEEE80211_T_HT macro 50 /* 6.5 Mb */ { AH_TRUE, HT, 6500, 0x80, 0x00, 0, 8 }, 51 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x81, 0x00, 1, 8 }, 52 /*19.5 Mb */ { AH_TRUE, HT, 19500, 0x82, 0x00, 2, 8 }, 53 /* 26 Mb */ { AH_TRUE, HT, 26000, 0x83, 0x00, 3, 8 }, 54 /* 39 Mb */ { AH_TRUE, HT, 39000, 0x84, 0x00, 4, 8 }, 55 /* 52 Mb */ { AH_TRUE, HT, 52000, 0x85, 0x00, 5, 8 }, 56 /*58.5 Mb */ { AH_TRUE, HT, 58500, 0x86, 0x00, 6, 8 }, 57 /* 65 Mb */ { AH_TRUE, HT, 65000, 0x87, 0x00, 7, 8 }, 58 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x88, 0x00, 8, 8 }, [all …]
|
| /src/sys/net80211/ |
| H A D | ieee80211_phy.c | 67 #define HT IEEE80211_T_HT macro 204 [12] = { .phy = HT, 6500, 0x00, N(0), 4 }, 205 [13] = { .phy = HT, 13000, 0x00, N(1), 6 }, 206 [14] = { .phy = HT, 19500, 0x00, N(2), 6 }, 207 [15] = { .phy = HT, 26000, 0x00, N(3), 8 }, 208 [16] = { .phy = HT, 39000, 0x00, N(4), 8 }, 209 [17] = { .phy = HT, 52000, 0x00, N(5), 8 }, 210 [18] = { .phy = HT, 58500, 0x00, N(6), 8 }, 211 [19] = { .phy = HT, 65000, 0x00, N(7), 8 }, 213 [20] = { .phy = HT, 13000, 0x00, N(8), 4 }, [all …]
|
| /src/crypto/openssl/include/internal/ |
| H A D | hashtable.h | 20 typedef struct ht_internal_st HT; typedef 199 pfx ossl_unused int ossl_ht_##name##_##vtype##_insert(HT *h, HT_KEY *key, \ 225 pfx ossl_unused vtype *ossl_unused ossl_ht_##name##_##vtype##_get(HT *h, \ 251 int ossl_ht_##name##_##vtype##_insert(HT *h, HT_KEY *key, vtype *data, \ 254 vtype *ossl_unused ossl_ht_##name##_##vtype##_get(HT *h, \ 282 HT *ossl_ht_new(const HT_CONFIG *conf); 287 void ossl_ht_free(HT *htable); 292 void ossl_ht_read_lock(HT *htable); 297 void ossl_ht_write_lock(HT *htable); 302 void ossl_ht_read_unlock(HT *htable); [all …]
|
| /src/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 …]
|
| /src/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); 228 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, Allocator> &ht) : HT(ht) { in ScopedHashTableScope() 229 PrevScope = HT.CurScope; in ScopedHashTableScope() 230 HT.CurScope = this; in ScopedHashTableScope() 236 assert(HT.CurScope == this && "Scope imbalance!"); in ~ScopedHashTableScope() 237 HT.CurScope = PrevScope; in ~ScopedHashTableScope() 243 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope() 245 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope() 247 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()]; in ~ScopedHashTableScope() [all …]
|
| /src/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() 251 auto &HT = ODT->Table; in find() local 252 auto It = HT.find_hashed(Key, KeyHash); in find() 253 if (It != HT.end()) in find() 254 HT.getInfoObj().ReadDataInto(Key, It.getDataPtr(), It.getDataLen(), in find() 276 auto &HT = ODT->Table; in findAll() local 277 Info &InfoObj = HT.getInfoObj(); in findAll() 278 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in findAll()
|
| /src/crypto/openssl/crypto/hashtable/ |
| H A D | hashtable.c | 109 HT *ht; 175 HT *ossl_ht_new(const HT_CONFIG *conf) in ossl_ht_new() 177 HT *new = OPENSSL_zalloc(sizeof(*new)); in ossl_ht_new() 234 void ossl_ht_read_lock(HT *htable) in ossl_ht_read_lock() 239 void ossl_ht_read_unlock(HT *htable) in ossl_ht_read_unlock() 244 void ossl_ht_write_lock(HT *htable) in ossl_ht_write_lock() 250 void ossl_ht_write_unlock(HT *htable) in ossl_ht_write_unlock() 282 static int ossl_ht_flush_internal(HT *h) in ossl_ht_flush_internal() 313 int ossl_ht_flush(HT *h) in ossl_ht_flush() 318 void ossl_ht_free(HT *h) in ossl_ht_free() [all …]
|
| /src/crypto/openssl/doc/internal/man3/ |
| H A D | ossl_ht_new.pod | 23 HT *ossl_ht_new(const HT_CONFIG *conf); 24 void ossl_ht_free(HT *htable); 25 void ossl_ht_read_lock(HT *htable); 26 void ossl_ht_read_unlock(HT *htable); 27 void ossl_ht_write_lock(HT *htable); 28 void ossl_ht_write_unlock(HT *htable); 29 int ossl_ht_flush(HT *htable); 30 int ossl_ht_insert(HT *htable, HT_KEY *key, HT_VALUE *data, HT_VALUE **olddata); 31 int ossl_ht_delete(HT *htable, HT_KEY *key); 32 size_t ossl_ht_count(HT *htable); [all …]
|
| /src/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
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGVLIW.cpp | 211 ScheduleHazardRecognizer::HazardType HT = in listScheduleTopDown() local 213 if (HT == ScheduleHazardRecognizer::NoHazard) { in listScheduleTopDown() 219 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in listScheduleTopDown()
|
| /src/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 */
|
| /src/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() 365 HT_clear(HT *ht, void (*free_value)(void *value)) in HT_clear() 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; [all …]
|
| /src/contrib/ntp/include/ |
| H A D | ascii.h | 50 #define HT 9 macro
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | WinEHPrepare.cpp | 164 WinEHHandlerType HT; in addTryBlockMapEntry() local 167 HT.TypeDescriptor = nullptr; in addTryBlockMapEntry() 169 HT.TypeDescriptor = cast<GlobalVariable>(TypeInfo->stripPointerCasts()); in addTryBlockMapEntry() 170 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); in addTryBlockMapEntry() 171 HT.Handler = CPI->getParent(); in addTryBlockMapEntry() 174 HT.CatchObj.Alloca = AI; in addTryBlockMapEntry() 176 HT.CatchObj.Alloca = nullptr; in addTryBlockMapEntry() 177 TBME.HandlerArray.push_back(HT); in addTryBlockMapEntry()
|
| H A D | PostRASchedulerList.cpp | 570 ScheduleHazardRecognizer::HazardType HT = in ListScheduleTopDown() local 572 if (HT == ScheduleHazardRecognizer::NoHazard) { in ListScheduleTopDown() 589 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in ListScheduleTopDown()
|
| /src/contrib/ntp/sntp/libopts/ |
| H A D | putshell.c | 73 case HT: in string_size() 129 case HT: add_esc_ch('t'); break; in optionQuoteString()
|
| H A D | autoopts.h | 64 #define HT '\t' macro
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinException.cpp | 853 for (const WinEHHandlerType &HT : TBME.HandlerArray) { in emitCXXFrameHandler3Table() local 858 if (HT.CatchObj.FrameIndex != INT_MAX) { in emitCXXFrameHandler3Table() 859 int Offset = getFrameIndexOffset(HT.CatchObj.FrameIndex, FuncInfo); in emitCXXFrameHandler3Table() 867 Asm, dyn_cast_if_present<MachineBasicBlock *>(HT.Handler)); in emitCXXFrameHandler3Table() 870 OS.emitInt32(HT.Adjectives); in emitCXXFrameHandler3Table() 873 OS.emitValue(create32bitRef(HT.TypeDescriptor), 4); in emitCXXFrameHandler3Table()
|
| /src/crypto/openssl/test/ |
| H A D | lhash_test.c | 238 HT *ht = NULL; in test_int_hashtable() 415 HT *h; in test_hashtable_stress() 492 static HT *m_ht = NULL;
|
| /src/libexec/getty/ |
| H A D | gettytab.h | 144 #define HT gettyflags[0].value macro
|
| /src/usr.sbin/kbdcontrol/ |
| H A D | lex.l | 88 HT|ht { number = 9; return TNUM; }
|
| /src/crypto/openssl/fuzz/ |
| H A D | hashtable.c | 50 static HT *fuzzer_table = NULL;
|
| /src/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
| H A D | dsa-threecolumn.pem | 230 7HT
|
| /src/tools/lua/ |
| H A D | template.lua | 81 local HT = byte("\t") 127 if c == SP or c == HT or c == VT or c == NUL then
|