Lines Matching defs:opad
309 =for apidoc m|void|PAD_SAVE_LOCAL|PAD *opad|PAD *npad
310 Save the current pad to the local variable C<opad>, then make the
313 =for apidoc m|void|PAD_RESTORE_LOCAL|PAD *opad
314 Restore the old pad saved into the local variable C<opad> by C<PAD_SAVE_LOCAL()>
426 #define PAD_SAVE_LOCAL(opad,npad) \
427 opad = PL_comppad; \
434 #define PAD_RESTORE_LOCAL(opad) \
435 assert(!opad || !SvIS_FREED(opad)); \
436 PL_comppad = opad; \