Searched refs:bigInteger (Results 1 – 6 of 6) sorted by relevance
/packages/modules/IPsec/src/java/com/android/internal/net/utils/ |
D | BigIntegerUtils.java | 51 public static byte[] bigIntegerToUnsignedByteArray(BigInteger bigInteger, int size) { in bigIntegerToUnsignedByteArray() argument 52 byte[] byteArrayWithSignBit = bigInteger.toByteArray(); in bigIntegerToUnsignedByteArray() 61 if (bigInteger.bitLength() % 8 == 0) { in bigIntegerToUnsignedByteArray()
|
/packages/modules/AppSearch/testing/safeparceltests/src/android/app/appsearch/safeparcel/ |
D | TestSafeParcelableV2.java | 140 public BigInteger bigInteger; field in TestSafeParcelableV2 218 @Param(id = 29) BigInteger bigInteger, in TestSafeParcelableV2() 263 this.bigInteger = bigInteger; in TestSafeParcelableV2()
|
D | SafeParcelableTest.java | 1371 p2.bigInteger = new BigInteger("1"); in testSafeParcelableFields() 1444 assertThat(readP2.bigInteger).isEqualTo(p2.bigInteger); in testSafeParcelableFields()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/ |
D | Trigger.java | 461 BigInteger bigInteger = new BigInteger(hexString, 16); in parseAggregateTrigger() local 469 .setKey(bigInteger) in parseAggregateTrigger() 639 BigInteger bigInteger = new BigInteger(hexString, 16); in parseAdtechKeyMapping() local 640 adtechBitMapping.put(key, bigInteger); in parseAdtechKeyMapping()
|
D | Source.java | 1051 BigInteger bigInteger = new BigInteger(hexString, 16); in getAggregatableAttributionSource() local 1052 aggregateSourceMap.put(key, bigInteger); in getAggregatableAttributionSource() 1075 BigInteger bigInteger = new BigInteger(hexString, 16); in getAggregatableAttributionSourceV2() local 1076 aggregateSourceMap.put(key, bigInteger); in getAggregatableAttributionSourceV2()
|
/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/ |
D | Struct.java | 345 private static byte[] bigIntegerToU64Bytes(final BigInteger bigInteger, final ByteOrder order, in bigIntegerToU64Bytes() argument 347 final byte[] bigIntegerBytes = bigInteger.toByteArray(); in bigIntegerToU64Bytes()
|