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

  /src/sys/arch/cats/cats/
cats_machdep.c 390 paddr_t istart, isize; local in function:initarm
400 &istart, &isize)) {
405 VPRINTF(" ISADMA 0x08%lx -> 0x%08lx\n", istart,
406 istart + isize - 1);
409 bp->bp_start = atop(istart);
417 if (start < istart) {
419 start, istart - 1);
423 bp->bp_pages = atop(istart - start);
431 if ((istart + isize) < end) {
433 (istart + isize), end - 1)
    [all...]
  /src/sys/arch/sh3/sh3/
db_interface.c 537 int i, istart, iend; local in function:__db_cachedump_sh4
544 istart = ((va & CCIA_ENTRY_MASK) >> CCIA_ENTRY_SHIFT) & ~3;
545 iend = istart + 4;
547 istart = 0;
553 for (i = istart; i < iend; i++) {
562 for (i = istart; i < iend; i++) {
  /src/sys/arch/netwinder/netwinder/
netwinder_machdep.c 743 paddr_t istart, isize; local in function:initarm
761 &istart, &isize)) {
767 printf(" ISADMA 0x%lx -> 0x%lx\n", istart,
768 istart + isize - 1);
770 uvm_page_physload(atop(istart),
771 atop(istart + isize), atop(istart),
772 atop(istart + isize), VM_FREELIST_ISADMA);
778 if (start < istart) {
781 start, istart - 1)
    [all...]
  /src/usr.bin/cdplay/
cdplay.c 643 int start, end, istart, iend, blk, len, relend; local in function:play
659 istart = iend = 1;
847 if (4 != sscanf(arg, "%d.%d%d.%d", &start, &istart, &end, &iend) &&
848 3 != sscanf(arg, "%d.%d%d", &start, &istart, &end) &&
850 2 != sscanf(arg, "%d.%d", &start, &istart) &&
857 return play_track(start, istart, end, iend);
1122 play_track(int tstart, int istart, int tend, int iend)
1142 t.start_index = istart;
1149 return play_track(tstart, istart, tend, iend);
  /src/sys/arch/shark/ofw/
ofw.c 881 paddr_t istart, isize; local in function:ofw_configmem
897 &istart, &isize)) {
903 printf(" ISADMA 0x%lx -> 0x%lx\n", istart,
904 istart + isize - 1);
906 uvm_page_physload(atop(istart),
907 atop(istart + isize), atop(istart),
908 atop(istart + isize), VM_FREELIST_ISADMA);
914 if (start < istart) {
917 start, istart - 1)
    [all...]
  /src/usr.sbin/sysinst/
label.c 112 daddr_t istart, iend, jstart, jend; local in function:checklabel
130 istart = info.start;
131 iend = istart + info.size;
148 if ((istart <= jstart && jstart < iend) ||
149 (jstart <= istart && istart < jend)) {
152 istart / sizemult, iend / sizemult,
  /src/sys/external/bsd/ipf/netinet/
fil.c 8724 /* iend (newest) to istart (oldest) in chunks of "interval". If nothing is */
8726 /* we start again with a new value for "iend" and "istart". This is */
8734 u_long interval, istart, iend; local in function:ipf_queueflush
8763 istart = IPF_TTLVAL(86400 * 4);
8766 istart = IPF_TTLVAL(43200);
8769 istart = IPF_TTLVAL(1800);
8774 if (istart > softc->ipf_ticks) {
8776 istart = interval;
8778 istart = (softc->ipf_ticks / interval) * interval;
8786 try = softc->ipf_ticks - istart;
    [all...]

Completed in 21 milliseconds