Home
last modified time | relevance | path

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

/cts/tests/tests/voiceinteraction/src/android/voiceinteraction/cts/
DHotwordDetectedResultTest.java45 final int bitsForConfidenceLevel = Utils.bitCount( in testHotwordDetectedResult_totalSize()
47 final int bitsForHotwordOffsetMillis = Utils.bitCount(Utils.LIMIT_HOTWORD_OFFSET_MAX_VALUE); in testHotwordDetectedResult_totalSize()
48 final int bitsForHotwordDurationMillis = Utils.bitCount( in testHotwordDetectedResult_totalSize()
50 final int bitsForAudioChannel = Utils.bitCount(Utils.LIMIT_AUDIO_CHANNEL_MAX_VALUE); in testHotwordDetectedResult_totalSize()
52 final int bitsForScore = Utils.bitCount(HotwordDetectedResult.getMaxScore()); in testHotwordDetectedResult_totalSize()
53 final int bitsForPersonalizedScore = Utils.bitCount(HotwordDetectedResult.getMaxScore()); in testHotwordDetectedResult_totalSize()
54 final int bitsForHotwordPhraseId = Utils.bitCount( in testHotwordDetectedResult_totalSize()
/cts/tests/tests/media/src/android/media/cts/
DAudioFormatTest.java222 return Integer.bitCount(a ^ b) == Integer.bitCount(b) - Integer.bitCount(a); in subsetOf()
250 /*expected*/ pair[1], /*actual*/ Integer.bitCount(pair[0])); in testChannelMasks()
DAudioNativeTest.java227 int channelCount = Long.bitCount(mask); in testOutputChannelMasks()
270 int channelCount = Long.bitCount(mask); in testInputChannelMasksPreQ()
324 int channelCount = Long.bitCount(mask); in testInputChannelMasksPostQ()
DAudioHelper.java110 final int channels = Integer.bitCount(channelMask); in packMask()
133 final int channels = Integer.bitCount(channelMask); in maskArray()
147 final int channels = Integer.bitCount(channelMask); in maskArray()
161 final int channels = Integer.bitCount(channelMask); in maskArray()
DMediaSyncTest.java714 final int frameSizeInBytes = Integer.bitCount(channelConfig) in getAudioTrack()
DAudioTrackTest.java1633 final int channelCount = Integer.bitCount(testConf); in playOnceStaticData()
1776 final int channelCount = Integer.bitCount(testConf); in playOnceStreamData()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/
DAudioUtils.java31 return Integer.bitCount(chanConfig & ~0x80000000); in countIndexChannels()
/cts/hostsidetests/incident/apps/graphicsstatsapp/src/com/android/server/cts/device/graphicsstats/
DDrawFramesActivity.java164 timeoutDurationMs += 50 + (24 * Integer.bitCount(frame)); in drawFrames()
/cts/tests/tests/voiceinteraction/common/src/android/voiceinteraction/common/
DUtils.java287 public static int bitCount(long value) { in bitCount() method in Utils
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DDisplayModifier.java465 int totalModifiers = Integer.bitCount(mask); in Accessor()