Home
last modified time | relevance | path

Searched refs:DIR_TAG_WIDTH (Results 1 – 5 of 5) sorted by relevance

/dports/www/trafficserver/trafficserver-9.1.1/iocore/cache/
H A DP_CacheDir.h38 #define DIR_TAG_WIDTH 12 macro
39 #define DIR_MASK_TAG(_t) ((_t) & ((1 << DIR_TAG_WIDTH) - 1))
197 #define dir_tag(_e) ((uint32_t)((_e)->w[2] & ((1 << DIR_TAG_WIDTH) - 1)))
199 …(_e)->w[2] = (uint16_t)(((_e)->w[2] & ~((1 << DIR_TAG_WIDTH) - 1)) | ((_t) & ((1 << DIR_TAG_WIDTH)…
H A DCache.cc3036 uint32_t h = (key->slice32(2) >> DIR_TAG_WIDTH) % VOL_HASH_TABLE_SIZE; in key_to_vol()
/dports/www/trafficserver/trafficserver-9.1.1/src/traffic_cache_tool/
H A DCacheDefs.h361 constexpr int DIR_TAG_WIDTH = 12; variable
377 #define DIR_MASK_TAG(_t) ((_t) & ((1 << DIR_TAG_WIDTH) - 1))
378 #define dir_tag(_e) ((uint32_t)((_e)->w[2] & ((1 << DIR_TAG_WIDTH) - 1)))
H A DCacheTool.cc1025 uint32_t h = (key->slice32(2) >> DIR_TAG_WIDTH) % VOL_HASH_TABLE_SIZE; in key_to_stripe()
/dports/www/trafficserver/trafficserver-9.1.1/doc/developer-guide/cache-architecture/
H A Ddata-structures.en.rst475 bit slice of the :arg:`key` less the bottom :code:`DIR_TAG_WIDTH` (12) bits.