Searched refs:value_for_bit (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/ui/events/gesture_detection/
H A Dbitset_32.h24 static inline uint32_t value_for_bit(uint32_t n) { function in struct:ui::BitSet32
43 return (value & value_for_bit(n)) != 0;
47 inline void mark_bit(uint32_t n) { value |= value_for_bit(n); }
50 inline void clear_bit(uint32_t n) { value &= ~value_for_bit(n); }

Completed in 93 milliseconds