Home
last modified time | relevance | path

Searched refs:entryValue (Results 1 – 9 of 9) sorted by relevance

/external/opencv/cvaux/src/
Dcvtexture.cpp446 double entryValue = matrix[ sideLoop1 ][ sideLoop2 ]; in icvCreateGLCMDescriptors_AllowDoubleNest() local
452 marginalProbability[ sideLoop1 ] += entryValue; in icvCreateGLCMDescriptors_AllowDoubleNest()
453 correlationMean += actualSideLoop1*entryValue; in icvCreateGLCMDescriptors_AllowDoubleNest()
455 maximumProbability = MAX( maximumProbability, entryValue ); in icvCreateGLCMDescriptors_AllowDoubleNest()
459 descriptors[ CV_GLCMDESC_CONTRAST ] += sideLoopDifferenceSquared * entryValue; in icvCreateGLCMDescriptors_AllowDoubleNest()
462 … descriptors[ CV_GLCMDESC_HOMOGENITY ] += entryValue / ( 1.0 + sideLoopDifferenceSquared ); in icvCreateGLCMDescriptors_AllowDoubleNest()
464 if( entryValue > 0 ) in icvCreateGLCMDescriptors_AllowDoubleNest()
466 descriptors[ CV_GLCMDESC_ENTROPY ] += entryValue * log( entryValue ); in icvCreateGLCMDescriptors_AllowDoubleNest()
469 descriptors[ CV_GLCMDESC_ENERGY ] += entryValue*entryValue; in icvCreateGLCMDescriptors_AllowDoubleNest()
493 double entryValue = matrix[ sideLoop1 ][ sideLoop2 ]; in icvCreateGLCMDescriptors_AllowDoubleNest() local
[all …]
/external/guava/guava/src/com/google/common/collect/
DBstAggregate.java40 int entryValue(N entry); in entryValue() method
DMapMakerInternalMap.java2515 V entryValue = getLiveValue(e); in containsValue() local
2516 if (entryValue == null) { in containsValue()
2519 if (map.valueEquivalence.equivalent(value, entryValue)) { in containsValue()
2555 V entryValue = valueReference.get(); in put() local
2557 if (entryValue == null) { in put()
2561 enqueueNotification(key, hash, entryValue, RemovalCause.COLLECTED); in put()
2573 return entryValue; in put()
2577 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in put()
2579 return entryValue; in put()
2688 V entryValue = valueReference.get(); in replace() local
[all …]
DTreeMultiset.java415 public int entryValue(Node<Object> entry) {
433 public int entryValue(Node<Object> entry) {
DBstRangeOps.java60 accum += aggregate.entryValue(root); in totalBeyondRangeToSide()
/external/emma/core/java12/com/vladium/util/
DSoftValueMap.java492 Object entryValue = ref.get (); // convert the soft reference to a local strong one in rehash() local
495 if (entryValue != null) in rehash()
512 entryValue = null; in rehash()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2833 V entryValue = getLiveValue(e, now); in containsValue() local
2834 if (entryValue == null) { in containsValue()
2837 if (map.valueEquivalence.equivalent(value, entryValue)) { in containsValue()
2875 V entryValue = valueReference.get(); in put() local
2877 if (entryValue == null) { in put()
2895 return entryValue; in put()
2902 return entryValue; in put()
3009 V entryValue = valueReference.get(); in replace() local
3010 if (entryValue == null) { in replace()
3024 if (map.valueEquivalence.equivalent(oldValue, entryValue)) { in replace()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DTreeMultiset.java411 public int entryValue(Node<Object> entry) {
429 public int entryValue(Node<Object> entry) {
/external/guava/guava-tests/test/com/google/common/collect/
DBstTesting.java104 public int entryValue(SimpleNode entry) {