Searched defs:tohw (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dcopy_x86.hpp45 static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { argument
47 julong* to = (julong*) tohw;
53 juint* to = (juint*)tohw;
61 static void pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) { argument
62 pd_fill_to_words(tohw, count, value);
69 static void pd_zero_to_words(HeapWord* tohw, size_t count) { argument
70 pd_fill_to_words(tohw, count, 0);
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dcopy_zero.hpp151 static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { argument
153 julong* to = (julong*) tohw;
156 juint* to = (juint*) tohw;
165 static void pd_fill_to_aligned_words(HeapWord* tohw, argument
168 pd_fill_to_words(tohw, count, value);
175 static void pd_zero_to_words(HeapWord* tohw, size_t count) { argument
176 pd_fill_to_words(tohw, count, 0);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dcopy_sparc.hpp164 static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { argument
166 guarantee(mask_bits((uintptr_t)tohw, right_n_bits(LogBytesPerLong)) == 0,
168 julong* to = (julong*)tohw;
174 juint* to = (juint*)tohw;
183 static void pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) { argument
189 ((_zero_Fn)StubRoutines::zero_aligned_words())(tohw, count);
191 julong* to = (julong*)tohw;
198 julong* end = ((julong*)tohw) + aligned_count - 1;
215 static void pd_zero_to_words(HeapWord* tohw, size_t count) { argument
216 pd_fill_to_words(tohw, coun
[all...]

Completed in 53 milliseconds