Home | History | Annotate | Download | only in src

Lines Matching defs:dataLength

214  * Attempts to write dataLength bytes to the specified Fifo Cyclic Buffer.
218 uint32_t dataLength)
223 while(dataLengthWritten < dataLength)
254 * Attempts to read dataLength bytes from the specified Fifo Cyclic Buffer.
258 uint32_t dataLength)
263 while(dataLengthRead < dataLength)
300 uint32_t dataLength;
306 dataLength = pUtilFifo->pBuffEnd - pUtilFifo->pBuffStart + 1;
312 dataLength = pIn - pOut;
316 dataLength = pUtilFifo->pBuffEnd - pOut;
317 dataLength += (pIn+1) - pUtilFifo->pBuffStart;
321 return dataLength;
330 uint32_t dataLength;
337 dataLength = 0;
344 dataLength = size - (pIn - pOut);
348 dataLength = pOut - pIn;
352 return dataLength;