Lines Matching refs:container
22 * @param type type of container
23 * @param container container to extract bit-field from
28 #define JRT_EXTRACT_BIT_FIELD(type, container, lsb, width) \
29 (((container) >> lsb) & ((((type) 1) << (width)) - 1))
34 * @param type type of container
35 * @param container container to insert bit-field to
41 #define JRT_SET_BIT_FIELD_VALUE(type, container, new_bit_field_value, lsb, width) \
42 (((container) & ~(((((type) 1) << (width)) - 1) << (lsb))) | (((type) new_bit_field_value) << (lsb)))