Home
last modified time | relevance | path

Searched refs:bitsToAppend (Results 1 – 1 of 1) sorted by relevance

/cts/tests/tests/location/src/android/location/cts/asn1/base/
DPacketBuilder.java28 int bitsToAppend = appendix.getBitCount(); in append() local
30 for (int i = 0; bitsToAppend >= 8; i++, bitsToAppend -= 8) { in append()
33 if (bitsToAppend != 0) { in append()
36 >> (8 - bitsToAppend)); in append()
37 bitStream.appendLowBits(bitsToAppend, lowBits); in append()