Searched refs:resultBytes (Results 1 – 7 of 7) sorted by relevance
/external/guava/android/guava/src/com/google/common/hash/ |
D | Hashing.java | 529 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/ |
D | Hashing.java | 529 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/ |
D | utils.js | 588 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/ |
D | convtest.h | 59 uint8_t resultBytes[200]; member
|
/external/icu/icu4c/source/tools/makeconv/ |
D | gencnvex.c | 641 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/ |
D | glcBlendEquationAdvancedTests.cpp | 1055 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/ |
D | native_crypto.cc | 3742 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()
|