Beispiel #1
0
static void pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) {
  pd_fill_to_words(tohw, count, value);
}
Beispiel #2
0
static void pd_zero_to_words(HeapWord* tohw, size_t count) {
  pd_fill_to_words(tohw, count, 0);
}
  // Fill word-aligned words, not atomic on each word
  // set_words
static inline void fill_to_words(HeapWord*to,size_t count,jlong value=0){
    assert_params_ok(to, LogHeapWordSize);
    pd_fill_to_words(to, count, value);
  }