Home
last modified time | relevance | path

Searched refs:PL_OpSlab (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/
Dembedvar.h202 #define PL_OpSlab (PERL_GET_INTERP->IOpSlab) macro
527 #define PL_OpSlab (vTHX->IOpSlab) macro
855 #define PL_IOpSlab PL_OpSlab
Dperlapi.h140 #undef PL_OpSlab
141 #define PL_OpSlab (*Perl_IOpSlab_ptr(aTHX))
Dop.c106 PL_OpSlab = (I32 *) PL_OpPtr; in Perl_Slab_Alloc()
120 assert( PL_OpPtr > (I32 **) PL_OpSlab ); in Perl_Slab_Alloc()
121 *PL_OpPtr = PL_OpSlab; /* Note which slab it belongs to */ in Perl_Slab_Alloc()
122 (*PL_OpSlab)++; /* Increment use count of slab */ in Perl_Slab_Alloc()
123 assert( PL_OpPtr+sz <= ((I32 **) PL_OpSlab + PERL_SLAB_SIZE) ); in Perl_Slab_Alloc()
124 assert( *PL_OpSlab > 0 ); in Perl_Slab_Alloc()
142 if (slab == PL_OpSlab) { in Perl_Slab_Free()