Searched refs:byteBufferFront (Results 1 – 1 of 1) sorted by relevance
98 int byteBufferFront = front * Constant.BYTES_PER_SHORT; // start reading from here in read() local99 byteBufferToArray(buffer, offset, read, byteBufferFront); in read()104 byteBufferFront = 0; in read()105 byteBufferToArray(buffer, offset + read, read + samplesLeft, byteBufferFront); in read()119 private void byteBufferToArray(short[] buffer, int start, int length, int byteBufferFront) { in byteBufferToArray() argument121 buffer[i] = mByteBuffer.getShort(byteBufferFront); in byteBufferToArray()122 byteBufferFront += Constant.BYTES_PER_SHORT; in byteBufferToArray()