Searched defs:item_t (Results 1 – 5 of 5) sorted by relevance
72 struct item_t struct74 K key;75 V value;76 uint32_t hash;78 void clear () { key = kINVALID; value = vINVALID; hash = 0; } in clear()80 bool operator == (const K &o) { return hb_deref (key) == hb_deref (o); } in operator ==()81 bool operator == (const item_t &o) { return *this == o.key; } in operator ==()82 bool is_unused () const { return key == kINVALID; } in is_unused()83 bool is_tombstone () const { return key != kINVALID && value == vINVALID; } in is_tombstone()84 bool is_real () const { return key != kINVALID && value != vINVALID; } in is_real()[all …]
46 typedef hb_pair_t<int64_t, unsigned> item_t; typedef
38 typedef Type item_t; typedef
443 typedef Type item_t; typedef601 typedef Type item_t; typedef
66 typedef Item item_t; typedef