Home
last modified time | relevance | path

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

/cts/tests/tests/media/audio/src/android/media/audio/cts/
DAudioAttributesTest.java271 final int BIGNUM = Integer.MAX_VALUE; in testAudioAttributesBuilderError() local
275 .setContentType(BIGNUM) in testAudioAttributesBuilderError()
282 .setFlags(BIGNUM) in testAudioAttributesBuilderError()
289 .setLegacyStreamType(BIGNUM) in testAudioAttributesBuilderError()
295 .setSpatializationBehavior(BIGNUM) in testAudioAttributesBuilderError()
301 .setUsage(BIGNUM) in testAudioAttributesBuilderError()
DAudioFormatTest.java343 final int BIGNUM = Integer.MAX_VALUE; in testAudioFormatBuilderError() local
350 .setEncoding(BIGNUM) in testAudioFormatBuilderError()
355 for (int sampleRate : new int[] {-BIGNUM, -1, BIGNUM}) { in testAudioFormatBuilderError()
DAudioRecordTest.java1709 final int BIGNUM = Integer.MAX_VALUE; // large value that should be invalid. in testAudioRecordBuilderError() local
1724 .setBufferSizeInBytes(BIGNUM) in testAudioRecordBuilderError()
1729 for (int bufferSize : new int[] {-BIGNUM, -1, 0}) { in testAudioRecordBuilderError()
1739 .setAudioSource(BIGNUM) in testAudioRecordBuilderError()
1791 .setSampleRate(BIGNUM) in testAudioRecordBuilderError()
DAudioTrackTest.java3550 final int BIGNUM = Integer.MAX_VALUE; // large value that should be invalid. in testAudioTrackBuilderError() local
3567 .setBufferSizeInBytes(BIGNUM) in testAudioTrackBuilderError()
3572 for (int bufferSize : new int[] {-BIGNUM, -1, 0}) { in testAudioTrackBuilderError()
3582 .setEncapsulationMode(BIGNUM) in testAudioTrackBuilderError()
3588 .setPerformanceMode(BIGNUM) in testAudioTrackBuilderError()
3602 .setTransferMode(BIGNUM) in testAudioTrackBuilderError()
3631 .setSampleRate(BIGNUM) in testAudioTrackBuilderError()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-2182/
Dpoc.cpp79 using ScopedBIGNUM = ScopedOpenSSL<BIGNUM, BN_free>;
84 BIGNUM *raw = nullptr; in DecimalToBIGNUM()