Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 25 of 39) sorted by relevance

12

/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DExpression.java328 public int hashCode() in hashCode() method in KVOpExpression
330 return (getName().hashCode() + (int) op + val); in hashCode()
499 public int hashCode() in hashCode() method in KVExpression
501 return (getName().hashCode() + val.hashCode()); in hashCode()
631 public int hashCode() in hashCode() method in KExpression
633 return (getName().hashCode()); in hashCode()
H A DDecisionHistory.java248 public abstract int hashCode(); in hashCode() method in DecisionHistory.Decision
400 public int hashCode() { in hashCode() method in DecisionHistory.ComponentMoveDecision
401 return (((((cpuid.hashCode() ^ in hashCode()
402 fromPsetName.hashCode()) ^ toPsetName.hashCode()) ^ in hashCode()
403 fromPsetComposition.hashCode()) ^ in hashCode()
404 toPsetComposition.hashCode()) ^ in hashCode()
405 utilizationClass.hashCode()); in hashCode()
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceType.java237 public int hashCode() { in hashCode() method in ServiceType
239 return type1.hashCode() + in hashCode()
240 na.hashCode() + in hashCode()
241 type2.hashCode() + in hashCode()
242 (isServiceURL ? Defaults.SERVICE_PREFIX.hashCode():0); in hashCode()
H A DServiceURL.java219 public int hashCode() { in hashCode() method in ServiceURL
221 serviceType.hashCode() + in hashCode()
222 transport.hashCode() + in hashCode()
223 host.hashCode() + in hashCode()
225 URLPath.hashCode(); in hashCode()
H A DAttributeString.java144 public int hashCode() { in hashCode() method in AttributeString
145 return cstring.toString().hashCode(); in hashCode()
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DProbeDescription.java439 hashCode() in hashCode() method in ProbeDescription
447 hash = (37 * hash) + provider.hashCode(); in hashCode()
448 hash = (37 * hash) + module.hashCode(); in hashCode()
449 hash = (37 * hash) + function.hashCode(); in hashCode()
450 hash = (37 * hash) + name.hashCode(); in hashCode()
H A DInterfaceAttributes.java483 hashCode() in hashCode() method in InterfaceAttributes
486 hash = (37 * hash) + nameStability.hashCode(); in hashCode()
487 hash = (37 * hash) + dataStability.hashCode(); in hashCode()
488 hash = (37 * hash) + dependencyClass.hashCode(); in hashCode()
H A DProbeInfo.java165 hashCode() in hashCode() method in ProbeInfo
168 hash = (37 * hash) + probeAttributes.hashCode(); in hashCode()
169 hash = (37 * hash) + argumentAttributes.hashCode(); in hashCode()
H A DProcessState.java304 hashCode() in hashCode() method in ProcessState
308 hash = (37 * hash) + state.hashCode(); in hashCode()
311 exitStatus.hashCode()); in hashCode()
312 hash = (37 * hash) + (message == null ? 0 : message.hashCode()); in hashCode()
H A DProgramInfo.java206 hashCode() in hashCode() method in ProgramInfo
209 hash = (37 * hash) + minimumProbeAttributes.hashCode(); in hashCode()
210 hash = (37 * hash) + minimumStatementAttributes.hashCode(); in hashCode()
H A DAggregationRecord.java224 hashCode() in hashCode() method in AggregationRecord
227 hash = (37 * hash) + tuple.hashCode(); in hashCode()
228 hash = (37 * hash) + value.hashCode(); in hashCode()
H A DPrintfRecord.java234 hashCode() in hashCode() method in PrintfRecord
237 hash = (37 * hash) + records.hashCode(); in hashCode()
238 hash = (37 * hash) + formattedString.hashCode(); in hashCode()
H A DAbstractAggregationValue.java92 hashCode() in hashCode() method in AbstractAggregationValue
94 return value.hashCode(); in hashCode()
H A DStackFrame.java135 hashCode() in hashCode() method in StackFrame
137 return frame.hashCode(); in hashCode()
H A DAggregation.java267 hashCode() in hashCode() method in Aggregation
270 hash = (37 * hash) + name.hashCode(); in hashCode()
271 hash = (37 * hash) + map.hashCode(); in hashCode()
H A DPrintaRecord.java458 hashCode() in hashCode() method in PrintaRecord
461 hash = (hash * 37) + aggregations.hashCode(); in hashCode()
464 formattedStrings.hashCode()); in hashCode()
465 hash = (hash * 37) + tuples.hashCode(); in hashCode()
H A DScalarRecord.java231 hashCode() in hashCode() method in ScalarRecord
234 return Arrays.hashCode((byte[])value); in hashCode()
236 return value.hashCode(); in hashCode()
H A DUserSymbolRecord.java209 hashCode() in hashCode() method in UserSymbolRecord
211 return value.hashCode(); in hashCode()
404 hashCode() in hashCode() method in UserSymbolRecord.Value
H A DOption.java637 hashCode() in hashCode() method in Option
640 hash = (37 * hash) + name.hashCode(); in hashCode()
641 hash = (37 * hash) + value.hashCode(); in hashCode()
H A DProbe.java162 hashCode() in hashCode() method in Probe
164 return description.hashCode(); in hashCode()
H A DFlow.java189 hashCode() in hashCode() method in Flow
192 hash = (37 * hash) + kind.hashCode(); in hashCode()
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DResource.java203 public int hashCode() in hashCode() method in Resource
205 return (type.hashCode() + name.hashCode()); in hashCode()
H A DComponent.java139 public int hashCode() in hashCode() method in Component
141 return (type.hashCode() + (int) sys_id); in hashCode()
H A DPool.java187 public int hashCode() in hashCode() method in Pool
189 return (name.hashCode()); in hashCode()
/illumos-gate/usr/src/common/ficl/
H A Dhash.c97 ficlHashLookup(ficlHash *hash, ficlString name, ficlUnsigned16 hashCode) in ficlHashLookup() argument
108 hashIdx = (ficlUnsigned16)(hashCode % hash->size); in ficlHashLookup()

12