| /src/sys/external/isc/atheros_hal/dist/ar5416/ |
| ar5416_phy.c | 29 #define HT IEEE80211_T_HT 50 /* 6.5 Mb */ { AH_TRUE, HT, 6500, 0x80, 0x00, 0, 8, 0, 0 }, 51 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x81, 0x00, 1, 8, 0, 0 }, 52 /*19.5 Mb */ { AH_TRUE, HT, 19500, 0x82, 0x00, 2, 8, 0, 0 }, 53 /* 26 Mb */ { AH_TRUE, HT, 26000, 0x83, 0x00, 3, 8, 0, 0 }, 54 /* 39 Mb */ { AH_TRUE, HT, 39000, 0x84, 0x00, 4, 8, 0, 0 }, 55 /* 52 Mb */ { AH_TRUE, HT, 52000, 0x85, 0x00, 5, 8, 0, 0 }, 56 /*58.5 Mb */ { AH_TRUE, HT, 58500, 0x86, 0x00, 6, 8, 0, 0 }, 57 /* 65 Mb */ { AH_TRUE, HT, 65000, 0x87, 0x00, 7, 8, 0, 0 }, 58 /* 13 Mb */ { AH_TRUE, HT, 13000, 0x88, 0x00, 8, 8, 0, 0 } [all...] |
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| hashtable.h | 20 typedef struct ht_internal_st HT; 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/external/bsd/ntp/dist/include/ |
| ascii.h | 52 #define HT 9
|
| /src/usr.bin/config/ |
| hash.c | 98 ht_init(struct hashtab *ht, size_t sz) 102 ht->ht_tab = emalloc(sz * sizeof (ht->ht_tab[0])); 103 ht->ht_size = sz; 104 ht->ht_mask = sz - 1; 106 TAILQ_INIT(&ht->ht_tab[n]); 107 ht->ht_used = 0; 108 ht->ht_lim = HASHFRACTION(sz); 115 ht_expand(struct hashtab *ht) 121 n = ht->ht_size * 2 209 struct hashtab *ht; local 233 struct hashtab *ht; local [all...] |
| defs.h | 548 #define ht_insert2(ht, nam1, nam2, val) ht_insrep2(ht, nam1, nam2, val, 0) 549 #define ht_insert(ht, nam, val) ht_insrep(ht, nam, val, 0) 550 #define ht_replace(ht, nam, val) ht_insrep(ht, nam, val, 1) 562 /* typed hash, named struct HT, whose type is string -> struct VT */ 563 #define DECLHASH(HT, VT) \ 564 struct HT; \ 565 struct HT *HT##_create(void); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| ScopedHashTable.h | 13 // ScopedHashTable<int, int> HT; 15 // ScopedHashTableScope<int, int> Scope1(HT); 16 // HT.insert(0, 0); 17 // HT.insert(1, 1); 19 // ScopedHashTableScope<int, int> Scope2(HT); 20 // HT.insert(0, 42); 86 /// HT - The hashtable that we are active for. 87 ScopedHashTable<K, V, KInfo, AllocatorTy> &HT; 89 /// PrevScope - This is the scope that we are shadowing in HT. 97 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT); [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| MultiOnDiskHashTable.h | 153 auto &HT = ODT->Table; 154 Info &InfoObj = HT.getInfoObj(); 156 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { 249 auto &HT = ODT->Table; 250 auto It = HT.find_hashed(Key, KeyHash); 251 if (It != HT.end()) 252 HT.getInfoObj().ReadDataInto(Key, It.getDataPtr(), It.getDataLen(), 274 auto &HT = ODT->Table; 275 Info &InfoObj = HT.getInfoObj() [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/hashtable/ |
| hashtable.c | 111 HT *ht; member in struct:ht_internal_value_st 177 HT *ossl_ht_new(const HT_CONFIG *conf) 179 HT *new = OPENSSL_zalloc(sizeof(*new)); 236 void ossl_ht_read_lock(HT *htable) 241 void ossl_ht_read_unlock(HT *htable) 246 void ossl_ht_write_lock(HT *htable) 252 void ossl_ht_write_unlock(HT *htable) 274 v->ht->config.ht_free_fn((HT_VALUE *)v); 284 static int ossl_ht_flush_internal(HT *h [all...] |
| /src/tests/usr.bin/rump_server/ |
| 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/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| ScheduleDAGVLIW.cpp | 215 ScheduleHazardRecognizer::HazardType HT = 217 if (HT == ScheduleHazardRecognizer::NoHazard) { 223 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
|
| /src/sys/arch/amiga/dev/ |
| kbdmap.h | 41 #define HT 9
|
| grf_rtreg.h | 92 unsigned short HT;
|
| /src/sys/arch/atari/dev/ |
| kbdmap.h | 45 #define HT 9
|
| /src/sys/arch/x68k/include/ |
| kbdmap.h | 15 #define HT 9
|
| /src/sys/arch/x68k/usr.bin/loadkmap/ |
| kbdmap.h | 12 #define HT 9
|
| /src/external/bsd/byacc/dist/ |
| defs.h | 86 #define HT '\t' /* horizontal tab */
|
| /src/libexec/getty/ |
| gettytab.h | 142 #define HT gettyflags[0].value
|
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| trinityd.h | 101 # define HT(x) ((x) << 16)
|
| /src/external/bsd/ntp/dist/sntp/libopts/ |
| autoopts.h | 72 #define HT '\t'
|
| putshell.c | 75 case HT: 131 case HT: add_esc_ch('t'); break;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| WinEHPrepare.cpp | 150 WinEHHandlerType HT; 153 HT.TypeDescriptor = nullptr; 155 HT.TypeDescriptor = cast<GlobalVariable>(TypeInfo->stripPointerCasts()); 156 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); 157 HT.Handler = CPI->getParent(); 160 HT.CatchObj.Alloca = AI; 162 HT.CatchObj.Alloca = nullptr; 163 TBME.HandlerArray.push_back(HT);
|
| PostRASchedulerList.cpp | 573 ScheduleHazardRecognizer::HazardType HT = 575 if (HT == ScheduleHazardRecognizer::NoHazard) { 592 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| lhash_test.c | 238 HT *ht = NULL; local 242 ht = ossl_ht_new(&hash_conf); 244 if (ht == NULL) 251 if (!TEST_int_eq(ossl_ht_test_int_insert(ht, TO_HT_KEY(&key), 260 if (!TEST_int_eq((size_t)ossl_ht_count(ht), n_int_tests)) 266 ossl_ht_foreach_until(ht, int_foreach, NULL); 279 list = ossl_ht_filter(ht, 64, int_filter_all, NULL); 287 todel = ossl_ht_delete(ht, TO_HT_KEY(&key)); 304 ossl_ht_free(ht); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| WinException.cpp | 854 for (const WinEHHandlerType &HT : TBME.HandlerArray) { 859 if (HT.CatchObj.FrameIndex != INT_MAX) { 860 int Offset = getFrameIndexOffset(HT.CatchObj.FrameIndex, FuncInfo); 868 getMCSymbolForMBB(Asm, HT.Handler.dyn_cast<MachineBasicBlock *>()); 871 OS.emitInt32(HT.Adjectives); 874 OS.emitValue(create32bitRef(HT.TypeDescriptor), 4);
|
| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| hashtable.c | 50 static HT *fuzzer_table = NULL;
|