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

References

projects/openmp/runtime/src/kmp_alloc.cpp
  717     thr->totalloc -= (size_t)bdh->tsize;
  718     thr->numdrel++; /* Number of direct releases */
  719     thr->numrel++; /* Increment number of brel() calls */
  728     (*thr->relfcn)((void *)bdh); /* Release it directly. */
  756   thr->numrel++; /* Increment number of brel() calls */
  757   thr->totalloc += (size_t)b->bh.bb.bsize;
  785   __kmp_bget_insert_into_freelist(thr, b);
  806     __kmp_bget_insert_into_freelist(thr, b);
  831   if (thr->relfcn != 0 &&
  832       b->bh.bb.bsize == (bufsize)(thr->pool_len - sizeof(bhead_t))) {
  834     if (thr->numpblk !=
  848       (*thr->relfcn)(b);
  850       thr->numprel++; /* Nr of expansion block releases */
  851       thr->numpblk--; /* Total number of blocks */
  855       if (thr->last_pool == b)
  856         thr->last_pool = 0;
  858       thr->last_pool = b;