Lines Matching refs:from
21 * of the quantities that we deal with are DMAed to/from host memory,
109 * Extract bit field portion [low,high) from the native-endian element
130 * Extract bit field portion [low,high) from the 64-bit little-endian
137 * Extract bit field portion [low,high) from the 32-bit little-endian
427 #define EF4_AND_OWORD(oword, from, mask) \
429 (oword).u64[0] = (from).u64[0] & (mask).u64[0]; \
430 (oword).u64[1] = (from).u64[1] & (mask).u64[1]; \
433 #define EF4_OR_OWORD(oword, from, mask) \
435 (oword).u64[0] = (from).u64[0] | (mask).u64[0]; \
436 (oword).u64[1] = (from).u64[1] | (mask).u64[1]; \