Lines Matching refs:target
39 fill0 (char *target, const char *element, size_t element_size, in fill0() argument
44 memcpy (target, element, element_size); in fill0()
45 target += element_size; in fill0()
53 fill (char *target, const char *element, size_t element_size, in fill() argument
59 memset (target, element[0], count); in fill()
64 wmemset ((wchar_t *) target, wc, count); in fill()
78 memcpy (target, buffer, copy_bytes); in fill()
79 target += copy_bytes; in fill()
84 fill0 (target, element, element_size, count); in fill()
154 void *target = mmap (NULL, total_size, PROT_NONE, in allocate_big() local
156 if (target == MAP_FAILED) in allocate_big()
186 void *ptr = mmap (target, stride_size, PROT_READ | PROT_WRITE, in allocate_big()
191 xmunmap (target, total_size); in allocate_big()
196 if (ptr != target) in allocate_big()
198 stride_size, target, ptr); in allocate_big()
201 fill (target, element, element_size, stride_size / element_size); in allocate_big()
204 ptr = mmap (target, stride_size, PROT_NONE, in allocate_big()
208 if (ptr != target) in allocate_big()
210 stride_size, target, ptr); in allocate_big()
216 char *current = target; in allocate_big()
235 xmunmap (target, total_size); in allocate_big()
242 to_map, target, ptr); in allocate_big()
252 .start = target, in allocate_big()