Home
last modified time | relevance | path

Searched refs:toff (Results 1 – 15 of 15) sorted by relevance

/dragonfly/sys/dev/misc/syscons/fred/
H A Dfred_saver.c201 static int xoff, yoff, toff; in fred_saver() local
231 clear_string(sc, txpos, typos, toff, message, tlen); in fred_saver()
325 toff = 0; in fred_saver()
330 toff = -txpos; in fred_saver()
337 draw_string(sc, txpos, typos, toff, message, tlen); in fred_saver()
/dragonfly/sys/vfs/smbfs/
H A Dsmbfs_io.c404 size_t size, toff, nextoff, count; in smbfs_getpages()
479 for (i = 0, toff = 0; i < npages; i++, toff = nextoff) { in smbfs_getpages()
481 nextoff = toff + PAGE_SIZE; in smbfs_getpages()
492 int nvalid = rounddown2((size + DEV_BSIZE - 1) - toff, in smbfs_getpages()
/dragonfly/sys/kern/
H A Dvfs_bio.c2492 vm_offset_t toff, tinc, size; in inmem() local
2508 for (toff = 0; toff < vp->v_mount->mnt_stat.f_iosize; toff += tinc) { in inmem()
2516 tinc = PAGE_SIZE - ((toff + loffset) & PAGE_MASK); in inmem()
3103 vm_offset_t toff; in allocbuf() local
3183 toff = bp->b_bcount; in allocbuf()
3186 while ((bp->b_flags & B_CACHE) && toff < size) { in allocbuf()
3189 if (tinc > (size - toff)) in allocbuf()
3190 tinc = size - toff; in allocbuf()
3192 pi = ((bp->b_loffset & PAGE_MASK) + toff) >> in allocbuf()
3198 toff, in allocbuf()
[all …]
/dragonfly/contrib/binutils-2.27/gold/
H A Dgdb-index.h180 Type_unit(off_t off, off_t toff, uint64_t sig) in Type_unit()
181 : tu_offset(off), type_offset(toff), type_signature(sig) in Type_unit()
/dragonfly/contrib/binutils-2.34/gold/
H A Dgdb-index.h180 Type_unit(off_t off, off_t toff, uint64_t sig) in Type_unit()
181 : tu_offset(off), type_offset(toff), type_signature(sig) in Type_unit()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-affine.c865 tree toff; in get_inner_reference_aff() local
869 tree base = get_inner_reference (ref, &bitsize, &bitpos, &toff, &mode, in get_inner_reference_aff()
877 if (toff) in get_inner_reference_aff()
879 tree_to_aff_combination (toff, sizetype, &tmp); in get_inner_reference_aff()
H A Dtree-ssa-sccvn.c2486 HOST_WIDE_INT toff, coff; in set_ssa_val_to() local
2531 == get_addr_base_and_unit_offset (TREE_OPERAND (to, 0), &toff)) in set_ssa_val_to()
2532 && coff == toff)) in set_ssa_val_to()
H A Dtree.c3978 tree toff = TREE_OPERAND (t, 1); in mem_ref_offset() local
3979 return double_int_sext (tree_to_double_int (toff), in mem_ref_offset()
3980 TYPE_PRECISION (TREE_TYPE (toff))); in mem_ref_offset()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-affine.c934 tree toff; in get_inner_reference_aff() local
938 tree base = get_inner_reference (ref, &bitsize, &bitpos, &toff, &mode, in get_inner_reference_aff()
946 if (toff) in get_inner_reference_aff()
948 tree_to_aff_combination (toff, sizetype, &tmp); in get_inner_reference_aff()
H A Dtree-ssa-sccvn.c3321 poly_int64 toff, coff; in set_ssa_val_to() local
3402 == get_addr_base_and_unit_offset (TREE_OPERAND (to, 0), &toff)) in set_ssa_val_to()
3403 && known_eq (coff, toff))) in set_ssa_val_to()
/dragonfly/sys/vfs/devfs/
H A Ddevfs_vnops.c2054 int toff, nextoff, nread; in devfs_spec_getpages() local
2137 for (i = 0, toff = 0; i < pcount; i++, toff = nextoff) { in devfs_spec_getpages()
2138 nextoff = toff + PAGE_SIZE; in devfs_spec_getpages()
2149 } else if (toff < nread) { in devfs_spec_getpages()
2155 vm_page_set_valid(m, 0, nread - toff); in devfs_spec_getpages()
2156 vm_page_clear_dirty_end_nonincl(m, 0, nread - toff); in devfs_spec_getpages()
/dragonfly/sys/vfs/nfs/
H A Dnfs_serv.c2945 u_quad_t off, toff; in nfsrv_readdir() local
2963 toff = fxdr_hyper(tl); in nfsrv_readdir()
2971 toff = fxdr_unsigned(u_quad_t, *tl++); in nfsrv_readdir()
2976 off = toff; in nfsrv_readdir()
3114 ((u_quad_t)(*cookiep)) <= toff)) { in nfsrv_readdir()
3121 toff = off; in nfsrv_readdir()
3254 u_quad_t off, toff; in nfsrv_readdirplus() local
3271 toff = fxdr_hyper(tl); in nfsrv_readdirplus()
3279 off = toff; in nfsrv_readdirplus()
3401 ((u_quad_t)(*cookiep)) <= toff)) { in nfsrv_readdirplus()
[all …]
H A Dnfs_vnops.c3424 off_t toff; in nfs_flush_bp() local
3502 toff = bp->b_bio2.bio_offset + bp->b_dirtyoff; in nfs_flush_bp()
3503 if (info->bvsize == 0 || toff < info->beg_off) in nfs_flush_bp()
3504 info->beg_off = toff; in nfs_flush_bp()
3505 toff += (off_t)(bp->b_dirtyend - bp->b_dirtyoff); in nfs_flush_bp()
3506 if (info->bvsize == 0 || toff > info->end_off) in nfs_flush_bp()
3507 info->end_off = toff; in nfs_flush_bp()
/dragonfly/contrib/binutils-2.27/bfd/
H A Delf64-x86-64.c1751 bfd_vma toff; in elf_x86_64_convert_load_reloc() local
1819 toff = isym->st_value; in elf_x86_64_convert_load_reloc()
1877 toff = h->root.u.def.value; in elf_x86_64_convert_load_reloc()
1912 toff += raddend; in elf_x86_64_convert_load_reloc()
1914 toff = _bfd_merged_section_offset (abfd, &tsec, in elf_x86_64_convert_load_reloc()
1916 toff); in elf_x86_64_convert_load_reloc()
1919 toff += raddend; in elf_x86_64_convert_load_reloc()
1922 toff += raddend; in elf_x86_64_convert_load_reloc()
1927 if ((toff - roff + 0x80000000) > 0xffffffff) in elf_x86_64_convert_load_reloc()
1971 if ((toff + distance + get_elf_backend_data (abfd)->maxpagesize in elf_x86_64_convert_load_reloc()
/dragonfly/share/dict/
H A Dweb2204079 toff