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 | 811 static byte[] concat(byte[] arr1, int offset1, int len1, in concat() argument 813 if (len1 == 0) { in concat() 816 return subarray(arr1, offset1, len1); in concat() 818 byte[] result = new byte[len1 + len2]; in concat() 819 if (len1 > 0) { in concat() 820 System.arraycopy(arr1, offset1, result, 0, len1); in concat() 823 System.arraycopy(arr2, offset2, result, len1, len2); in concat()
|
D | BlockCipherTestBase.java | 1530 protected static boolean equals(byte[] arr1, int offset1, int len1, byte[] arr2, int offset2, in equals() argument 1537 if (len1 != len2) { in equals() 1540 for (int i = 0; i < len1; i++) { in equals()
|