Home
last modified time | relevance | path

Searched refs:resultBytes (Results 1 – 7 of 7) sorted by relevance

/external/guava/android/guava/src/com/google/common/hash/
DHashing.java529 byte[] resultBytes = new byte[bits / 8]; in combineOrdered()
533 nextBytes.length == resultBytes.length, "All hashcodes must have the same bit length."); in combineOrdered()
535 resultBytes[i] = (byte) (resultBytes[i] * 37 ^ nextBytes[i]); in combineOrdered()
538 return HashCode.fromBytesNoCopy(resultBytes); in combineOrdered()
553 byte[] resultBytes = new byte[iterator.next().bits() / 8]; in combineUnordered()
557 nextBytes.length == resultBytes.length, "All hashcodes must have the same bit length."); in combineUnordered()
559 resultBytes[i] += nextBytes[i]; in combineUnordered()
562 return HashCode.fromBytesNoCopy(resultBytes); in combineUnordered()
/external/guava/guava/src/com/google/common/hash/
DHashing.java529 byte[] resultBytes = new byte[bits / 8]; in combineOrdered()
533 nextBytes.length == resultBytes.length, "All hashcodes must have the same bit length."); in combineOrdered()
535 resultBytes[i] = (byte) (resultBytes[i] * 37 ^ nextBytes[i]); in combineOrdered()
538 return HashCode.fromBytesNoCopy(resultBytes); in combineOrdered()
553 byte[] resultBytes = new byte[iterator.next().bits() / 8]; in combineUnordered()
557 nextBytes.length == resultBytes.length, "All hashcodes must have the same bit length."); in combineUnordered()
559 resultBytes[i] += nextBytes[i]; in combineUnordered()
562 return HashCode.fromBytesNoCopy(resultBytes); in combineUnordered()
/external/protobuf/js/binary/
Dutils.js588 var resultBytes = [0, 0, 0, 0, 0, 0, 0, 0];
593 var r = m * resultBytes[i] + c;
594 resultBytes[i] = r & 0xFF;
602 resultBytes[i] = (~resultBytes[i]) & 0xFF;
617 return goog.crypt.byteArrayToString(resultBytes);
/external/icu/icu4c/source/test/intltest/
Dconvtest.h59 uint8_t resultBytes[200]; member
/external/icu/icu4c/source/tools/makeconv/
Dgencnvex.c641 uint8_t *bytes, *resultBytes; in getFromUBytesValue() local
672 resultBytes=utm_allocN(extData->fromUBytes, m->bLen); in getFromUBytesValue()
673 uprv_memcpy(resultBytes, bytes, m->bLen); in getFromUBytesValue()
/external/deqp/external/openglcts/modules/common/
DglcBlendEquationAdvancedTests.cpp1055 glw::GLubyte* resultBytes = new glw::GLubyte[4 * w * h]; in iterate() local
1057 gl.readPixels(0, 0, w, h, GL_RGBA, GL_UNSIGNED_BYTE, resultBytes); in iterate()
1072 tcu::RGBA res = tcu::RGBA::fromBytes(resultBytes + 4 * (x + w * y)); in iterate()
1089 delete[] resultBytes; in iterate()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc3742 ScopedByteArrayRW resultBytes(env, resultArray.get()); in NativeCrypto_HMAC_Final() local
3743 if (resultBytes.get() == nullptr) { in NativeCrypto_HMAC_Final()
3746 memcpy(resultBytes.get(), result, len); in NativeCrypto_HMAC_Final()