OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:valueForBit
(Results
1 - 2
of
2
) sorted by null
/system/core/include/utils/
BitSet.h
37
static inline uint32_t
valueForBit
(uint32_t n) { return 0x80000000 >> n; }
52
inline bool hasBit(uint32_t n) const { return value &
valueForBit
(n); }
55
inline void markBit(uint32_t n) { value |=
valueForBit
(n); }
58
inline void clearBit(uint32_t n) { value &= ~
valueForBit
(n); }
/frameworks/native/libs/input/
VelocityControl.cpp
69
mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::
valueForBit
(0)), &mRawPosition);
Completed in 60 milliseconds