Lines Matching defs:cpy_data
2232 @param cpy_size size of the cpy_data buffer
2233 @param cpy_data pointer to data to be copied
2243 All threads pass a pointer to a data buffer (cpy_data) that they have built.
2255 address (cpy_data) to a team-private location, then the other threads will each
2257 copy by copying the data using the cpy_data buffer.
2260 by cpy_data and cpy_size may be built in any fashion that will allow the copy
2261 to be done. For instance, the cpy_data buffer can hold the actual data to be
2263 interpret the cpy_data buffer appropriately.
2269 where void *destination is the cpy_data pointer for the thread being copied to
2270 and void *source is the cpy_data pointer for the thread being copied from.
2273 void *cpy_data, void (*cpy_func)(void *, void *),
2292 *data_ptr = cpy_data;
2310 (*cpy_func)(cpy_data, *data_ptr);
2336 @param cpy_data pointer to the data to be saved/copied or 0
2348 void *__kmpc_copyprivate_light(ident_t *loc, kmp_int32 gtid, void *cpy_data) {
2365 if (cpy_data)
2366 *data_ptr = cpy_data;