Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/integrity/model/
H A DBitOutputStream.java19 import static com.android.server.integrity.model.ComponentBitSize.BYTE_BITS;
67 int byteToWrite = mNextBitIndex / BYTE_BITS; in setNext()
74 mBuffer[byteToWrite] |= 1 << (BYTE_BITS - 1 - (mNextBitIndex % BYTE_BITS)); in setNext()
89 int endByte = mNextBitIndex / BYTE_BITS; in flush()
90 if (mNextBitIndex % BYTE_BITS != 0) { in flush()
H A DComponentBitSize.java44 public static final int BYTE_BITS = 8; field in ComponentBitSize
/aosp14/frameworks/base/services/core/java/com/android/server/integrity/parser/
H A DRuleBinaryParser.java20 import static com.android.server.integrity.model.ComponentBitSize.BYTE_BITS;
75 randomAccessInputStream.skip(FORMAT_VERSION_BITS / BYTE_BITS); in parseRules()