Log the occurence of this index in the set of indices to be stored Does not add it, only updates the offsets
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(index_rhash_t), | intent(inout) | :: | this | |||
| integer(kind=int64), | intent(in) | :: | index |
index value to be logged |
subroutine count_index(this, index) class(index_rhash_t), intent(inout) :: this integer(int64), intent(in) :: index integer(int64) :: hval hval = this%hash_function(index) call this%shared_ht%count_value(hval) end subroutine count_index