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
451 #define EFX_AND_OWORD(oword, from, mask) \
453 (oword).u64[0] = (from).u64[0] & (mask).u64[0]; \
454 (oword).u64[1] = (from).u64[1] & (mask).u64[1]; \
457 #define EFX_AND_QWORD(qword, from, mask) \
458 (qword).u64[0] = (from).u64[0] & (mask).u64[0]
460 #define EFX_OR_OWORD(oword, from, mask) \
462 (oword).u64[0] = (from).u64[0] | (mask).u64[0]; \
463 (oword).u64[1] = (from).u64[1] | (mask).u64[1]; \