Home
last modified time | relevance | path

Searched refs:data_writable_copy (Results 1 – 2 of 2) sorted by relevance

/libCEED/backends/memcheck/
H A Dceed-memcheck-qfunctioncontext.c155 CeedCallBackend(CeedMallocArray(1, ctx_size, &impl->data_writable_copy)); in CeedQFunctionContextGetData_Memcheck()
156 …impl->writable_block_id = VALGRIND_CREATE_BLOCK(impl->data_writable_copy, ctx_size, "Allocated wri… in CeedQFunctionContextGetData_Memcheck()
157 memcpy(impl->data_writable_copy, impl->data_allocated, ctx_size); in CeedQFunctionContextGetData_Memcheck()
158 *(void **)data = impl->data_writable_copy; in CeedQFunctionContextGetData_Memcheck()
195 memcpy(impl->data_allocated, impl->data_writable_copy, ctx_size); in CeedQFunctionContextRestoreData_Memcheck()
199 memset(impl->data_writable_copy, -42, ctx_size); in CeedQFunctionContextRestoreData_Memcheck()
200 CeedCallBackend(CeedFree(&impl->data_writable_copy)); in CeedQFunctionContextRestoreData_Memcheck()
H A Dceed-memcheck.h63 void *data_writable_copy; member