< prev index next >

src/hotspot/share/gc/g1/g1StringDedupTable.hpp

Print this page
rev 50428 : 8203030: Zero s390 31 bit size_t type conflicts in shared code
Summary: Cast to size_t or change to size_t foe compatibility with other archs.
Reviewed-by: Duke
Contributed-by: chrisphi

*** 1,7 **** /* ! * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 120,130 **** // Cache for reuse and fast alloc/free of table entries. static G1StringDedupEntryCache* _entry_cache; G1StringDedupEntry** _buckets; size_t _size; ! uintx _entries; uintx _shrink_threshold; uintx _grow_threshold; bool _rehash_needed; // The hash seed also dictates which hash function to use. A --- 120,130 ---- // Cache for reuse and fast alloc/free of table entries. static G1StringDedupEntryCache* _entry_cache; G1StringDedupEntry** _buckets; size_t _size; ! size_t _entries; uintx _shrink_threshold; uintx _grow_threshold; bool _rehash_needed; // The hash seed also dictates which hash function to use. A
< prev index next >