Top


定義場所(file name)

hotspot/src/share/vm/utilities/bitMap.cpp

名前(function name)

void BitMap::at_put(idx_t offset, bool value) {

本体部(body)

  {- -------------------------------------------
  (1) BitMap::set_bit() または BitMap::clear_bit() を呼び出すだけ.
      ---------------------------------------- -}

      if (value) {
        set_bit(offset);
      } else {
        clear_bit(offset);
      }
    }

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.