Home | History | Annotate | Download | only in common

Lines Matching refs:props

125 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
126 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
129 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
131 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIFT))