Searched refs:offset (Results 1 - 25 of 3197) sorted by path

1234567891011>>

/freebsd-11-stable/bin/dd/
H A Dargs.c281 out.offset = get_off_t(arg);
288 in.offset = get_off_t(arg);
H A Dposition.c61 n = io->offset;
64 _Static_assert(sizeof(io->offset) == sizeof(int64_t), "64-bit off_t");
67 * If the lseek offset will be negative, verify that this is a special
71 * Bail out if the calculation of a file offset would overflow.
107 if (in.offset < 0)
108 errx(1, "%s: illegal offset", "iseek/skip");
115 for (bcnt = in.dbsz, cnt = in.offset, warned = 0; cnt;) {
177 if (out.offset < 0)
178 errx(1, "%s: illegal offset", "oseek/seek");
183 t_op.mt_count = out.offset;
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/lockstat/
H A Dsym.c246 addr_to_sym(uintptr_t addr, uintptr_t *offset, size_t *sizep) argument
262 *offset = addr - sep->addr;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb.c147 "\t\t<poolname> <vdev>:<offset>:<size>[:<flags>]\n"
303 dump_histogram(const uint64_t *histo, int size, int offset) argument
324 i + offset, (u_longlong_t)histo[i],
797 for (uint64_t offset = 0; offset < space_map_length(sm);
798 offset += sizeof (word)) {
800 VERIFY0(dmu_read(os, space_map_object(sm), offset,
805 (u_longlong_t)(offset / sizeof (word)),
828 offset += sizeof (extra_word);
829 VERIFY0(dmu_read(os, space_map_object(sm), offset,
3006 claim_segment_impl_cb(uint64_t inner_offset, vdev_t *vd, uint64_t offset, uint64_t size, void *arg) argument
3022 claim_segment_cb(void *arg, uint64_t offset, uint64_t size) argument
3460 uint64_t offset = DVA_MAPPING_GET_SRC_OFFSET(vimep); local
4738 uint64_t offset = 0, size = 0, psize = 0, lsize = 0, blkptr_offset = 0; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_create.c258 * boundary past the CTF header itself (at relative offset zero).
307 * Fill in the string table offset and size, compute the size of the
1106 * Round up the offset of the end of the last member to the
1201 membcmp(const char *name, ctf_id_t type, ulong_t offset, void *arg) argument
1207 name, &ctm) == CTF_ERR || ctm.ctm_offset != offset);
1211 membadd(const char *name, ctf_id_t type, ulong_t offset, void *arg) argument
1231 dmd->dmd_offset = offset;
H A Dctf_types.c55 * type, and offset of each member to the specified callback function.
705 * Return the type and offset for a given member of a STRUCT or UNION.
828 const char *name, ulong_t offset, int depth)
842 if ((rc = func(name, otype, offset, depth, arg)) != 0)
859 offset + mp->ctm_offset, depth + 1)) != 0)
870 offset + (ulong_t)CTF_LMEM_OFFSET(lmp),
881 * type, and offset of each member to the specified callback function.
827 ctf_type_rvisit(ctf_file_t *fp, ctf_id_t type, ctf_visit_f *func, void *arg, const char *name, ulong_t offset, int depth) argument
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_as.c146 * xltab index reflects the offset 'xi' of the assigned dtdo_xlmtab[] location.
190 dt_as_undef(const dt_ident_t *idp, uint_t offset) argument
204 xyerror(D_ASRELO, "relocation remains against %s symbol %s%s%s (offset "
205 "0x%x)\n", kind, dts->dts_object, mark, dts->dts_name, offset);
H A Ddt_consume.c1366 * determining <symbol, offset> from <pid, address>. For now, if
1433 * and it is printed out beneath the frame and offset
1681 dt_printf(cbdatap->dtp, cbdatap->fp, "CTF_K_INTEGER: format %x offset %u bits %u\n",cte.cte_format,cte.cte_offset,cte.cte_bits);
1699 dt_printf(cbdatap->dtp, cbdatap->fp, "CTF_K_INTEGER: format %x offset %u bits %u\n",cte.cte_format,cte.cte_offset,cte.cte_bits);
1704 dt_printf(cbdatap->dtp, cbdatap->fp, "CTF_K_FLOAT: format %x offset %u bits %u\n",cte.cte_format,cte.cte_offset,cte.cte_bits);
1801 * length and round it up to become the offset to the start
1806 int offset = roundup(strlen(strp) + 1, sizeof(uintptr_t)); local
1827 addr += offset;
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libuutil/common/
H A Duu_avl.c143 uintptr_t offset = (uintptr_t)np - (uintptr_t)base; local
144 if (offset + sizeof (*np) > pp->uap_objsize) {
146 "offset %ld doesn't fit in object (size %ld)\n",
148 (long)offset, (long)pp->uap_objsize);
150 if (offset != pp->uap_nodeoffset) {
152 "offset %ld doesn't match pool's offset (%ld)\n",
154 (long)offset, (long)pp->uap_objsize);
H A Duu_list.c138 uintptr_t offset = (uintptr_t)np - (uintptr_t)base; local
139 if (offset + sizeof (*np) > pp->ulp_objsize) {
141 "offset %ld doesn't fit in object (size %ld)\n",
143 (long)offset, (long)pp->ulp_objsize);
145 if (offset != pp->ulp_nodeoffset) {
147 "offset %ld doesn't match pool's offset (%ld)\n",
149 (long)offset, (long)pp->ulp_objsize);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c538 vn_rdwr(int uio, vnode_t *vp, void *addr, ssize_t len, offset_t offset, argument
544 iolen = pread64(vp->v_fd, addr, len, offset);
547 pwrite64(vp->v_dump_fd, addr, iolen, offset);
558 iolen = pwrite64(vp->v_fd, addr, split, offset);
560 len - split, offset + split);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h532 offset_t offset, int x1, int x2, rlim64_t x3, void *x4, ssize_t *residp);
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c291 size_t offset; local
325 offset = strtab_insert(&b->ctb_strtab, tp->t_name);
326 ctt.ctt_name = CTF_TYPE_NAME(CTF_STRTAB_0, offset);
399 offset = strtab_insert(&b->ctb_strtab,
403 offset);
415 offset = strtab_insert(&b->ctb_strtab,
419 offset);
452 offset = strtab_insert(&b->ctb_strtab, ep->el_name);
453 cte.cte_name = CTF_TYPE_NAME(CTF_STRTAB_0, offset);
H A Dst_parse.c797 expected("intrinsic/b", "; (post-offset)", cp - 1);
851 int offset, size; local
855 cp = number(cp, &offset);
861 mlp->ml_offset = offset;
H A Dstabs.c275 int offset = 1; local
284 offset = 2;
285 fstr = concat(fstr, str, offset);
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/dump/
H A Ddump.c113 size_t offset = CTF_NAME_OFFSET(name); local
114 const char *s = cd->cd_ctfdata + hp->cth_stroff + offset;
119 if (offset >= hp->cth_strlen)
122 if (hp->cth_stroff + offset >= cd->cd_ctflen)
448 (void) printf("INTEGER %s encoding=%s offset=%u"
462 (void) printf("FLOAT %s encoding=%s offset=%u "
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/fbtprovider/
H A DMakefile15 tst.offset.d \
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex412 % offset so that the space between them is truly \outerhsize or \outervsize
9697 % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip;
/freebsd-11-stable/contrib/amd/fsinfo/
H A Dnull_lex.c1108 int offset = (yy_c_buf_p) - (yytext_ptr); local
1144 (yy_c_buf_p) = (yytext_ptr) + offset;
/freebsd-11-stable/contrib/amd/include/
H A Dam_xdr_func.h240 am_offset3 offset; member in struct:am_WRITE3args
302 am_offset3 offset; member in struct:am_COMMIT3args
516 am_offset3 offset; member in struct:am_READ3args
/freebsd-11-stable/contrib/amd/libamu/
H A Dxdr_func.c1301 if (!xdr_am_offset3(xdrs, &objp->offset))
1439 if (!xdr_am_offset3(xdrs, &objp->offset))
1928 if (!xdr_am_offset3(xdrs, &objp->offset))
/freebsd-11-stable/contrib/apr-util/dbd/
H A Dapr_dbd_mysql.c110 apr_off_t offset, apr_size_t len,
113 apr_off_t offset,
147 apr_size_t blength = e->length; /* bytes remaining in file past offset */
153 /* fetch from offset if not at the beginning */
196 apr_off_t offset, apr_size_t len,
206 b = apr_bucket_shared_make(b, f, offset, len);
213 apr_off_t offset,
222 return apr_bucket_lob_make(b, row, col, offset, len, p);
194 apr_bucket_lob_make(apr_bucket *b, const apr_dbd_row_t *row, int col, apr_off_t offset, apr_size_t len, apr_pool_t *p) argument
212 apr_bucket_lob_create(const apr_dbd_row_t *row, int col, apr_off_t offset, apr_size_t len, apr_pool_t *p, apr_bucket_alloc_t *list) argument
H A Dapr_dbd_oracle.c216 apr_off_t offset, apr_size_t len,
219 apr_off_t offset,
251 apr_size_t blength = e->length; /* bytes remaining in file past offset */
263 /* fetch from offset if not at the beginning */
310 apr_off_t offset, apr_size_t len,
320 b = apr_bucket_shared_make(b, f, offset, len);
327 apr_off_t offset,
336 return apr_bucket_lob_make(b, row, col, offset, len, p);
308 apr_bucket_lob_make(apr_bucket *b, const apr_dbd_row_t *row, int col, apr_off_t offset, apr_size_t len, apr_pool_t *p) argument
326 apr_bucket_lob_create(const apr_dbd_row_t *row, int col, apr_off_t offset, apr_size_t len, apr_pool_t *p, apr_bucket_alloc_t *list) argument
/freebsd-11-stable/contrib/apr-util/misc/
H A Dapr_date.c602 * We only currently support: [+-]ZZZZ where Z is the offset in
611 int offset; local
614 offset = atoi(gmtstr+1);
615 ds.tm_gmtoff -= (offset / 100) * 60 * 60;
616 ds.tm_gmtoff -= (offset % 100) * 60;
619 offset = atoi(gmtstr+1);
620 ds.tm_gmtoff += (offset / 100) * 60 * 60;
621 ds.tm_gmtoff += (offset % 100) * 60;
/freebsd-11-stable/contrib/apr-util/test/
H A Dtestdate.c146 apr_time_t offset = 0; local
151 secstodate = year2secs[year - 1970] + offset;
168 secstodate = guess + offset;

Completed in 314 milliseconds

1234567891011>>