Home | History | Annotate | Download | only in hash

Lines Matching refs:HashCode

49     HashCode[] codes = new HashCode[hashers.size()];
105 HashCode makeHash() {
106 return HashCode.fromBytes(out.toByteArray());
133 public HashCode hashBytes(byte[] input) {
134 return HashCode.fromBytes(input);
138 public HashCode hashBytes(byte[] input, int off, int len) {
139 return HashCode.fromBytes(Arrays.copyOfRange(input, off, off + len));
143 public HashCode hashString(CharSequence input, Charset charset) {
148 public HashCode hashLong(long input) {
153 public HashCode hashInt(int input) {