HomeSort by relevance Sort by last modified time
    Searched defs:ExtractBits (Results 1 - 4 of 4) sorted by null

  /external/vixl/src/
utils-vixl.h 510 inline Td ExtractBits(Ts value, int least_significant_bit, Td mask) {
  /external/vixl/src/aarch64/
simulator-aarch64.h 679 uint32_t ExtractBits(int msb, int lsb) const {
682 VIXL_DEPRECATED("ExtractBits", uint32_t Bits(int msb, int lsb) const) {
683 return ExtractBits(msb, lsb);
    [all...]
instructions-aarch64.h 178 uint32_t ExtractBits(int msb, int lsb) const {
181 VIXL_DEPRECATED("ExtractBits", uint32_t Bits(int msb, int lsb) const) {
182 return ExtractBits(msb, lsb);
  /external/mdnsresponder/mDNSShared/
CommonServices.h 686 /*! @function ExtractBits
697 ExtractBits( 0x30000000U, 0xF0000000U, 28 ) == 0x3
700 #define ExtractBits( X, MASK, SHIFT ) ( ( ( X ) >> ( SHIFT ) ) & ( ( MASK ) >> ( SHIFT ) ) )
    [all...]

Completed in 216 milliseconds