| /mirbsd/src/sys/crypto/ |
| D | cryptodev.c | 159 struct crypt_op *cop; in cryptof_ioctl() local 299 cop = (struct crypt_op *)data; in cryptof_ioctl() 300 cse = csefind(fcr, cop->ses); in cryptof_ioctl() 303 error = cryptodev_op(cse, cop, p); in cryptof_ioctl() 318 cryptodev_op(struct csession *cse, struct crypt_op *cop, struct proc *p) in cryptodev_op() argument 325 if (cop->len > 64*1024-4) in cryptodev_op() 328 if (cse->txform && (cop->len % cse->txform->blocksize) != 0) { in cryptodev_op() 340 cse->uio.uio_iov[0].iov_len = cop->len; in cryptodev_op() 341 cse->uio.uio_iov[0].iov_base = malloc(cop->len, M_XDATA, M_WAITOK); in cryptodev_op() 364 if ((error = copyin(cop->src, cse->uio.uio_iov[0].iov_base, cop->len))) in cryptodev_op() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/ext/B/B/ |
| D | Bytecode.pm | 632 my ($cop,$ix) = @_; 633 my $warnix = $cop->warnings->ix; 634 my $ioix = $cop->io->ix; 636 $cop->B::OP::bsave($ix); 637 asm "cop_stashpv", pvix $cop->stashpv; 638 asm "cop_file", pvix $cop->file; 640 my $stashix = $cop->stash->ix; 641 my $fileix = $cop->filegv->ix(1); 642 $cop->B::OP::bsave($ix); 646 asm "cop_label", pvix $cop->label if $cop->label; # XXX AD [all …]
|
| D | Deparse.pm | 637 my $cop = $self->{'curcop'}; 638 my($line, $file) = ($cop->line, $cop->file);
|
| /mirbsd/src/gnu/usr.bin/perl/ext/ByteLoader/ |
| D | bytecode.h | 297 #define BSET_cop_file(cop, arg) CopFILE_set(cop,arg) argument 298 #define BSET_cop_stashpv(cop, arg) CopSTASHPV_set(cop,arg) argument 303 #define BSET_cop_filegv(cop, arg) CopFILEGV_set(cop,arg) argument 304 #define BSET_cop_stash(cop,arg) CopSTASH_set(cop,(HV*)arg) argument
|
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | cv.h | 67 # define CvFILE_set_from_cop(sv, cop) (CvFILE(sv) = savepv(CopFILE(cop))) argument 69 # define CvFILE_set_from_cop(sv, cop) (CvFILE(sv) = CopFILE(cop)) argument
|
| D | op.c | 521 S_cop_free(pTHX_ COP* cop) in S_cop_free() argument 523 Safefree(cop->cop_label); /* FIXME: treaddead ??? */ in S_cop_free() 524 CopFILE_free(cop); in S_cop_free() 525 CopSTASH_free(cop); in S_cop_free() 526 if (! specialWARN(cop->cop_warnings)) in S_cop_free() 527 SvREFCNT_dec(cop->cop_warnings); in S_cop_free() 528 if (! specialCopIO(cop->cop_io)) { in S_cop_free() 532 char *s = SvPV(cop->cop_io,len); in S_cop_free() 536 SvREFCNT_dec(cop->cop_io); in S_cop_free() 3452 register COP *cop; in Perl_newSTATEOP() local [all …]
|
| D | util.c | 952 S_closest_cop(pTHX_ COP *cop, const OP *o) in S_closest_cop() argument 956 if (!o || o == PL_op) return cop; in S_closest_cop() 968 cop = (COP *)kid; in S_closest_cop() 972 new_cop = closest_cop(cop, kid); in S_closest_cop() 998 const COP *cop = closest_cop(PL_curcop, PL_curcop->op_sibling); in Perl_vmess() local 999 if (!cop) cop = PL_curcop; in Perl_vmess() 1001 if (CopLINE(cop)) in Perl_vmess() 1003 OutCopFILE(cop), (IV)CopLINE(cop)); in Perl_vmess()
|
| D | Makefile.micro | 24 H = av.h uconfig.h cop.h cv.h embed.h embedvar.h form.h gv.h handy.h \
|
| D | cop.h | 16 struct cop { struct
|
| D | Changes5.6 | 411 ! cop.h 1510 !> cop.h perl.c pp_ctl.c t/op/eval.t t/op/misc.t 1535 ! cop.h perl.c pp_ctl.c t/op/misc.t 2232 ! av.c cop.h deb.c doop.c dump.c embed.h embed.pl gv.c hv.c mg.c 5254 !> cop.h op.c perl.c pp_ctl.c regcomp.c regexec.c scope.c sv.c 5264 ! cop.h op.c perl.c pp_ctl.c regcomp.c regexec.c scope.c sv.c 5670 ! EXTERN.h INTERN.h README av.c av.h cop.h cv.h deb.c doio.c 6250 ! MANIFEST XSUB.h av.c av.h cop.h cv.h embed.pl global.sym gv.c 8226 ! MANIFEST XSUB.h cop.h dump.c embed.h embed.pl embedvar.h 8300 !> cop.h deb.c embed.h embed.pl global.sym lib/Pod/Checker.pm [all …]
|
| D | proto.h | 1577 STATIC void S_cop_free(pTHX_ COP *cop); 1964 STATIC COP* S_closest_cop(pTHX_ COP *cop, const OP *o); 2293 PERL_CALLCONV bool Perl_stashpv_hvname_match(pTHX_ const COP *cop, const HV *hv)
|
| D | Changes5.002 | 315 Files patched: cop.h pp_ctl.c 771 Files patched: cop.h interp.sym perl.c perl.h pp_ctl.c pp_sys.c sv.c toke.c 830 Files patched: cop.h doio.c embed.h global.sym perl.c pp_sys.c proto.h 1006 Files patched: cop.h pp_hot.c 1081 Files patched: cop.h pp_ctl.c
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Devel/PPPort/t/ |
| D | cop.t | 5 # Edit mktests.PL and/or parts/inc/cop instead. 48 ok($file =~ /cop/i);
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Devel/PPPort/ |
| D | MANIFEST | 48 parts/inc/cop 104 t/cop.t
|
| D | PPPort_pm.PL | 576 %include cop
|
| D | PPPort.xs | 285 ## XSUBs from parts/inc/cop
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Devel/PPPort/parts/inc/ |
| D | cop | 83 ok($file =~ /cop/i);
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Locale/ |
| D | Script.pm | 210 co:cop:205:Coptic
|
| D | Currency.pm | 170 cop:Colombian Peso
|
| /mirbsd/src/gnu/usr.bin/binutils/opcodes/ |
| D | sparc-opc.c | 1387 #define CONDFC(fop, cop, mask, flags) \ argument 1390 CBR(cop, F2(0, 7)|COND(mask), F2(~0, ~7)|COND(~(mask)), flags, v6notlet) 1392 #define CONDFCL(fop, cop, mask, flags) \ argument 1395 CBR(cop, F2(0, 7)|COND(mask), F2(~0, ~7)|COND(~(mask)), flags, v6)
|
| /mirbsd/src/gnu/usr.bin/perl/wince/ |
| D | Makefile.ce | 618 ..\cop.h \
|
| /mirbsd/src/gnu/usr.bin/perl/vms/ |
| D | descrip_mms.template | 283 h0 = av.h cc_runtime.h config.h cop.h cv.h embed.h embedvar.h 293 ac1 = $(ARCHCORE)config.h $(ARCHCORE)cop.h $(ARCHCORE)cv.h $(ARCHCORE)embed.h 1358 $(ARCHCORE)cop.h : cop.h
|
| /mirbsd/src/gnu/usr.bin/perl/win32/ |
| D | Makefile | 674 ..\cop.h \
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Test/ |
| D | Tutorial.pod | 254 it as a cop out to avoid work.
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Devel/PPPort/parts/ |
| D | embed.fnc | 1064 s |void |cop_free |NN COP *cop 1326 s |COP* |closest_cop |COP *cop|OP *o 1515 ApR |bool |stashpv_hvname_match|NN const COP *cop|NN const HV *hv
|