Lines Matching refs:dst
113 static void alloc_mem(void **dst, void **src, size_t length) in alloc_mem() argument
115 *dst = zalloc(length); in alloc_mem()
116 if (!*dst) in alloc_mem()
129 void *src = NULL, *dst = NULL; in do_memcpy_cycle() local
132 alloc_mem(&src, &dst, len); in do_memcpy_cycle()
135 fn(dst, src, len); in do_memcpy_cycle()
139 fn(dst, src, len); in do_memcpy_cycle()
143 free(dst); in do_memcpy_cycle()
150 void *src = NULL, *dst = NULL; in do_memcpy_gettimeofday() local
153 alloc_mem(&src, &dst, len); in do_memcpy_gettimeofday()
156 fn(dst, src, len); in do_memcpy_gettimeofday()
160 fn(dst, src, len); in do_memcpy_gettimeofday()
166 free(dst); in do_memcpy_gettimeofday()