Home | History | Annotate | Download | only in term

Lines Matching refs:mHead

652     private int mHead;
704 mHead = 0;
735 + ((mHead + mActiveTranscriptRows + row) % mActiveTranscriptRows);
789 mHead = (mHead + rollRows) % mActiveTranscriptRows;
820 checkEqual(mHead, 0);
822 checkRange(0, mHead, mActiveTranscriptRows-1);
2414 int oneRun = Math.min(bufferLength - mHead, mStoredBytes);
2416 System.arraycopy(mBuffer, mHead, buffer, offset, bytesToCopy);
2417 mHead += bytesToCopy;
2418 if (mHead >= bufferLength) {
2419 mHead = 0;
2454 int tail = mHead + mStoredBytes;
2458 oneRun = mHead - tail;
2475 private int mHead;