Home
last modified time | relevance | path

Searched refs:words_size (Results 1 – 25 of 48) sorted by relevance

12

/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahAllocTracker.hpp38 void record_alloc_latency(size_t words_size, in record_alloc_latency() argument
41 _alloc_size[_alloc_type].add(words_size); in record_alloc_latency()
H A DshenandoahFreeSet.cpp254 size_t words_size = req.size(); in allocate_contiguous() local
255 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
290 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
335 req.set_actual_size(words_size); in allocate_contiguous()
H A DshenandoahMarkCompact.cpp416 size_t words_size = old_obj->size(); in calculate_target_humongous_objects() local
417 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
747 size_t words_size = old_obj->size(); in compact_humongous_objects() local
748 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
780 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()
H A DshenandoahUtils.cpp139 ShenandoahAllocTrace::ShenandoahAllocTrace(size_t words_size, ShenandoahAllocRequest::Type alloc_ty… in ShenandoahAllocTrace() argument
142 _size = words_size; in ShenandoahAllocTrace()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/gc/shenandoah/
H A DshenandoahAllocTracker.hpp38 void record_alloc_latency(size_t words_size, in record_alloc_latency() argument
41 _alloc_size[_alloc_type].add(words_size); in record_alloc_latency()
H A DshenandoahUtils.cpp138 ShenandoahAllocTrace::ShenandoahAllocTrace(size_t words_size, ShenandoahAllocRequest::Type alloc_ty… in ShenandoahAllocTrace() argument
141 _size = words_size; in ShenandoahAllocTrace()
H A DshenandoahMarkCompact.cpp392 size_t words_size = old_obj->size() + ShenandoahBrooksPointer::word_size(); in calculate_target_humongous_objects() local
393 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
721 size_t words_size = old_obj->size() + ShenandoahBrooksPointer::word_size(); in compact_humongous_objects() local
722 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
759 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()
H A DshenandoahFreeSet.cpp254 size_t words_size = req.size(); in allocate_contiguous() local
255 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
290 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
335 req.set_actual_size(words_size); in allocate_contiguous()
/dports/devel/gtranslator/gtranslator-40.0/src/translation-memory/gda/
H A Dgda-utils.c104 gint words_size = g_strv_length ((gchar **) badwords); in gtr_gda_utils_split_string_in_words() local
107 badwords_collate = g_new0 (gchar *, words_size + 1); in gtr_gda_utils_split_string_in_words()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/algo/sequence/
H A Dadapter_search.cpp165 size_t words_size = end - begin; in AddExemplar() local
166 size_t len = min(words_size, m_len); in AddExemplar()
175 if(words_size > 0 && words_size < m_len) { in AddExemplar()
176 size_t len = min<size_t>(2, m_len - words_size); in AddExemplar()
177 TWord w = *(begin + words_size); in AddExemplar()
179 size_t pos = words_size + i; in AddExemplar()
/dports/chinese/libime/libime-1.0.9/src/libime/core/kenlm/lm/
H A Dtrie_sort.cc258 const size_t words_size = sizeof(WordIndex) * order; in ConvertToSorted() local
260 const size_t entry_size = words_size + weights_size; in ConvertToSorted()
273 ReadNGram(f, order, vocab, it, *reinterpret_cast<Prob*>(out + words_size), warn); in ConvertToSorted()
278 ReadNGram(f, order, vocab, it, *reinterpret_cast<ProbBackoff*>(out + words_size), warn); in ConvertToSorted()
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/rich/
H A Dcontainers.py144 words_size = sum(cell_len(word.plain) for word in words)
149 while words_size + num_spaces < width:
/dports/textproc/py-rich/rich-10.16.1/rich/
H A Dcontainers.py148 words_size = sum(cell_len(word.plain) for word in words)
153 while words_size + num_spaces < width:
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahMarkCompact.cpp416 size_t words_size = old_obj->size(); in calculate_target_humongous_objects() local
417 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
896 size_t words_size = old_obj->size(); in compact_humongous_objects() local
897 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
908 words_size); in compact_humongous_objects()
929 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()
H A DshenandoahFreeSet.cpp240 size_t words_size = req.size(); in allocate_contiguous() local
241 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
276 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
320 req.set_actual_size(words_size); in allocate_contiguous()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahMarkCompact.cpp416 size_t words_size = old_obj->size(); in calculate_target_humongous_objects() local
417 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
896 size_t words_size = old_obj->size(); in compact_humongous_objects() local
897 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
908 words_size); in compact_humongous_objects()
929 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()
H A DshenandoahFreeSet.cpp240 size_t words_size = req.size(); in allocate_contiguous() local
241 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
276 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
320 req.set_actual_size(words_size); in allocate_contiguous()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahMarkCompact.cpp423 size_t words_size = old_obj->size(); in calculate_target_humongous_objects() local
424 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
906 size_t words_size = old_obj->size(); in compact_humongous_objects() local
907 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
918 words_size); in compact_humongous_objects()
939 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()
H A DshenandoahFreeSet.cpp247 size_t words_size = req.size(); in allocate_contiguous() local
248 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
283 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
327 req.set_actual_size(words_size); in allocate_contiguous()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahFullGC.cpp464 size_t words_size = old_obj->size(); in calculate_target_humongous_objects() local
465 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
947 size_t words_size = old_obj->size(); in compact_humongous_objects() local
948 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
959 words_size); in compact_humongous_objects()
980 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()
H A DshenandoahFreeSet.cpp248 size_t words_size = req.size(); in allocate_contiguous() local
249 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
284 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
328 req.set_actual_size(words_size); in allocate_contiguous()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahFreeSet.cpp247 size_t words_size = req.size(); in allocate_contiguous() local
248 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
283 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
327 req.set_actual_size(words_size); in allocate_contiguous()
H A DshenandoahMarkCompact.cpp427 size_t words_size = old_obj->size(); in calculate_target_humongous_objects() local
428 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
910 size_t words_size = old_obj->size(); in compact_humongous_objects() local
911 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
943 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahFreeSet.cpp246 size_t words_size = req.size(); in allocate_contiguous() local
247 size_t num = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in allocate_contiguous()
282 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in allocate_contiguous()
326 req.set_actual_size(words_size); in allocate_contiguous()
H A DshenandoahMarkCompact.cpp411 size_t words_size = old_obj->size(); in calculate_target_humongous_objects() local
412 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in calculate_target_humongous_objects()
891 size_t words_size = old_obj->size(); in compact_humongous_objects() local
892 size_t num_regions = ShenandoahHeapRegion::required_regions(words_size * HeapWordSize); in compact_humongous_objects()
924 size_t remainder = words_size & ShenandoahHeapRegion::region_size_words_mask(); in compact_humongous_objects()

12