Searched defs:ExtractBits (Results 1 - 4 of 4) sorted by relevance

/external/vixl/src/
H A Dutils-vixl.h519 inline Td ExtractBits(Ts value, int least_significant_bit, Td mask) { function in namespace:vixl
/external/vixl/src/aarch64/
H A Dsimulator-aarch64.h679 uint32_t ExtractBits(int msb, int lsb) const { function in class:vixl::aarch64::SimSystemRegister
682 VIXL_DEPRECATED("ExtractBits", uint32_t Bits(int msb, int lsb) const) {
683 return ExtractBits(msb, lsb);
H A Dinstructions-aarch64.h178 uint32_t ExtractBits(int msb, int lsb) const { function in class:vixl::aarch64::Instruction
181 VIXL_DEPRECATED("ExtractBits", uint32_t Bits(int msb, int lsb) const) {
182 return ExtractBits(msb, lsb);
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h686 /*! @function ExtractBits
697 ExtractBits( 0x30000000U, 0xF0000000U, 28 ) == 0x3
700 #define ExtractBits( X, MASK, SHIFT ) ( ( ( X ) >> ( SHIFT ) ) & ( ( MASK ) >> ( SHIFT ) ) ) macro

Completed in 157 milliseconds