Home | History | Annotate | Download | only in src

Lines Matching defs:dataLength

172  * Attempts to write dataLength bytes to the specified Fifo Cyclic Buffer.
176 uint32_t dataLength)
181 while(dataLengthWritten < dataLength)
212 * Attempts to read dataLength bytes from the specified Fifo Cyclic Buffer.
216 uint32_t dataLength)
221 while(dataLengthRead < dataLength)
258 uint32_t dataLength;
264 dataLength = pUtilFifo->pBuffEnd - pUtilFifo->pBuffStart + 1;
270 dataLength = pIn - pOut;
274 dataLength = pUtilFifo->pBuffEnd - pOut;
275 dataLength += (pIn+1) - pUtilFifo->pBuffStart;
279 return dataLength;
288 uint32_t dataLength;
295 dataLength = 0;
302 dataLength = size - (pIn - pOut);
306 dataLength = pOut - pIn;
310 return dataLength;