Home
last modified time | relevance | path

Searched defs:hasBit (Results 1 – 1 of 1) sorted by relevance

/system/core/libutils/include/utils/
DBitSet.h67 inline bool hasBit(uint32_t n) const { return hasBit(value, n); } in hasBit() function
69 static inline bool hasBit(uint32_t value, uint32_t n) { return value & valueForBit(n); } in hasBit() function
211 inline bool hasBit(uint32_t n) const { return hasBit(value, n); } in hasBit() function
213 static inline bool hasBit(uint64_t value, uint32_t n) { return value & valueForBit(n); } in hasBit() function