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

References

projects/openmp/libomptarget/src/device.cpp
  124   for (lr.Entry = HostDataToTargetMap.begin();
  125       lr.Entry != HostDataToTargetMap.end(); ++lr.Entry) {
  125       lr.Entry != HostDataToTargetMap.end(); ++lr.Entry) {
  126     auto &HT = *lr.Entry;
  128     lr.Flags.IsContained = hp >= HT.HstPtrBegin && hp < HT.HstPtrEnd &&
  131     lr.Flags.ExtendsBefore = hp < HT.HstPtrBegin && (hp+Size) > HT.HstPtrBegin;
  133     lr.Flags.ExtendsAfter = hp < HT.HstPtrEnd && (hp+Size) > HT.HstPtrEnd;
  135     if (lr.Flags.IsContained || lr.Flags.ExtendsBefore ||
  135     if (lr.Flags.IsContained || lr.Flags.ExtendsBefore ||
  136         lr.Flags.ExtendsAfter) {
  141   if (lr.Flags.ExtendsBefore) {
  145   if (lr.Flags.ExtendsAfter) {
  150   return lr;