Searched refs:BitPackingTestCase (Results 1 – 1 of 1) sorted by relevance
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/internal/util/ |
H A D | BitUtilsTest.java | 141 BitPackingTestCase[] testCases = { in testBitsPacking() 142 new BitPackingTestCase(0, ints()), in testBitsPacking() 143 new BitPackingTestCase(1, ints(0)), in testBitsPacking() 144 new BitPackingTestCase(2, ints(1)), in testBitsPacking() 145 new BitPackingTestCase(3, ints(0, 1)), in testBitsPacking() 146 new BitPackingTestCase(4, ints(2)), in testBitsPacking() 147 new BitPackingTestCase(6, ints(1, 2)), in testBitsPacking() 148 new BitPackingTestCase(9, ints(0, 3)), in testBitsPacking() 153 for (BitPackingTestCase tc : testCases) { in testBitsPacking() 164 for (BitPackingTestCase tc : testCases) { in testBitsPacking() [all …]
|