Searched refs:len1 (Results 1 – 3 of 3) sorted by relevance
/cts/suite/audio_quality/test_description/processing/ |
D | calc_delay.py | 41 len1 = len(data1) 42 if len1 > len0: 45 searchLen = len0 - len1
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
D | TestUtils.java | 812 static byte[] concat(byte[] arr1, int offset1, int len1, in concat() argument 814 if (len1 == 0) { in concat() 817 return subarray(arr1, offset1, len1); in concat() 819 byte[] result = new byte[len1 + len2]; in concat() 820 if (len1 > 0) { in concat() 821 System.arraycopy(arr1, offset1, result, 0, len1); in concat() 824 System.arraycopy(arr2, offset2, result, len1, len2); in concat()
|
D | BlockCipherTestBase.java | 1533 protected static boolean equals(byte[] arr1, int offset1, int len1, byte[] arr2, int offset2, in equals() argument 1540 if (len1 != len2) { in equals() 1543 for (int i = 0; i < len1; i++) { in equals()
|