Home | History | Annotate | Download | only in display

Lines Matching defs:mCapacity

778         private int mCapacity;
787 mCapacity = (int) Math.ceil(ambientLightHorizon * BUFFER_SLACK / lightSensorRate);
788 mRingLux = new float[mCapacity];
789 mRingTime = new long[mCapacity];
802 if (mCount == mCapacity) {
803 int newSize = mCapacity * 2;
807 int length = mCapacity - mStart;
817 next = mCapacity;
818 mCapacity = newSize;
824 if (mEnd == mCapacity) {
837 if (next >= mCapacity) {
838 next -= mCapacity;
892 if (index >= mCapacity) {
893 index -= mCapacity;