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

References

projects/openmp/runtime/src/kmp_error.cpp
  135   p = (struct cons_header *)__kmp_allocate(sizeof(struct cons_header));
  136   p->p_top = p->w_top = p->s_top = 0;
  136   p->p_top = p->w_top = p->s_top = 0;
  136   p->p_top = p->w_top = p->s_top = 0;
  137   p->stack_data = (struct cons_data *)__kmp_allocate(sizeof(struct cons_data) *
  139   p->stack_size = MIN_STACK;
  140   p->stack_top = 0;
  141   p->stack_data[0].type = ct_none;
  142   p->stack_data[0].prev = 0;
  143   p->stack_data[0].ident = NULL;
  144   return p;