Lines Matching refs:count

31 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
32 memmove(to, from, count * HeapWordSize);
35 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
36 switch (count) {
47 memcpy(to, from, count * HeapWordSize);
54 size_t count) {
55 switch (count) {
66 while (count-- > 0) {
75 size_t count) {
76 memmove(to, from, count * HeapWordSize);
81 size_t count) {
82 pd_disjoint_words(from, to, count);
85 static void pd_conjoint_bytes(void* from, void* to, size_t count) {
86 memmove(to, from, count);
89 static void pd_conjoint_bytes_atomic(void* from, void* to, size_t count) {
90 memmove(to, from, count);
93 static void pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) {
94 _Copy_conjoint_jshorts_atomic(from, to, count);
97 static void pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) {
98 _Copy_conjoint_jints_atomic(from, to, count);
101 static void pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) {
102 _Copy_conjoint_jlongs_atomic(from, to, count);
105 static void pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) {
108 _Copy_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
111 _Copy_conjoint_jints_atomic((jint*)from, (jint*)to, count);
117 size_t count) {
118 _Copy_arrayof_conjoint_bytes(from, to, count);
123 size_t count) {
124 _Copy_arrayof_conjoint_jshorts(from, to, count);
129 size_t count) {
130 _Copy_arrayof_conjoint_jints(from, to, count);
135 size_t count) {
136 _Copy_arrayof_conjoint_jlongs(from, to, count);
141 size_t count) {
144 _Copy_arrayof_conjoint_jlongs(from, to, count);
147 _Copy_arrayof_conjoint_jints(from, to, count);
151 static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) {
160 while (count-- > 0) {
166 size_t count,
168 pd_fill_to_words(tohw, count, value);
171 static void pd_fill_to_bytes(void* to, size_t count, jubyte value) {
172 memset(to, value, count);
175 static void pd_zero_to_words(HeapWord* tohw, size_t count) {
176 pd_fill_to_words(tohw, count, 0);
179 static void pd_zero_to_bytes(void* to, size_t count) {
180 memset(to, 0, count);