Home
last modified time | relevance | path

Searched defs:ht (Results 1 – 25 of 30) sorted by relevance

12

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Ddict.c65 static void _dictReset(dict *ht) { in _dictReset()
74 dict *ht = malloc(sizeof(*ht)); in dictCreate() local
88 static int dictExpand(dict *ht, unsigned long size) { in dictExpand()
135 static int dictAdd(dict *ht, void *key, void *val) { in dictAdd()
182 static int dictDelete(dict *ht, const void *key) { in dictDelete()
213 static int _dictClear(dict *ht) { in _dictClear()
238 static void dictRelease(dict *ht) { in dictRelease()
243 static dictEntry *dictFind(dict *ht, const void *key) { in dictFind()
258 static dictIterator *dictGetIterator(dict *ht) { in dictGetIterator()
295 static int _dictExpandIfNeeded(dict *ht) { in _dictExpandIfNeeded()
[all …]
H A Ddict.h70 dict *ht; member
79 #define dictFreeEntryVal(ht, entry) \ argument
83 #define dictSetHashVal(ht, entry, _val_) do { \ argument
90 #define dictFreeEntryKey(ht, entry) \ argument
94 #define dictSetHashKey(ht, entry, _key_) do { \ argument
101 #define dictCompareHashKeys(ht, key1, key2) \ argument
106 #define dictHashKey(ht, key) (ht)->type->hashFunction(key) argument
110 #define dictSlots(ht) ((ht)->size) argument
111 #define dictSize(ht) ((ht)->used) argument
/f-stack/dpdk/lib/librte_hash/
H A Drte_fbk_hash.h96 rte_fbk_hash_get_bucket(const struct rte_fbk_hash_table *ht, uint32_t key) in rte_fbk_hash_get_bucket()
119 rte_fbk_hash_add_key_with_bucket(struct rte_fbk_hash_table *ht, in rte_fbk_hash_add_key_with_bucket()
164 rte_fbk_hash_add_key(struct rte_fbk_hash_table *ht, in rte_fbk_hash_add_key()
186 rte_fbk_hash_delete_key_with_bucket(struct rte_fbk_hash_table *ht, in rte_fbk_hash_delete_key_with_bucket()
229 rte_fbk_hash_delete_key(struct rte_fbk_hash_table *ht, uint32_t key) in rte_fbk_hash_delete_key()
249 rte_fbk_hash_lookup_with_bucket(const struct rte_fbk_hash_table *ht, in rte_fbk_hash_lookup_with_bucket()
279 rte_fbk_hash_lookup(const struct rte_fbk_hash_table *ht, uint32_t key) in rte_fbk_hash_lookup()
293 rte_fbk_hash_clear_all(struct rte_fbk_hash_table *ht) in rte_fbk_hash_clear_all()
308 rte_fbk_hash_get_load_factor(struct rte_fbk_hash_table *ht) in rte_fbk_hash_get_load_factor()
H A Drte_fbk_hash.c81 struct rte_fbk_hash_table *ht = NULL; in rte_fbk_hash_create() local
181 rte_fbk_hash_free(struct rte_fbk_hash_table *ht) in rte_fbk_hash_free()
/f-stack/dpdk/lib/librte_ring/
H A Drte_ring_peek_c11_mem.h31 __rte_ring_st_get_tail(struct rte_ring_headtail *ht, uint32_t *tail, in __rte_ring_st_get_tail()
53 __rte_ring_st_set_head_tail(struct rte_ring_headtail *ht, uint32_t tail, in __rte_ring_st_set_head_tail()
75 __rte_ring_hts_get_tail(struct rte_ring_hts_headtail *ht, uint32_t *tail, in __rte_ring_hts_get_tail()
97 __rte_ring_hts_set_head_tail(struct rte_ring_hts_headtail *ht, uint32_t tail, in __rte_ring_hts_set_head_tail()
H A Drte_ring_hts_c11_mem.h25 __rte_ring_hts_update_tail(struct rte_ring_hts_headtail *ht, uint32_t old_tail, in __rte_ring_hts_update_tail()
42 __rte_ring_hts_head_wait(const struct rte_ring_hts_headtail *ht, in __rte_ring_hts_head_wait()
H A Drte_ring_rts_c11_mem.h25 __rte_ring_rts_update_tail(struct rte_ring_rts_headtail *ht) in __rte_ring_rts_update_tail()
53 __rte_ring_rts_head_wait(const struct rte_ring_rts_headtail *ht, in __rte_ring_rts_head_wait()
H A Drte_ring_generic.h14 update_tail(struct rte_ring_headtail *ht, uint32_t old_val, uint32_t new_val, in update_tail()
H A Drte_ring_c11_mem.h14 update_tail(struct rte_ring_headtail *ht, uint32_t old_val, uint32_t new_val, in update_tail()
H A Drte_ring.c96 struct rte_ring_headtail *ht; in reset_headtail() local
H A Drte_ring_core.h109 volatile union __rte_ring_hts_pos ht; member
/f-stack/freebsd/netpfil/ipfw/
H A Ddn_heap.c329 void **ht; /* bucket heads */ member
338 dn_ht_init(struct dn_ht *ht, int buckets, int ofs, in dn_ht_init()
430 dn_ht_free(struct dn_ht *ht, int flags) in dn_ht_free()
444 dn_ht_entries(struct dn_ht *ht) in dn_ht_entries()
451 dn_ht_find(struct dn_ht *ht, uintptr_t key, int flags, void *arg) in dn_ht_find()
494 dn_ht_scan(struct dn_ht *ht, int (*fn)(void *, void *), void *arg) in dn_ht_scan()
529 dn_ht_scan_bucket(struct dn_ht *ht, int *bucket, int (*fn)(void *, void *), in dn_ht_scan_bucket()
/f-stack/app/redis-5.0.5/src/
H A Dlazyfree.c36 dict *ht = obj->ptr; in lazyfreeGetFreeEffort() local
42 dict *ht = obj->ptr; in lazyfreeGetFreeEffort() local
H A Ddict.c102 static void _dictReset(dictht *ht) in _dictReset()
296 dictht *ht; in dictAddRaw() local
403 int dictDelete(dict *ht, const void *key) { in dictDelete()
428 dictEntry *dictUnlink(dict *ht, const void *key) { in dictUnlink()
442 int _dictClear(dict *d, dictht *ht, void(callback)(void *)) { in _dictClear()
566 dictht *ht = &iter->d->ht[iter->table]; in dictNext() local
1035 size_t _dictGetStatsHt(char *buf, size_t bufsize, dictht *ht, int tableid) { in _dictGetStatsHt()
H A Ddebug.c592 dict *ht = NULL; in debugCommand() local
1229 unsigned long ht[256] = {0}; in dumpX86Calls() local
H A Ddict.h79 dictht ht[2]; member
H A Dt_set.c55 dict *ht = subject->ptr; in setTypeAdd() local
H A Dt_zset.c1823 } ht; member
1936 dict *ht = op->subject->ptr; in zuiLength() local
2096 dict *ht = op->subject->ptr; in zuiFind() local
/f-stack/app/redis-5.0.5/utils/hashtable/
H A Drehashing.c36 void showBuckets(dictht ht) { in showBuckets()
/f-stack/freebsd/mips/ingenic/
H A Djz4780_lcd.c202 u_int hds, hde, ht, vds, vde, vt; in jzlcd_set_videomode() local
/f-stack/freebsd/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfman_kg.c455 uint8_t offset, shift, ht; in fman_kg_build_scheme() local
/f-stack/freebsd/arm/allwinner/
H A Da10_fb.c132 #define BASIC3_HT(ht) (((ht) - 1) << 16) argument
/f-stack/freebsd/contrib/ck/src/
H A Dck_ht.c386 ck_ht_gc(struct ck_ht *ht, unsigned long cycles, unsigned long seed) in ck_ht_gc()
/f-stack/freebsd/net80211/
H A Dieee80211_hostap.c1719 const struct ieee80211_ie_htinfo *ht = in ishtmixed() local
/f-stack/tools/ifconfig/
H A Difbridge.c245 u_int8_t ht, fd, ma, hc, pro; in bridge_status() local

12