Home | History | Annotate | Download | only in mllite

Lines Matching defs:len

200  * @param[out] len amount of data currently stored in the fifo.
204 inv_error_t inv_get_fifo_length(uint_fast16_t * len)
210 if (NULL == len)
221 *len = 0;
225 *len = (uint_fast16_t) (fifoBuf[0] << 8);
226 *len += (uint_fast16_t) (fifoBuf[1]);
246 * @param[in] len Amount of data to read out of the fifo
250 inv_error_t inv_read_fifo(unsigned char *data, uint_fast16_t len)
256 (unsigned short)len, data);
275 int len = FIFO_HW_SIZE;
293 while (len != 0 && tries < 6) {
310 len = (unsigned short)fifoBuf[0] * 256 + (unsigned short)fifoBuf[1];