HomeSort by: relevance | last modified time | path
    Searched defs:tcount (Results 1 - 20 of 20) sorted by relevancy

  /src/sys/stand/efiboot/
smbios.c 146 int ret = 0, tcount = 1; local
171 tcount = st->cookie >> 16;
175 for (; va + sizeof(struct smbtblhdr) < end && tcount <=
176 smbios_entry.count; tcount++) {
182 st->cookie = (tcount + 1) << 16 | type;
  /src/sys/arch/mipsco/obio/
rambo.c 111 register uint32_t tbreak, tcount; local
116 tcount = bus_space_read_4(rambo->sc_bst, rambo->sc_bsh, RB_TCOUNT);
117 delta = tcount - tbreak;
121 * Either tcount may overtake the updated tbreak value
125 while (cycles && tbreak < tcount) {
  /src/tests/dev/sysmon/
t_swwdog.c 48 static volatile sig_atomic_t tcount; variable
55 tcount++;
84 ATF_REQUIRE_EQ(tcount, max);
  /src/sys/dev/
smbios.c 264 int ret = 0, tcount = 1; local
289 tcount = st->cookie >> 16;
293 for (; va + sizeof(struct smbtblhdr) < end && tcount <=
294 smbios_entry.count; tcount++) {
300 st->cookie = (tcount + 1) << 16 | type;
  /src/external/gpl3/gdb/dist/sim/bfin/
dv-bfin_ctimer.c 36 bu32 tcntl, tperiod, tscale, tcount; member in struct:bfin_ctimer
43 "TCNTL", "TPERIOD", "TSCALE", "TCOUNT",
71 ctimer->tcount = ctimer->tperiod;
76 ctimer->tcount = 0;
97 ctimer->tcount -= (scale * ticks);
115 ctimer->timeout = (ctimer->tcount / scale) + !!(ctimer->tcount % scale);
161 case mmr_offset(tcount):
172 /* Writes are mirrored into TCOUNT. */
173 ctimer->tcount = value
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/bfin/
dv-bfin_ctimer.c 36 bu32 tcntl, tperiod, tscale, tcount; member in struct:bfin_ctimer
43 "TCNTL", "TPERIOD", "TSCALE", "TCOUNT",
71 ctimer->tcount = ctimer->tperiod;
76 ctimer->tcount = 0;
97 ctimer->tcount -= (scale * ticks);
115 ctimer->timeout = (ctimer->tcount / scale) + !!(ctimer->tcount % scale);
161 case mmr_offset(tcount):
172 /* Writes are mirrored into TCOUNT. */
173 ctimer->tcount = value
    [all...]
  /src/sys/arch/hp300/dev/
dma.c 411 int seg, tcount; local
444 if (count < (tcount = PAGE_SIZE - ((int)addr & PGOFSET)))
445 tcount = count;
446 dc->dm_chain[seg].dc_count = tcount;
447 addr += tcount;
448 count -= tcount;
450 tcount >>= 2;
452 tcount >>= 1;
462 dc->dm_chain[seg - 1].dc_count + tcount <= 65536)
469 dc->dm_chain[--seg].dc_count += tcount;
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
refclock_wwvb.c 137 int tcount; /* timecode sample counter */ member in struct:wwvbunit
439 up->tcount++;
534 if (up->tcount == 0) {
539 up->pcount = up->tcount = 0;
refclock_irig.c 256 int tcount; /* time constant counter */ member in struct:irigunit
648 up->tcount = 0;
768 up->tcount++;
769 if (up->tcount > 20 * up->tc) {
773 up->tcount = 0;
779 up->tcount = 0;
  /src/sys/arch/amiga/dev/
siop.c 736 int count, tcount; local
827 if (count < (tcount = PAGE_SIZE - ((int) addr & PGOFSET)))
828 tcount = count;
829 acb->ds.chain[nchain].datalen = tcount;
830 addr += tcount;
831 count -= tcount;
835 acb->ds.chain[--nchain].datalen += tcount;
843 acb->ds.chain[nchain].datalen = tcount;
siop2.c 765 int count, tcount; local
881 if (count < (tcount = PAGE_SIZE - ((int) addr & PGOFSET)))
882 tcount = count;
885 printf("chain[%d]: count %d tcount %d vaddr %p paddr %p\n",
886 nchain, count, tcount, addr,
889 acb->ds.chain[nchain].datalen = tcount;
890 addr += tcount;
891 count -= tcount;
895 acb->ds.chain[--nchain].datalen += tcount;
903 acb->ds.chain[nchain].datalen = tcount;
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
rdataslab.c 489 unsigned int ocount, ncount, count, olength, tlength, tcount, length; local
555 tcount = ocount;
576 tcount++;
584 if (((flags & DNS_RDATASLAB_EXACT) != 0) && (tcount != ncount + ocount))
596 if (tcount > 1 && dns_rdatatype_issingleton(type)) {
604 if (tcount > 0xffff) {
621 *tcurrent++ = (tcount & 0xff00) >> 8;
622 *tcurrent++ = (tcount & 0x00ff);
628 tcurrent += (tcount * 4);
754 unsigned int mcount, scount, rcount, count, tlength, tcount, i local
    [all...]
  /src/sys/kern/
kern_tc.c 1207 uint64_t tcount, acount, dcount, *pcount; local
1223 tcount = (uint64_t)tc_delta(th) + th->th_offset_count;
1242 tcount = 0; /* keep GCC happy */
1292 acount = tcount; /* use current timestamp */
1300 dcount = tcount - pps->capcount;
1423 tcount = pps->capcount - pps->ppscount[2];
1425 tcount &= pps->capth->th_counter->tc_counter_mask;
1460 bintime_addx(&bt, scale * tcount);
  /src/external/gpl2/xcvs/dist/src/
buffer.c 1413 size_t get, nread, count, tcount; local
1548 tcount = ((outbuf[0] & 0xff) << 8) + (outbuf[1] & 0xff);
1550 if (tcount > count)
1553 if (tcount > size)
1561 pb->holdsize = tcount - size;
1562 memcpy (pb->holdbuf, outbuf + 2 + size, tcount - size);
1572 memcpy (data, outbuf + 2, tcount);
1579 data += tcount;
1580 need -= tcount;
1581 size -= tcount;
    [all...]
server.c 7577 int tcount;
7589 tcount = ((output[0] & 0xff) << 8) + (output[1] & 0xff);
7590 if (((tcount + 2 + 7) & ~7) != size)
7576 int tcount; local
  /src/external/gpl3/gcc/dist/gcc/
cfgloop.cc 603 profile_count mcount = profile_count::zero (), tcount = profile_count::zero ();
612 tcount += e->count();
615 if (!tcount.initialized_p () || !(tcount.ipa () > HEAVY_EDGE_MIN_SAMPLES)
616 || (tcount - mcount) * HEAVY_EDGE_RATIO > tcount)
602 profile_count mcount = profile_count::zero (), tcount = profile_count::zero (); local
  /src/external/gpl3/gcc.old/dist/gcc/
cfgloop.cc 610 profile_count mcount = profile_count::zero (), tcount = profile_count::zero ();
619 tcount += e->count();
622 if (!tcount.initialized_p () || !(tcount.ipa () > HEAVY_EDGE_MIN_SAMPLES)
623 || (tcount - mcount).apply_scale (HEAVY_EDGE_RATIO, 1) > tcount)
609 profile_count mcount = profile_count::zero (), tcount = profile_count::zero (); local
  /src/external/mpl/bind/dist/lib/dns/
rdataslab.c 528 unsigned int ocount, ncount, count, olength, tlength, tcount, length; local
595 tcount = ocount;
616 tcount++;
624 if (((flags & DNS_RDATASLAB_EXACT) != 0) && (tcount != ncount + ocount))
636 if (tcount > 1 && dns_rdatatype_issingleton(type)) {
644 if (tcount > 0xffff) {
661 *tcurrent++ = (tcount & 0xff00) >> 8;
662 *tcurrent++ = (tcount & 0x00ff);
668 tcurrent += (tcount * 4);
792 unsigned int mcount, scount, rcount, count, tlength, tcount, i local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
asn1t.h 586 long tcount; /* Number of templates if SEQUENCE or CHOICE */ member in struct:ASN1_ITEM_st
  /src/external/bsd/tcpdump/dist/
print-isakmp.c 1908 ikev2_t_print(netdissect_options *ndo, int tcount,
1960 ND_PRINT(" #%u type=%s id=%s ", tcount,
1964 ND_PRINT(" #%u type=%s id=%u ", tcount,
1995 int tcount; local
2027 tcount = 0;
2029 tcount++;
2055 cp = ikev2_t_print(ndo, tcount, ext, item_len, ep);

Completed in 62 milliseconds