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

References

projects/openmp/runtime/src/kmp_alloc.cpp
  238     data->freelist[i].ql.flink = &data->freelist[i];
  238     data->freelist[i].ql.flink = &data->freelist[i];
  239     data->freelist[i].ql.blink = &data->freelist[i];
  239     data->freelist[i].ql.blink = &data->freelist[i];
  378   b->ql.flink = &thr->freelist[bin];
  379   b->ql.blink = thr->freelist[bin].ql.blink;
  381   thr->freelist[bin].ql.blink = b;
  404     best = &thr->freelist[bin];
  407     while (b != &thr->freelist[bin]) {
  409       if ((best == &thr->freelist[bin]) || (b->bh.bb.bsize < best->bh.bb.bsize))
  463       b = (use_blink ? thr->freelist[bin].ql.blink
  464                      : thr->freelist[bin].ql.flink);
  467         best = &thr->freelist[bin];
  471         while (b != &thr->freelist[bin]) {
  473             if ((best == &thr->freelist[bin]) ||
  485       while (b != &thr->freelist[bin]) {
  959     for (b = thr->freelist[bin].ql.flink; b != &thr->freelist[bin];
  959     for (b = thr->freelist[bin].ql.flink; b != &thr->freelist[bin];
 2037     bfhead_t *b = thr->freelist[bin].ql.flink;
 2038     while (b != &thr->freelist[bin]) {