Lines Matching refs:element

39 fill0 (char *target, const char *element, size_t element_size,  in fill0()  argument
44 memcpy (target, element, 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()
63 memcpy (&wc, element, sizeof (wc)); in fill()
71 fill0 (buffer, element, element_size, buffer_count); in fill()
84 fill0 (target, element, element_size, count); in fill()
90 allocate_malloc (size_t total_size, const void *element, size_t element_size, in allocate_malloc() argument
96 fill (buffer, element, element_size, count); in allocate_malloc()
131 allocate_big (size_t total_size, const void *element, size_t element_size, in allocate_big() argument
150 return allocate_malloc (total_size, element, element_size, count); in allocate_big()
201 fill (target, element, element_size, stride_size / element_size); in allocate_big()
259 repeat_allocate (const void *element, size_t element_size, in repeat_allocate() argument
269 return allocate_malloc (total_size, element, element_size, count); in repeat_allocate()
271 return allocate_big (total_size, element, element_size, count, shared); in repeat_allocate()
275 support_blob_repeat_allocate (const void *element, size_t element_size, in support_blob_repeat_allocate() argument
278 return repeat_allocate (element, element_size, count, false); in support_blob_repeat_allocate()
282 support_blob_repeat_allocate_shared (const void *element, size_t element_size, in support_blob_repeat_allocate_shared() argument
285 return repeat_allocate (element, element_size, count, true); in support_blob_repeat_allocate_shared()