reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_tasking.cpp
 3971       : task(_task), taskdata(KMP_TASK_TO_TASKDATA(task)),
 3972         lower_offset((char *)lb - (char *)task),
 3973         upper_offset((char *)ub - (char *)task) {
 3987       retval = *(kmp_int64 *)((char *)task + lower_offset);
 3991         kmp_int32 *lb = RCAST(kmp_int32 *, task->shareds);
 3994         kmp_int64 *lb = RCAST(kmp_int64 *, task->shareds);
 4008       retval = *(kmp_int64 *)((char *)task + upper_offset);
 4012         kmp_int32 *ub = RCAST(kmp_int32 *, task->shareds) + 1;
 4015         kmp_int64 *ub = RCAST(kmp_int64 *, task->shareds) + 1;
 4028       *(kmp_uint64 *)((char *)task + lower_offset) = lb;
 4032         kmp_uint32 *lower = RCAST(kmp_uint32 *, task->shareds);
 4035         kmp_uint64 *lower = RCAST(kmp_uint64 *, task->shareds);
 4047       *(kmp_uint64 *)((char *)task + upper_offset) = ub;
 4051         kmp_uint32 *upper = RCAST(kmp_uint32 *, task->shareds) + 1;
 4054         kmp_uint64 *upper = RCAST(kmp_uint64 *, task->shareds) + 1;