Home
last modified time | relevance | path

Searched refs:bytes1 (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DNameDistance.java64 public float getDistance(byte bytes1[], byte bytes2[]) { in getDistance() argument
67 if (bytes1.length > bytes2.length) { in getDistance()
68 array2 = bytes1; in getDistance()
72 array1 = bytes1; in getDistance()
161 if (bytes1[i] != bytes2[i]) { in getDistance()
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
H A DUtilsTest.java133 byte[] bytes1 = new byte[] {1, 2, 3}; in testConcatByteArrays()
137 assertThat(Utils.concatByteArrays(bytes1, bytes2)).asList() in testConcatByteArrays()
/aosp12/art/runtime/interpreter/
H A Dinterpreter_intrinsics.cc308 void* bytes1; in MterpStringEquals() local
312 bytes1 = str->GetValueCompressed(); in MterpStringEquals()
316 bytes1 = str->GetValue(); in MterpStringEquals()
319 res = (memcmp(bytes1, bytes2, len) == 0); in MterpStringEquals()