Home
last modified time | relevance | path

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

/cts/tests/tests/keystore/src/android/keystore/cts/
DKeyAttestationTest.java1054 private int countSetBits(byte[] toCount) { in countSetBits() argument
1056 for(int i = 0; i < toCount.length; i++) { in countSetBits()
1057 setBitCount += countSetBits(toCount[i]); in countSetBits()
1062 private int countSetBits(byte toCount) { in countSetBits() argument
1064 while(toCount != 0) { in countSetBits()
1065 toCount &= (toCount - 1); in countSetBits()