Home
last modified time | relevance | path

Searched refs:bucket_bytes (Results 1 – 25 of 99) sorted by relevance

1234

/dports/databases/timescaledb/timescaledb-2.5.1/src/
H A Dhistogram.c108 Size bucket_bytes = state->nbuckets * sizeof(*copy->buckets); in copy_state() local
110 copy = MemoryContextAlloc(aggcontext, sizeof(*copy) + bucket_bytes); in copy_state()
112 memcpy(copy->buckets, state->buckets, bucket_bytes); in copy_state()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/cds/
H A DdumpAllocStats.cpp36 _bytes [RO][SymbolBucketType] = _symbol_stats.bucket_bytes; in print_stats()
43 _bytes [RO][StringBucketType] = _string_stats.bucket_bytes; in print_stats()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/classfile/
H A DcompactHashtable.cpp75 size_t bucket_bytes = MetaspaceShared::ro_array_bytesize<u4>(num_buckets + 1); in estimate_size() local
81 return bucket_bytes in estimate_size()
114 _stats->bucket_bytes = _compact_buckets->size() * BytesPerWord; in allocate_table()
162 int table_bytes = _stats->bucket_bytes + _stats->hashentry_bytes; in dump()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/utilities/
H A Dhashtable.cpp221 int bucket_bytes = (int)num_buckets * sizeof(HashtableBucket<F>); in print_table_statistics() local
223 int total_bytes = literal_bytes + bucket_bytes + entry_bytes; in print_table_statistics()
225 int bucket_size = (num_buckets <= 0) ? 0 : (bucket_bytes / num_buckets); in print_table_statistics()
229 …st->print_cr("Number of buckets : %9d = %9d bytes, each %d", (int)num_buckets, bucket_bytes,… in print_table_statistics()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/classfile/
H A DcompactHashtable.cpp77 size_t bucket_bytes = MetaspaceShared::ro_array_bytesize<u4>(num_buckets + 1); in estimate_size() local
83 return bucket_bytes in estimate_size()
116 _stats->bucket_bytes = align_up(_compact_buckets->size() * BytesPerWord, in allocate_table()
166 int table_bytes = _stats->bucket_bytes + _stats->hashentry_bytes; in dump()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/classfile/
H A DcompactHashtable.cpp76 size_t bucket_bytes = ArchiveBuilder::ro_array_bytesize<u4>(num_buckets + 1); in estimate_size() local
82 return bucket_bytes in estimate_size()
115 _stats->bucket_bytes = align_up(_compact_buckets->size() * BytesPerWord, in allocate_table()
165 int table_bytes = _stats->bucket_bytes + _stats->hashentry_bytes; in dump()
H A DcompactHashtable.hpp51 int bucket_bytes; member in CompactHashtableStats
55 bucket_count(0), bucket_bytes(0) {} in CompactHashtableStats()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/classfile/
H A DcompactHashtable.cpp76 size_t bucket_bytes = MetaspaceShared::ro_array_bytesize<u4>(num_buckets + 1); in estimate_size() local
82 return bucket_bytes in estimate_size()
115 _stats->bucket_bytes = _compact_buckets->size() * BytesPerWord; in allocate_table()
163 int table_bytes = _stats->bucket_bytes + _stats->hashentry_bytes; in dump()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/classfile/
H A DcompactHashtable.cpp75 size_t bucket_bytes = MetaspaceShared::ro_array_bytesize<u4>(num_buckets + 1); in estimate_size() local
81 return bucket_bytes in estimate_size()
114 _stats->bucket_bytes = _compact_buckets->size() * BytesPerWord; in allocate_table()
162 int table_bytes = _stats->bucket_bytes + _stats->hashentry_bytes; in dump()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/memory/
H A DdumpAllocStats.cpp40 _bytes [RO][SymbolBucketType] = stats->symbol.bucket_bytes; in print_stats()
47 _bytes [RO][StringBucketType] = stats->string.bucket_bytes; in print_stats()
/dports/archivers/py-borgbackup/borgbackup-1.1.17/src/borg/
H A D_hashindex.c264 PyObject *header_bytes, *length_object, *bucket_bytes, *tmp; in hashindex_read() local
361 bucket_bytes = PyObject_CallMethod(file_py, "read", "n", buckets_length); in hashindex_read()
362 if(!bucket_bytes) { in hashindex_read()
366 bytes_read = PyBytes_Size(bucket_bytes); in hashindex_read()
376 PyObject_GetBuffer(bucket_bytes, &index->buckets_buffer, PyBUF_SIMPLE); in hashindex_read()
405 Py_DECREF(bucket_bytes); in hashindex_read()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/utilities/
H A DtableStatistics.cpp94 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by… in TableStatistics() argument
111 _bucket_bytes = _number_of_buckets * bucket_bytes; in TableStatistics()
H A DtableStatistics.hpp85 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by…
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/utilities/
H A DtableStatistics.cpp94 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by… in TableStatistics() argument
111 _bucket_bytes = _number_of_buckets * bucket_bytes; in TableStatistics()
H A DtableStatistics.hpp85 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by…
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/utilities/
H A DtableStatistics.cpp94 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by… in TableStatistics() argument
111 _bucket_bytes = _number_of_buckets * bucket_bytes; in TableStatistics()
H A DtableStatistics.hpp85 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by…
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/utilities/
H A DtableStatistics.cpp94 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by… in TableStatistics() argument
111 _bucket_bytes = _number_of_buckets * bucket_bytes; in TableStatistics()
H A DtableStatistics.hpp85 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by…
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/utilities/
H A DtableStatistics.cpp94 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by… in TableStatistics() argument
111 _bucket_bytes = _number_of_buckets * bucket_bytes; in TableStatistics()
H A DtableStatistics.hpp85 …atistics& rate_stats, NumberSeq summary, size_t literal_bytes, size_t bucket_bytes, size_t node_by…
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp301 int bucket_bytes = (int)num_buckets * sizeof(HashtableBucket<F>); in dump_table() local
303 int total_bytes = literal_bytes + bucket_bytes + entry_bytes; in dump_table()
305 double bucket_avg = (num_buckets <= 0) ? 0 : (bucket_bytes / num_buckets); in dump_table()
310 …umber of buckets : %9d = %9d bytes, avg %7.3f", (int)num_buckets, bucket_bytes, bucket_avg); in dump_table()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp301 int bucket_bytes = (int)num_buckets * sizeof(HashtableBucket<F>); in dump_table() local
303 int total_bytes = literal_bytes + bucket_bytes + entry_bytes; in dump_table()
305 double bucket_avg = (num_buckets <= 0) ? 0 : (bucket_bytes / num_buckets); in dump_table()
310 …umber of buckets : %9d = %9d bytes, avg %7.3f", (int)num_buckets, bucket_bytes, bucket_avg); in dump_table()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/utilities/
H A Dhashtable.cpp340 int bucket_bytes = (int)num_buckets * sizeof(HashtableBucket<F>); in print_table_statistics() local
342 int total_bytes = literal_bytes + bucket_bytes + entry_bytes; in print_table_statistics()
344 int bucket_size = (num_buckets <= 0) ? 0 : (bucket_bytes / num_buckets); in print_table_statistics()
348 …st->print_cr("Number of buckets : %9d = %9d bytes, each %d", (int)num_buckets, bucket_bytes,… in print_table_statistics()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/utilities/
H A Dhashtable.cpp340 int bucket_bytes = (int)num_buckets * sizeof(HashtableBucket<F>); in print_table_statistics() local
342 int total_bytes = literal_bytes + bucket_bytes + entry_bytes; in print_table_statistics()
344 int bucket_size = (num_buckets <= 0) ? 0 : (bucket_bytes / num_buckets); in print_table_statistics()
348 …st->print_cr("Number of buckets : %9d = %9d bytes, each %d", (int)num_buckets, bucket_bytes,… in print_table_statistics()

1234