Lines Matching defs:mask
25 uint32_t mask = ~0U;
37 mask >>= 32U - (nbits % 32U);
42 SMC_RET4(handle, TRNG_E_SUCCESS, 0, 0, ent[0] & mask);
45 SMC_RET4(handle, TRNG_E_SUCCESS, 0, (ent[0] >> 32) & mask,
49 SMC_RET4(handle, TRNG_E_SUCCESS, ent[1] & mask,
61 uint64_t mask = ~0ULL;
74 mask >>= 64U - (nbits % 64U);
79 SMC_RET4(handle, TRNG_E_SUCCESS, 0, 0, ent[0] & mask);
82 SMC_RET4(handle, TRNG_E_SUCCESS, 0, ent[1] & mask, ent[0]);
85 SMC_RET4(handle, TRNG_E_SUCCESS, ent[2] & mask, ent[1], ent[0]);