Пример #1
0
static void pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) {
  pd_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
}
Пример #2
0
  // jlongs,                conjoint, atomic on each jlong
static inline void conjoint_jlongs_atomic(jlong*from,jlong*to,size_t count){
    assert_params_ok(from, to, LogBytesPerLong);
    assert_non_zero(count);
    pd_conjoint_jlongs_atomic(from, to, count);
  }