Home
last modified time | relevance | path

Searched refs:kid (Results 1 – 25 of 37) sorted by relevance

12

/mirbsd/src/gnu/usr.bin/perl/ext/B/B/
DDeparse.pm883 my $kid;
890 $kid = $op->first->sibling; # skip pushmark
891 push @text, "\f".$self->const_sv($kid)->PV;
892 $kid = $kid->sibling;
893 for (; not null $kid; $kid = $kid->sibling) {
894 push @exprs, $self->deparse($kid, 0);
973 my($name, $kid, $cx) = @_;
975 $kid = $self->deparse($kid, 1);
976 if ($name eq "umask" && $kid =~ /^\d+$/) {
977 $kid = sprintf("%#o", $kid);
[all …]
DConcise.pm423 for (my $kid = $op->first; $$kid; $kid = $kid->sibling) {
424 walk_topdown($kid, $sub, $level + 1);
853 my($space, $single, $kids, $kid, $nokid, $last, $lead, $size) = @$style;
859 for (my $kid = $op->first; $$kid; $kid = $kid->sibling) {
860 push @lines, tree($kid, $level+1);
872 $lines[$i] = $kid . $lines[$i];
/mirbsd/src/gnu/usr.bin/perl/
Dop.c192 S_bad_type(pTHX_ I32 n, const char *t, const char *name, const OP *kid) in S_bad_type() argument
195 (int)n, name, t, OP_DESC((OP *)kid))); in S_bad_type()
364 register OP *kid, *nextkid; in Perl_op_free() local
365 for (kid = cUNOPo->op_first; kid; kid = nextkid) { in Perl_op_free()
366 nextkid = kid->op_sibling; /* Get before next freeing kid */ in Perl_op_free()
367 op_free(kid); in Perl_op_free()
577 register OP *kid; in Perl_linklist() local
579 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) { in Perl_linklist()
580 if (kid->op_sibling) in Perl_linklist()
581 kid->op_next = LINKLIST(kid->op_sibling); in Perl_linklist()
[all …]
Dop.h390 #define kUNOP cUNOPx(kid)
391 #define kBINOP cBINOPx(kid)
392 #define kLISTOP cLISTOPx(kid)
393 #define kLOGOP cLOGOPx(kid)
394 #define kPMOP cPMOPx(kid)
395 #define kSVOP cSVOPx(kid)
396 #define kPADOP cPADOPx(kid)
397 #define kPVOP cPVOPx(kid)
398 #define kCOP cCOPx(kid)
399 #define kLOOP cLOOPx(kid)
[all …]
Dpp_ctl.c2127 OP *kid; in S_dofindlabel() local
2129 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) { in S_dofindlabel()
2130 if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) && in S_dofindlabel()
2132 return kid; in S_dofindlabel()
2134 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) { in S_dofindlabel()
2135 if (kid == PL_lastgotoprobe) in S_dofindlabel()
2137 if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) { in S_dofindlabel()
2139 *ops++ = kid; in S_dofindlabel()
2142 ops[-1] = kid; in S_dofindlabel()
2144 *ops++ = kid; in S_dofindlabel()
[all …]
Dpad.c1431 CV *kid = cv_clone2((CV*)ppad[ix], cv); in S_cv_clone2() local
1433 CvCLONE_on(kid); in S_cv_clone2()
1434 SvPADMY_on(kid); in S_cv_clone2()
1435 PL_curpad[ix] = (SV*)kid; in S_cv_clone2()
1437 CvWEAKOUTSIDE_on(kid); in S_cv_clone2()
Ddump.c735 OP *kid; in Perl_do_op_dump() local
736 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) in Perl_do_op_dump()
737 do_op_dump(level, file, kid); in Perl_do_op_dump()
Dpp_sort.c1515 OP *kid = cLISTOP->op_first->op_sibling; /* pass pushmark */ in PP() local
1516 kid = kUNOP->op_first; /* pass rv2gv */ in PP()
1517 kid = kUNOP->op_first; /* pass leave */ in PP()
1518 PL_sortcop = kid->op_next; in PP()
Dutil.c959 OP *kid; in S_closest_cop() local
960 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) in S_closest_cop()
967 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE) in S_closest_cop()
968 cop = (COP *)kid; in S_closest_cop()
972 new_cop = closest_cop(cop, kid); in S_closest_cop()
/mirbsd/src/sys/dev/ic/
Dawi_wep.c275 awi_wep_setkey(sc, kid, key, keylen) in awi_wep_setkey() argument
277 int kid;
282 if (kid < 0 || kid >= IEEE80211_WEP_NKID)
286 sc->sc_wep_keylen[kid] = keylen;
288 memcpy(sc->sc_wep_key[kid] + IEEE80211_WEP_IVLEN, key, keylen);
293 awi_wep_getkey(sc, kid, key, keylen) in awi_wep_getkey() argument
295 int kid;
300 if (kid < 0 || kid >= IEEE80211_WEP_NKID)
302 if (*keylen < sc->sc_wep_keylen[kid])
304 *keylen = sc->sc_wep_keylen[kid];
[all …]
Dif_wi.c2151 u_int32_t i, crc, klen, kid; in wi_do_hostdecrypt() local
2168 kid = (dat[3] >> 6) % 4; in wi_do_hostdecrypt()
2171 klen = letoh16(sc->wi_keys.wi_keys[kid].wi_keylen); in wi_do_hostdecrypt()
2172 bcopy((char *)&sc->wi_keys.wi_keys[kid].wi_keydat, in wi_do_hostdecrypt()
/mirbsd/src/gnu/usr.bin/perl/lib/Test/Simple/t/
Dsort_bug.t38 my $kid = shift;
43 print "# kid $kid before eq_set\n";
50 print "# kid $kid exit\n";
/mirbsd/src/gnu/usr.bin/perl/ext/B/
DB.pm124 my $kid;
126 for ($kid = $op->first; $$kid; $kid = $kid->sibling) {
127 walkoptree_slow($kid, $method, $level + 1);
DB.xs384 OP *o, *kid; in walkoptree() local
402 for (kid = ((UNOP*)o)->op_first; kid; kid = kid->op_sibling) { in walkoptree()
404 sv_setiv(newSVrv(opsv, cc_opclassname(aTHX_ kid)), PTR2IV(kid)); in walkoptree()
409 && (kid = cPMOPo->op_pmreplroot)) in walkoptree()
411 sv_setiv(newSVrv(opsv, cc_opclassname(aTHX_ kid)), PTR2IV(kid)); in walkoptree()
439 OP *kid = cLISTOPo->op_first->op_sibling; /* pass pushmark */ in oplist() local
440 kid = kUNOP->op_first; /* pass rv2gv */ in oplist()
441 kid = kUNOP->op_first; /* pass leave */ in oplist()
442 SP = oplist(aTHX_ kid->op_next, SP); in oplist()
868 OP * kid = NO_INIT
[all …]
/mirbsd/src/usr.bin/calendar/
Dcalendar.c137 pid_t kid, deadkid; in main() local
175 switch ((kid = fork())) { in main()
216 if (deadkid == kid) { in main()
227 (void)kill(kid, SIGTERM); in main()
/mirbsd/src/gnu/usr.bin/perl/utils/
Ddprofpp.PL586 my $kid;
588 for $kid (keys %{$deep_times->{kids}}) {
589 $kids_time += $deep_times->{kids}{$kid}{incl_time};
594 for $kid (keys %{$deep_times->{kids}}) {
595 exclusives_in_tree($deep_times->{kids}{$kid});
608 my $kid;
622 for $kid (sort kids_by_incl %{$deep_times->{kids}}) {
623 display_tree( $deep_times->{kids}{$kid}, $kid, $level + 1 );
/mirbsd/src/gnu/usr.bin/perl/lib/IPC/
DOpen2.t54 ok 3, <READ> =~ /^hi kid\r?\n$/;
DOpen3.t61 ok 3, <READ> =~ /^hi kid\r?\n$/;
/mirbsd/src/sbin/isakmpd/
Dpolicy.c2243 int sid, kid, num; in keynote_cert_get_key() local
2252 kid = kn_init(); in keynote_cert_get_key()
2253 if (kid == -1) { in keynote_cert_get_key()
2261 sid = kn_add_assertion(kid, foo[num - 1], strlen(foo[num - 1]), 0); in keynote_cert_get_key()
2268 kn_close(kid); in keynote_cert_get_key()
2273 kl = kn_get_licensees(kid, sid); in keynote_cert_get_key()
2283 kn_remove_assertion(kid, sid); in keynote_cert_get_key()
2284 kn_close(kid); in keynote_cert_get_key()
/mirbsd/src/gnu/usr.bin/perl/t/op/
Dfork.t423 forked first kid
426 forked second kid
/mirbsd/src/gnu/usr.bin/perl/pod/
Dperldsc.pod588 kid => "bart",
733 { name => "pebbles", role => "kid", age => 4, },
743 { name => "elroy", role => "kid", age => 9, },
753 { name => "bart", role => "kid", age => 11, },
794 if ($person->{role} =~ /kid|son|daughter/) {
Dperlothrtut.pod918 10 my $kid = new Thread(\&check_num, $stream, 2);
925 17 $kid->join();
929 21 my $kid;
933 25 if ($kid) {
937 29 $kid = new Thread(\&check_num, $downstream, $num);
940 32 $downstream->enqueue(undef) if $kid;
941 33 $kid->join() if $kid;
Dperlthrtut.pod812 10 my $kid = new threads(\&check_num, $stream, 2);
819 17 $kid->join;
823 21 my $kid;
827 25 if ($kid) {
831 29 $kid = new threads(\&check_num, $downstream, $num);
834 32 $downstream->enqueue(undef) if $kid;
835 33 $kid->join if $kid;
Dperlipc.pod549 write to the filehandle you opened and your kid will find it in his
551 you opened whatever your kid writes to his STDOUT.
567 close(KID_TO_WRITE) || warn "kid exited $?";
593 close(KID_TO_READ) || warn "kid exited $?";
613 close(KID_TO_WRITE) || warn "kid exited $?";
/mirbsd/src/sys/net/
Dif_ieee80211subr.c2705 int i, left, len, moff, noff, kid; in ieee80211_wep_crypt() local
2746 kid = ic->ic_wep_txkey; in ieee80211_wep_crypt()
2767 ivp[IEEE80211_WEP_IVLEN] = kid << 6; /* pad and keyid */ in ieee80211_wep_crypt()
2772 kid = ivp[IEEE80211_WEP_IVLEN] >> 6; in ieee80211_wep_crypt()
2776 memcpy(keybuf + IEEE80211_WEP_IVLEN, ic->ic_nw_keys[kid].wk_key, in ieee80211_wep_crypt()
2777 ic->ic_nw_keys[kid].wk_len); in ieee80211_wep_crypt()
2779 IEEE80211_WEP_IVLEN + ic->ic_nw_keys[kid].wk_len); in ieee80211_wep_crypt()

12