Searched refs:subseq (Results 1 - 6 of 6) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dada-lex.l550 subseqMatch (const char *subseq, const char *str)
552 if (subseq[0] == '\0')
556 else if (tolower (subseq[0]) == tolower (str[0]))
557 return subseqMatch (subseq+1, str+1) || subseqMatch (subseq, str+1);
559 return subseqMatch (subseq, str+1);
H A Dada-lex.c2430 subseqMatch (const char *subseq, const char *str) argument
2432 if (subseq[0] == '\0')
2436 else if (tolower (subseq[0]) == tolower (str[0]))
2437 return subseqMatch (subseq+1, str+1) || subseqMatch (subseq, str+1);
2439 return subseqMatch (subseq, str+1);
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/libuniname/
H A Dgen-uninames33 (code-string (subseq line 0 i1))
35 (name-string (subseq line (1+ i1) i2)))
81 (let* ((word (subseq name i1 i2))
205 (let* ((word (subseq name i1 i2))
/netbsd-6-1-5-RELEASE/sys/netiso/
H A Dtp_subr.c247 tp_goodack(struct tp_pcb *tpcb, u_int cdt, SeqNum seq, u_int subseq) argument
264 seq, cdt, tpcb->tp_snduna, tpcb->tp_sndnew, subseq);
275 if (subseq < tpcb->tp_r_subseq ||
276 (subseq == tpcb->tp_r_subseq && cdt <= tpcb->tp_fcredit)) {
280 printf("goodack discard : tpcb %p subseq %d r_subseq %d\n",
281 tpcb, subseq, tpcb->tp_r_subseq);
286 if (cdt == tpcb->tp_fcredit /* && thus subseq >
288 tpcb->tp_r_subseq = subseq;
338 tpcb->tp_r_subseq = subseq;
H A Dtp_input.c423 u_short dref, sref, acktime, subseq; local
453 sref = subseq = 0;
1150 vb_getval(P, u_short, subseq);
1151 subseq = ntohs(subseq);
1154 printf("AK dref 0x%x Subseq 0x%x\n", dref, subseq);
1173 printf("%s%x, subseq 0x%x, cdt 0x%x dref 0x%x\n",
1330 e.TPDU_ATTR(AK).e_subseq = subseq;
1350 tptrace(TPPTmisc, "AK recvd seq cdt subseq fcc_pres",
1352 subseq, fcc_presen
[all...]
H A Dtp_emit.c592 printf("Adding subseq 0x%x\n", tpcb->tp_s_subseq);
597 * add tmp subseq and do a htons on it.
635 u_short bogus[4]; /* lwe(32), subseq(16),
638 u_short subseq, fcredit; local
643 subseq = htons(tpcb->tp_r_subseq);
647 memcpy((void *) & bogus[2], (void *) & subseq, sizeof(u_short));

Completed in 299 milliseconds