HomeSort by: relevance | last modified time | path
    Searched defs:toff (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/arch/powerpc/stand/mkbootimage/
mkbootimage.c 686 off_t lenpos, kstart, kend, toff, endoff, flength; local
784 toff = bebox_write_header(bebox_fd, elf_img_len, tmp);
792 lseek(bebox_fd, toff + hsize, SEEK_SET);
  /src/sys/fs/nfs/client/
nfs_clbio.c 77 int i, error, nextoff, size, toff, count, npages; local
174 for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
176 nextoff = toff + PAGE_SIZE;
186 } else if (size > toff) {
191 vm_page_set_valid_range(m, 0, size - toff);
nfs_clvnops.c 2648 u_quad_t off, endoff, toff; local
2763 toff = ((u_quad_t)bp->b_blkno) * DEV_BSIZE +
2765 if (toff < off)
2766 off = toff;
2767 toff += (u_quad_t)(bp->b_dirtyend - bp->b_dirtyoff);
2768 if (toff > endoff)
2769 endoff = toff;
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
inline.c 434 static int toff; variable
440 int num = nt->temp + toff;
461 regno(p) += toff;
538 toff = tvaloff - ipp->ip_tmpnum;
540 SDEBUG(("offsets crslab %d lmin %d tvaloff %d toff %d\n",
541 crslab, lmin, tvaloff, toff));
610 p = tempnode(is->retval + toff, DECREF(sp->stype),
  /src/external/bsd/pcc/dist/pcc/cc/cxxcom/
inline.c 358 static int toff; variable
364 int num = nt->temp + toff;
385 regno(p) += toff;
454 toff = tvaloff - IPP(ipf)->ip_tmpnum;
456 SDEBUG(("offsets crslab %d lmin %d tvaloff %d toff %d\n",
457 crslab, lmin, tvaloff, toff));
516 p = tempnode(is->retval + toff, DECREF(sp->stype),
  /src/sys/dev/ic/
bha.c 485 int toff = xm->xm_target & 7, tmask = (1 << toff); local
531 &hwsetup.reply_w.sync_high[toff] :
532 &hwsetup.reply.sync_low[toff];
555 period = hwperiod.reply_w.period[toff];
557 period = hwperiod.reply.period[toff];
  /src/external/gpl3/gcc/dist/gcc/
tree-affine.cc 1012 tree toff; local
1016 tree base = get_inner_reference (ref, &bitsize, &bitpos, &toff, &mode,
1020 /* ADDR = &BASE + TOFF + BITPOS / BITS_PER_UNIT. */
1024 if (toff)
1026 tree_to_aff_combination (toff, sizetype, &tmp);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-affine.cc 1010 tree toff; local
1014 tree base = get_inner_reference (ref, &bitsize, &bitpos, &toff, &mode,
1018 /* ADDR = &BASE + TOFF + BITPOS / BITS_PER_UNIT. */
1022 if (toff)
1024 tree_to_aff_combination (toff, sizetype, &tmp);
  /src/sys/arch/atari/dev/
fd.c 1202 int sec, toff, tsz; local
1208 toff = sec * SECTOR_SIZE;
1215 bp->b_bcount = uimin(bp->b_bcount, tsz - toff);
  /src/sys/arch/amiga/dev/
fd.c 1665 int sec, toff, tsz; local
1672 toff = sec * FDSECSIZE;
1677 bp->b_bcount = uimin(bp->b_bcount, tsz - toff);
  /src/sys/nfs/
nfs_serv.c 2691 u_quad_t frev, off, toff; local
2701 toff = fxdr_hyper(tl);
2709 toff = fxdr_unsigned(u_quad_t, *tl++);
2711 off = toff;
2738 if (!error && toff && verf != at.va_filerev)
2828 toff = off;
2957 u_quad_t frev, off, toff; local
2965 toff = fxdr_hyper(tl);
2971 off = toff;
2999 if (!error && toff && verf != at.va_filerev
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
qp.c 2254 int toff = twig_offset(n, sbit, kbit, fbit); local
2255 if (toff >= 0) {
2261 greatest_leaf(qp, twigs + toff, it);
  /src/sys/fs/nfs/server/
nfs_nfsdport.c 1582 u_int64_t off, toff, verf; local
1602 toff = off;
1618 if (!nd->nd_repstat && toff && verf != at.na_filerev)
1724 (is_ufs == 1 && ((u_quad_t)(*cookiep)) <= toff))) {
1732 toff = off;
1831 u_int64_t off, toff, verf; local
1847 toff = off;
1994 (is_ufs == 1 && ((u_quad_t)(*cookiep)) <= toff) ||
2005 toff = off;
  /src/sys/dev/pci/
if_bge.c 4487 bus_addr_t offset, toff; local
4511 toff = offset + (rx_cons * sizeof(struct bge_rx_bd));
4517 toff, tlen, BUS_DMASYNC_POSTREAD);
4519 toff = offset;
4524 toff, tosync * sizeof(struct bge_rx_bd),
4658 bus_addr_t offset, toff; local
4678 toff = offset + (sc->bge_tx_saved_considx * sizeof(struct bge_tx_bd));
4684 toff, tlen, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
4686 toff = offset;
4691 toff, tosync * sizeof(struct bge_tx_bd)
    [all...]
  /src/sys/netipsec/
key.c 8114 int toff; local
8129 n = m_pulldown(m, off, sizeof(struct sadb_ext), &toff);
8134 ext = (struct sadb_ext *)(mtod(n, char *) + toff);
8192 n = m_pulldown(m, off, extlen, &toff);
8197 ext = (struct sadb_ext *)(mtod(n, char *) + toff);
  /src/external/gpl3/binutils/dist/bfd/
elf64-ia64-vms.c 342 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
487 toff = isym->st_value;
515 toff = dyn_i->plt2_offset;
531 toff = h->root.u.def.value;
535 toff += irel->r_addend;
537 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
611 if (tsec == sec && toff > roff)
616 if (f->tsec == tsec && f->toff == toff)
    [all...]
elfnn-ia64.c 344 bfd_vma toff;
410 bfd_vma symaddr, reladdr, trampoff, toff, roff;
491 toff = isym->st_value;
520 toff = dyn_i->plt2_offset;
536 toff = h->root.u.def.value;
561 toff += irel->r_addend;
563 toff = _bfd_merged_section_offset (abfd, &tsec, toff);
566 toff += irel->r_addend;
569 toff += irel->r_addend
341 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
    [all...]
elf32-ppc.c 6082 bfd_vma toff;
6170 bfd_vma toff, roff;
6220 toff = isym->st_value;
6226 toff = h->root.u.def.value;
6234 toff = bfd_link_relocatable (link_info) ? indx : 0;
6344 toff = ent->glink_offset;
6349 toff = ent->plt.offset;
6360 /* toff is used for the symbol index when the symbol is
6396 toff += irel->r_addend;
6398 toff
6068 bfd_vma toff; member in struct:one_branch_fixup
6156 bfd_vma toff, roff; local
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
elf64-ia64-vms.c 342 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
487 toff = isym->st_value;
515 toff = dyn_i->plt2_offset;
531 toff = h->root.u.def.value;
535 toff += irel->r_addend;
537 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
611 if (tsec == sec && toff > roff)
616 if (f->tsec == tsec && f->toff == toff)
    [all...]
elfnn-ia64.c 344 bfd_vma toff;
410 bfd_vma symaddr, reladdr, trampoff, toff, roff;
491 toff = isym->st_value;
520 toff = dyn_i->plt2_offset;
536 toff = h->root.u.def.value;
561 toff += irel->r_addend;
563 toff = _bfd_merged_section_offset (abfd, &tsec,
565 toff);
568 toff += irel->r_addend;
571 toff += irel->r_addend
341 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
    [all...]
elf32-ppc.c 6095 bfd_vma toff;
6183 bfd_vma toff, roff;
6233 toff = isym->st_value;
6239 toff = h->root.u.def.value;
6247 toff = bfd_link_relocatable (link_info) ? indx : 0;
6357 toff = ent->glink_offset;
6362 toff = ent->plt.offset;
6373 /* toff is used for the symbol index when the symbol is
6409 toff += irel->r_addend;
6411 toff
6081 bfd_vma toff; member in struct:one_branch_fixup
6169 bfd_vma toff, roff; local
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
elf64-ia64-vms.c 342 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
487 toff = isym->st_value;
515 toff = dyn_i->plt2_offset;
531 toff = h->root.u.def.value;
535 toff += irel->r_addend;
537 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
611 if (tsec == sec && toff > roff)
616 if (f->tsec == tsec && f->toff == toff)
    [all...]
elfnn-ia64.c 344 bfd_vma toff;
410 bfd_vma symaddr, reladdr, trampoff, toff, roff;
491 toff = isym->st_value;
520 toff = dyn_i->plt2_offset;
536 toff = h->root.u.def.value;
561 toff += irel->r_addend;
563 toff = _bfd_merged_section_offset (abfd, &tsec,
565 toff);
568 toff += irel->r_addend;
571 toff += irel->r_addend
341 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
    [all...]
  /src/external/gpl3/gdb/dist/bfd/
elf64-ia64-vms.c 342 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
487 toff = isym->st_value;
515 toff = dyn_i->plt2_offset;
531 toff = h->root.u.def.value;
535 toff += irel->r_addend;
537 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
611 if (tsec == sec && toff > roff)
616 if (f->tsec == tsec && f->toff == toff)
    [all...]
elfnn-ia64.c 344 bfd_vma toff;
410 bfd_vma symaddr, reladdr, trampoff, toff, roff;
491 toff = isym->st_value;
520 toff = dyn_i->plt2_offset;
536 toff = h->root.u.def.value;
561 toff += irel->r_addend;
563 toff = _bfd_merged_section_offset (abfd, &tsec,
565 toff);
568 toff += irel->r_addend;
571 toff += irel->r_addend
341 bfd_vma toff; member in struct:one_fixup
407 bfd_vma symaddr, reladdr, trampoff, toff, roff; local
    [all...]

Completed in 121 milliseconds

1 2