Searched defs:byteArray (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/native/
H A Djava_util_zip_Adler32.cpp26 static jlong Adler32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) { argument
27 ScopedByteArrayRO bytes(env, byteArray);
H A Djava_util_zip_CRC32.cpp26 static jlong CRC32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) { argument
27 ScopedByteArrayRO bytes(env, byteArray);
H A Dlibcore_icu_NativeCollation.cpp158 uint8_t byteArray[128]; local
160 uint8_t* usedByteArray = byteArray;
161 size_t byteArraySize = ucol_getSortKey(collator, source.get(), source.size(), usedByteArray, sizeof(byteArray) - 1);
162 if (byteArraySize > sizeof(byteArray) - 1) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DArraysTest.java52 byte[] byteArray; field in class:ArraysTest
111 Arrays.binarySearch(byteArray, counter) == counter);
118 byteArray[counter] -= 50;
122 Arrays.binarySearch(byteArray, (byte) (counter - 50)) == counter);
2510 byteArray = new byte[arraySize];
2520 byteArray[counter] = (byte) counter;
2542 Arrays.binarySearch(byteArray, counter, arraySize, counter) == counter);
2546 Arrays.binarySearch(byteArray, 0, arraySize, (byte) -1));
2549 Arrays.binarySearch(byteArray, (byte) arraySize) == -(arraySize + 1));
2551 byteArray[counte
[all...]

Completed in 56 milliseconds