Searched refs:hashCode (Results 51 - 75 of 787) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHKeyParameters.java43 public int hashCode() method in class:DHKeyParameters
49 code ^= params.hashCode();
H A DDHValidationParameters.java46 public int hashCode() method in class:DHValidationParameters
48 return counter ^ Arrays.hashCode(seed);
H A DDSAValidationParameters.java28 public int hashCode() method in class:DSAValidationParameters
30 return counter ^ Arrays.hashCode(seed);
H A DDSAParameters.java70 public int hashCode() method in class:DSAParameters
72 return getP().hashCode() ^ getQ().hashCode() ^ getG().hashCode();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DBaseComparable.java33 @Override public int hashCode() { // delegate to 's' method in class:BaseComparable
34 return s.hashCode();
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java162 public int hashCode() method in class:FullFrame
164 int hashCode = super.hashCode();
168 hashCode ^= variables[index].hashCode();
173 hashCode ^= stack[index].hashCode();
176 return hashCode;
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationItem.java36 private int hashCode = 0; field in class:AnnotationItem
137 hashCode = visibility.value;
138 hashCode = hashCode * 31 + annotationValue.hashCode();
142 public int hashCode() { method in class:AnnotationItem
145 if (hashCode == 0)
147 return hashCode;
H A DAnnotationSetRefList.java37 private int hashCode = 0; field in class:AnnotationSetRefList
143 hashCode = 0;
145 hashCode = hashCode * 31 + annotationSetItem.hashCode();
150 public int hashCode() { method in class:AnnotationSetRefList
153 if (hashCode == 0)
155 return hashCode;
H A DTypeListItem.java38 private int hashCode = 0; field in class:TypeListItem
241 int hashCode = 1;
244 hashCode = 31 * hashCode + typeIdItem.hashCode();
246 this.hashCode = hashCode;
250 public int hashCode() { method in class:TypeListItem
253 if (hashCode == 0)
255 return hashCode;
[all...]
H A DProtoIdItem.java35 private int hashCode = 0; field in class:ProtoIdItem
201 hashCode = returnType.hashCode();
202 hashCode = 31 * hashCode + (parameters==null?0:parameters.hashCode());
206 public int hashCode() { method in class:ProtoIdItem
209 if (hashCode == 0)
211 return hashCode;
H A DStringDataItem.java37 private int hashCode = 0; field in class:StringDataItem
141 hashCode = getStringValue().hashCode();
145 public int hashCode() { method in class:StringDataItem
148 if (hashCode == 0)
150 return hashCode;
/external/guava/guava/src/com/google/common/collect/
H A DForwardingMapEntry.java83 @Override public int hashCode() { method in class:ForwardingMapEntry
84 return delegate().hashCode();
105 * A sensible definition of {@link #hashCode()} in terms of {@link #getKey()}
107 * wish to override {@link #hashCode()} to forward to this implementation.
114 return ((k == null) ? 0 : k.hashCode()) ^ ((v == null) ? 0 : v.hashCode());
H A DImmutableEnumSet.java85 private transient int hashCode; field in class:ImmutableEnumSet
87 @Override public int hashCode() { method in class:ImmutableEnumSet
88 int result = hashCode;
89 return (result == 0) ? hashCode = delegate.hashCode() : result;
H A DTransformedImmutableList.java109 @Override public int hashCode() { method in class:TransformedImmutableList
110 int hashCode = 1;
112 hashCode = 31 * hashCode + (e == null ? 0 : e.hashCode());
114 return hashCode;
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DSetHashCodeTester.java28 * Tests {@link java.util.Set#hashCode}.
38 expectedHashCode += ((element == null) ? 0 : element.hashCode());
41 "A Set's hashCode() should be the sum of those of its elements.",
42 expectedHashCode, getSet().hashCode());
51 expectedHashCode += ((element == null) ? 0 : element.hashCode());
57 "A Set's hashCode() should be the sum of those of its elements (with "
59 expectedHashCode, getSet().hashCode());
64 * which call {@code hashCode()} on the set values so that set tests on
/external/proguard/src/proguard/
H A DMemberSpecification.java105 public int hashCode() method in class:MemberSpecification
110 (annotationType == null ? 0 : annotationType.hashCode()) ^
111 (name == null ? 0 : name.hashCode() ) ^
112 (descriptor == null ? 0 : descriptor.hashCode() );
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.h60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.h60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.h60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
/external/guava/guava/src/com/google/common/hash/
H A DHashing.java150 * If {@code hashCode} has enough bits, returns {@code hashCode.asLong()}, otherwise
151 * returns a {@code long} value with {@code hashCode.asInt()} as the least-significant
154 public static long padToLong(HashCode hashCode) { argument
155 return (hashCode.bits() < 64) ? UnsignedInts.toLong(hashCode.asInt()) : hashCode.asLong();
159 * Assigns to {@code hashCode} a "bucket" in the range {@code [0, buckets)}, in a uniform
171 public static int consistentHash(HashCode hashCode, int buckets) { argument
172 return consistentHash(padToLong(hashCode), bucket
[all...]
/external/apache-http/src/org/apache/http/conn/scheme/
H A DScheme.java214 public int hashCode() { method in class:Scheme
216 hash = LangUtils.hashCode(hash, this.defaultPort);
217 hash = LangUtils.hashCode(hash, this.name);
218 hash = LangUtils.hashCode(hash, this.layered);
219 hash = LangUtils.hashCode(hash, this.socketFactory);
/external/srec/portable/src/
H A Dphashtable.c44 unsigned int hashCode; member in struct:PHashTableEntry_t
161 unsigned int hashCode,
180 if (entry->hashCode == hashCode && table->args.compFunction(key, entry->key) == 0)
211 unsigned int hashCode; local
217 hashCode = table->args.hashFunction(key);
218 idx = hashCode % table->args.capacity;
219 if ((entry = getEntry(table, key, hashCode, idx)) != NULL)
257 unsigned int hashCode; local
264 hashCode
159 getEntry(PHashTable *table, const void *key, unsigned int hashCode, unsigned int idx) argument
344 unsigned int hashCode, idx; local
426 unsigned int hashCode, idx; local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DPredicateLabel.java53 public int hashCode() { method in class:PredicateLabel
54 return semanticContext.hashCode();
H A DTransition.java66 public int hashCode() { method in class:Transition
67 return label.hashCode() + target.stateNumber;
/external/apache-http/src/org/apache/http/auth/
H A DBasicUserPrincipal.java61 public int hashCode() { method in class:BasicUserPrincipal
63 hash = LangUtils.hashCode(hash, this.username);

Completed in 380 milliseconds

1234567891011>>