Lines Matching refs:value
277 /* use a value high enough to be above all the PFs, which has least significant
294 /* offset to nearest value which has lsb nibble matching DPM */
297 /* add offset to rounded-up cid to get a value which could be used with UIO */
305 /* how many cids were wasted - need this value for cid allocation */
2002 * Returns zero if operation has successfully completed, a positive value if the
2024 * Returns zero if operation has successfully completed, a positive value if the
2495 #define SET_FLAG(value, mask, flag) \
2497 (value) &= ~(mask);\
2498 (value) |= ((flag) << (mask##_SHIFT));\
2501 #define GET_FLAG(value, mask) \
2502 (((value) & (mask)) >> (mask##_SHIFT))
2504 #define GET_FIELD(value, fname) \
2505 (((value) & (fname##_MASK)) >> (fname##_SHIFT))