Lines Matching defs:slab
495 When a CV has a reference count on its slab (C<CvSLABBED>), it is responsible
497 reference count on the same slab.) The CV only needs to reference the slab
499 finished its job, so it can forget the slab.
508 OPSLAB *slab = NULL;
517 if (CvROOT(cv)) slab = OpSLAB(CvROOT(cv));
518 else if (CvSTART(cv)) slab = (OPSLAB *)CvSTART(cv);
523 if (slab) {
525 const size_t refcnt = slab->opslab_refcnt;
527 OpslabREFCNT_dec(slab);
529 if (refcnt > 1) Slab_to_ro(slab);