Lines Matching refs:elen
1007 uint32_t elen = 0, r = 0; in mec_hal_i2c_nl_state_get() local
1018 elen = regs->EXTLEN; in mec_hal_i2c_nl_state_get()
1021 elen >>= 16; /* TM wrCnt_MSB shifted to b[7:0] and TM rdCnt_MSB to b[15:0] */ in mec_hal_i2c_nl_state_get()
1033 state->wrcnt |= (uint16_t)((elen & 0xffu) << 8); in mec_hal_i2c_nl_state_get()
1034 state->rdcnt |= (uint16_t)((elen & 0xff00u)); in mec_hal_i2c_nl_state_get()
1170 uint32_t elen = 0; in mec_hal_i2c_nl_tm_config() local
1214 elen = (ntx & 0xff00u) >> 8; in mec_hal_i2c_nl_tm_config()
1215 elen |= nrx & 0xff00u; in mec_hal_i2c_nl_tm_config()
1216 elen <<= 16; in mec_hal_i2c_nl_tm_config()
1217 regs->EXTLEN = (regs->EXTLEN & 0xffffu) | elen; in mec_hal_i2c_nl_tm_config()
1233 uint32_t elen = regs->EXTLEN; in mec_hal_i2c_nl_tm_event() local
1234 uint16_t wrcnt = (uint16_t)((elen >> 8) & 0xff00u); in mec_hal_i2c_nl_tm_event()
1235 uint16_t rdcnt = (uint16_t)((elen >> 16) & 0xff00u); in mec_hal_i2c_nl_tm_event()