| /mirbsd/src/usr.sbin/ppp/ppp/ |
| D | mp.c | 110 inc_seq(unsigned is12bit, u_int32_t seq) in inc_seq() argument 112 seq++; in inc_seq() 114 if (seq & 0xfffff000) in inc_seq() 115 seq = 0; in inc_seq() 116 } else if (seq & 0xff000000) in inc_seq() 117 seq = 0; in inc_seq() 118 return seq; in inc_seq() 148 header->seq = val & 0x0fff; in mp_ReadHeader() 151 ua_ntohl(MBUF_CTOP(m), &header->seq); in mp_ReadHeader() 152 if (header->seq & 0x3f000000) { in mp_ReadHeader() [all …]
|
| D | mp.h | 85 u_int32_t seq; /* next outgoing seq */ member 93 } seq; member 113 u_int32_t seq; /* 12 or 24 bit incoming seq */ member 120 u_int32_t seq; member
|
| /mirbsd/src/lib/libssl/src/apps/ |
| D | nseq.c | 76 NETSCAPE_CERT_SEQUENCE *seq = NULL; in MAIN() local 132 seq = NETSCAPE_CERT_SEQUENCE_new(); in MAIN() 133 seq->certs = sk_X509_new_null(); in MAIN() 135 sk_X509_push(seq->certs,x509); in MAIN() 137 if(!sk_X509_num(seq->certs)) in MAIN() 143 PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq); in MAIN() 148 if (!(seq = PEM_read_bio_NETSCAPE_CERT_SEQUENCE(in, NULL, NULL, NULL))) { in MAIN() 154 for(i = 0; i < sk_X509_num(seq->certs); i++) { in MAIN() 155 x509 = sk_X509_value(seq->certs, i); in MAIN() 163 NETSCAPE_CERT_SEQUENCE_free(seq); in MAIN()
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Encode/t/ |
| D | perlio.t | 43 my $seq = 0; 78 $seq++; 81 copy $sfile, "$sfile.$seq"; 82 copy $pfile, "$pfile.$seq"; 93 $seq++; 96 copy $sfile, "$sfile.$seq"; 97 copy $pfile, "$pfile.$seq"; 104 $seq++; 107 dump2file("$sfile.$seq", $utext); 108 dump2file("$pfile.$seq", $dtext); [all …]
|
| D | CJKT.t | 43 my $seq = 1; 66 ok(defined($uni), "decode $charset"); $seq++; 67 is(length($txt),0, "decode $charset completely"); $seq++; 81 or ($DEBUG and rename $dst_utf, "$dst_utf.$seq"); 82 $seq++; 98 ok(defined($txt), "encode $charset"); $seq++; 99 is(length($uni), 0, "encode $charset completely"); $seq++; 107 or ($DEBUG and rename $dst_enc, "$dst_enc.$seq"); 108 $seq++;
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Pod/ |
| D | Parser.pm | 778 my $seq = Pod::ParseTree->new(); 779 my @seq_stack = ($seq); 795 $seq = Pod::InteriorSequence->new( 800 (@seq_stack > 1) and $seq->nested($seq_stack[-1]); 801 push @seq_stack, $seq; 820 $seq->append($expand_text ? &$xtext_sub($self,$_,$seq) : $_); 825 $seq->rdelim($seq_end); 829 $seq_stack[-1]->append($expand_seq ? &$xseq_sub($self,$seq) 830 : $seq); 844 $seq->append($expand_text ? &$xtext_sub($self,$_,$seq) : $_); [all …]
|
| D | Plainer.pm | 16 (undef, my $seq) = @_; 17 $seq -> left_delimiter( '<' ); 18 $seq -> right_delimiter( '>' ); 19 $seq;
|
| D | Text.pm | 277 my ($self, $command, $seq); 278 ($self, $command, $_, $seq) = @_; 283 my $parent = $seq->nested; 285 return $seq->raw_text if ($parent->cmd_name eq 'L'); 298 my ($file, $line) = $seq->file_line; 320 elsif ($command eq 'L') { return $self->seq_l ($_, $seq) } 322 my ($file, $line) = $seq->file_line; 480 my ($self, $link, $seq) = @_; 482 my ($file, $line) = $seq->file_line;
|
| /mirbsd/src/sys/dev/ic/ |
| D | rlnsubr.c | 667 u_int8_t seq; local 670 seq = sc->sc_pktseq++; 674 return (seq); 787 rln_mbox_create(sc, seq, buf, len) in rln_mbox_create() argument 789 u_int8_t seq; 794 struct rln_mbox * mb = &sc->sc_mbox[seq]; 796 dprintf(" <create %d", seq); 799 if (seq > RLN_NMBOX) 823 rln_mbox_wait(sc, seq, timeo) in rln_mbox_wait() argument 825 u_int8_t seq; [all …]
|
| /mirbsd/src/sys/netinet/ |
| D | tcp_debug.c | 126 tcp_seq seq, ack; local 183 seq = th->th_seq; 186 seq = ntohl(seq); 190 printf("[%x..%x)", seq, seq+len); 192 printf("%x", seq);
|
| D | tcp_subr.c | 343 tcp_respond(tp, template, th0, ack, seq, flags) in tcp_respond() argument 347 tcp_seq ack, seq; 426 th->th_seq = htonl(seq); 715 tcp_seq seq; local 793 seq = ntohl(th.th_seq); 796 SEQ_GEQ(seq, tp->snd_una) && 797 SEQ_LT(seq, tp->snd_max)) 823 tcp_seq seq; local 848 seq = ntohl(th->th_seq); 852 SEQ_GEQ(seq, tp->snd_una) && [all …]
|
| /mirbsd/src/usr.bin/ssh/ |
| D | dispatch.c | 47 dispatch_protocol_error(int type, u_int32_t seq, in dispatch_protocol_error() argument 50 logit("dispatch_protocol_error: type %d seq %u", type, seq); in dispatch_protocol_error() 54 packet_put_int(seq); in dispatch_protocol_error() 59 dispatch_protocol_ignore(int type, u_int32_t seq, in dispatch_protocol_ignore() argument 62 logit("dispatch_protocol_ignore: type %d seq %u", type, seq); in dispatch_protocol_ignore()
|
| /mirbsd/src/gnu/usr.bin/perl/ext/B/B/ |
| D | Concise.pm | 413 sub seq { subroutine 472 $labels{$op->nextop->seq} = "NEXT"; 473 $labels{$op->lastop->seq} = "LAST"; 474 $labels{$op->redoop->seq} = "REDO"; 740 $pmreplstart = "replstart->" . seq($op->pmreplstart); 760 $h{arg} = "(next->" . seq($op->nextop) . " last->" . seq($op->lastop) 761 . " redo->" . seq($op->redoop) . ")"; 764 $h{arg} = "(other->" . seq($op->other) . ")"; 779 $h{seq} = $h{hyphseq} = seq($op); 780 $h{seq} = "" if $h{seq} eq "-"; [all …]
|
| /mirbsd/src/sys/dev/microcode/aic7xxx/ |
| D | Makefile | 33 SEQFLAGS= -l seq.lst 36 microcode aic7xxx_reg.h aic7xxx_seq.h: aic7xxx.seq aic7xxx.reg 37 ${OBJDIR}./aicasm -I/sys ${SEQFLAGS} -r tempreg.h -o tempseq.h ${.CURDIR}/aic7xxx.seq 38 grep OpenBSD: ${.CURDIR}/aic7xxx.seq | cat - tempseq.h > aic7xxx_seq.h 42 mv seq.lst /sys/dev/microcode/aic7xxx/
|
| /mirbsd/src/sys/sys/ |
| D | ipc.h | 57 unsigned short seq; /* sequence # (to generate unique msg/sem/shm id) */ member 68 unsigned short seq; /* sequence # (to generate unique msg/sem/shm id) */ member 78 unsigned short seq; /* sequence # (to generate unique msg/sem/shm id) */ member 103 #define IXSEQ_TO_IPCID(ix,perm) (((perm.seq) << 16) | (ix & 0xffff))
|
| /mirbsd/src/sys/netipx/ |
| D | spx_debug.c | 80 u_short seq, ack, len, alo; local 116 seq = si->si_seq; 121 seq = ntohs(seq); 128 p1(seq); p1(ack); p1(alo); p1(len);
|
| /mirbsd/src/lib/libssl/src/crypto/pkcs7/ |
| D | example.c | 81 ASN1_STRING *seq; in add_signed_seq2string() local 103 seq=ASN1_STRING_new(); in add_signed_seq2string() 104 ASN1_STRING_set(seq,data,total); in add_signed_seq2string() 110 V_ASN1_SEQUENCE,(char *)seq); in add_signed_seq2string() 244 ASN1_STRING *seq; in add_seq2string() local 267 seq=ASN1_STRING_new(); in add_seq2string() 268 ASN1_STRING_set(seq,data,total); in add_seq2string() 274 V_ASN1_SEQUENCE,(char *)seq); in add_seq2string()
|
| D | pk7_attr.c | 70 ASN1_STRING *seq; in PKCS7_add_attrib_smimecap() local 83 if(!(seq = ASN1_STRING_new())) { in PKCS7_add_attrib_smimecap() 87 if(!ASN1_STRING_set (seq, pp, len)) { in PKCS7_add_attrib_smimecap() 93 V_ASN1_SEQUENCE, seq); in PKCS7_add_attrib_smimecap()
|
| /mirbsd/src/usr.sbin/traceroute/ |
| D | traceroute.c | 252 u_char seq; /* sequence number of this packet */ member 301 int ch, i, lsrr = 0, on = 1, probe, seq = 0, tos = 0; in main() local 593 send_probe(++seq, ttl, incflag, &to); in main() 600 i = packet_ok(packet, cc, &from, seq, incflag); in main() 755 send_probe(int seq, u_int8_t ttl, int iflag, struct sockaddr_in *to) in send_probe() argument 767 ip->ip_id = htons(ident+seq); in send_probe() 773 icmpp->icmp_seq = htons(seq); in send_probe() 780 up->uh_dport = htons(port+seq); in send_probe() 792 op->seq = seq; in send_probe() 868 packet_ok(u_char *buf, int cc, struct sockaddr_in *from, int seq, int iflag) in packet_ok() argument [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | m68hc11-tdep.c | 508 m68hc11_analyze_instruction (struct insn_sequence *seq, CORE_ADDR pc, in m68hc11_analyze_instruction() argument 518 for (; seq->type != P_LAST; seq++) in m68hc11_analyze_instruction() 521 for (j = 0; j < seq->length; j++) in m68hc11_analyze_instruction() 530 if (seq->code[j] == buffer[j]) in m68hc11_analyze_instruction() 533 if ((seq->code[j] & 0xf00) == 0) in m68hc11_analyze_instruction() 537 switch (seq->code[j]) in m68hc11_analyze_instruction() 576 if (j == seq->length) in m68hc11_analyze_instruction() 579 return seq; in m68hc11_analyze_instruction() 686 struct insn_sequence *seq; in m68hc11_scan_prologue() local 689 seq = m68hc11_analyze_instruction (seq_table, pc, &val); in m68hc11_scan_prologue() [all …]
|
| D | dve3900-rom.c | 82 static void send_packet (char type, unsigned char *buf, int buflen, int seq); 680 send_packet (char type, unsigned char *buf, int buflen, int seq) in send_packet() argument 709 hdr[0] = seq; in send_packet() 726 sum += (seq & 0xff); in send_packet() 728 sum += (seq & 0xff) << 8; in send_packet() 757 unsigned char seq; in process_read_request() local 763 for (i = chunk = 0, seq = 0; i < buflen; i += chunk, seq++) in process_read_request() 772 send_packet ('p', len, sizeof (len), seq); in process_read_request()
|
| /mirbsd/src/lib/libc/db/recno/ |
| D | rec_close.c | 144 status = (dbp->seq)(dbp, &key, &data, R_FIRST); in __rec_sync() 148 status = (dbp->seq)(dbp, &key, &data, R_NEXT); in __rec_sync() 154 status = (dbp->seq)(dbp, &key, &data, R_FIRST); in __rec_sync() 160 status = (dbp->seq)(dbp, &key, &data, R_NEXT); in __rec_sync()
|
| /mirbsd/src/gnu/usr.bin/perl/ext/DB_File/ |
| D | DB_File.pm | 300 my $status = $self->seq($key, $value, R_FIRST()); 305 $status = $self->seq($key, $value, R_NEXT()); 507 for ($status = $db->seq($key, $value, R_CURSOR() ) ; 509 $status = $db->seq($key, $value, R_NEXT() ) ) { 549 for ($status = $db->seq($key, $value, R_CURSOR()) ; 551 $status = $db->seq($key, $value, R_NEXT()) ) {
|
| /mirbsd/src/usr.sbin/timed/timed/ |
| D | slave.c | 61 u_short seq; in slave() local 79 seq = 0; in slave() 230 if (seq != msg->tsp_seq) { in slave() 231 seq = msg->tsp_seq; in slave() 243 if (seq == msg->tsp_seq) in slave() 245 seq = msg->tsp_seq; in slave() 380 seq = 0; in slave() 643 u_short seq; in schgdate() local 651 seq = msg->tsp_seq; in schgdate() 669 xmit(TSP_DATEACK, seq, &taddr); in schgdate()
|
| /mirbsd/src/usr.sbin/traceroute6/ |
| D | traceroute6.c | 297 u_char seq; /* sequence number of this packet */ member 362 int ch, i, on = 1, seq, rcvcmsglen, error, minlen; in main() local 409 seq = 0; in main() 860 send_probe(++seq, hops); in main() 863 if ((i = packet_ok(&rcvmhdr, cc, seq))) { in main() 969 send_probe(int seq, u_long hops) in send_probe() argument 981 Dst.sin6_port = htons(port + seq); in send_probe() 993 icp->icmp6_seq = htons(seq); in send_probe() 998 op->seq = seq; in send_probe() 1100 packet_ok(struct msghdr *mhdr, int cc, int seq) in packet_ok() argument [all …]
|