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

References

projects/openmp/runtime/src/kmp_error.cpp
   60   d = p->stack_data;
   62   p->stack_size = (p->stack_size * 2) + 100;
   62   p->stack_size = (p->stack_size * 2) + 100;
   65   p->stack_data = (struct cons_data *)__kmp_allocate(sizeof(struct cons_data) *
   66                                                      (p->stack_size + 1));
   68   for (i = p->stack_top; i >= 0; --i)
   69     p->stack_data[i] = d[i];