< prev index next >

src/share/vm/utilities/bitMap.inline.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2005, 2013, 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) 2005, 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.
*** 91,101 **** } } } inline void BitMap::clear_range(idx_t beg, idx_t end, RangeSizeHint hint) { ! if (hint == small_range && end - beg == 1) { clear_bit(beg); } else { if (hint == large_range) { clear_large_range(beg, end); } else { --- 91,101 ---- } } } inline void BitMap::clear_range(idx_t beg, idx_t end, RangeSizeHint hint) { ! if (end - beg == 1) { clear_bit(beg); } else { if (hint == large_range) { clear_large_range(beg, end); } else {
< prev index next >