Searched refs:off (Results 76 - 100 of 1205) sorted by last modified time

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c588 /* pass off to get_vdev_spec for processing */
1116 /* pass off to get_vdev_spec for bulk processing */
1222 * Hand off to libzfs.
2088 * lifting off to zpool_import_props(), and then mounts the datasets contained
3734 * -R Mount the split-off pool under an alternate root.
3737 * off may be listed, provided that no more than one device is specified
3941 * -t Only take the device off-line temporarily. The offline
4718 * strlen() call used to chop it off from the output.
5990 uint64_t off = 0; local
5998 if ((ret = zpool_get_history(zhp, &nvhis, &off,
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DWriter.cpp2283 static uint64_t computeFileOffset(OutputSection *os, uint64_t off) { argument
2287 return alignTo(off, os->ptLoad->p_align, os->addr);
2293 return off;
2297 return alignTo(off, os->alignment);
2307 static uint64_t setFileOffset(OutputSection *os, uint64_t off) { argument
2308 off = computeFileOffset(os, off);
2309 os->offset = off;
2312 return off;
2313 return off
2317 uint64_t off = 0; local
2330 uint64_t off = 0; local
[all...]
H A DInputSection.cpp340 std::string InputSectionBase::getObjMsg(uint64_t off) { argument
350 if (d->section == this && d->value <= off && off < d->value + d->size)
354 return (filename + ":(" + name + "+0x" + utohexstr(off) + ")" + archive)
1215 for (size_t off = 0, end = data().size(); off != end;) {
1216 size_t size = readEhRecordSize(this, off);
1217 pieces.emplace_back(off, this, size, getReloc(off, size, rels, relI));
1221 off
1245 size_t off = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DChunks.h215 void applyRelX64(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
217 void applyRelX86(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
219 void applyRelARM(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
221 void applyRelARM64(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
670 void applyMOV32T(uint8_t *off, uint32_t v);
671 void applyBranch24T(uint8_t *off, int32_t v);
673 void applyArm64Addr(uint8_t *off, uint64_t s, uint64_t p, int shift);
674 void applyArm64Imm(uint8_t *off, uint64_t imm, uint32_t rangeLimit);
675 void applyArm64Branch26(uint8_t *off, int64_t v);
/freebsd-11-stable/contrib/sendmail/src/
H A Dusersmtp.c756 ** specified by user) around, so we just turn off program access.
2201 /* strip off <angle brackets> (put back on below) */
2848 int off; local
2870 (off = isenhsc(SmtpReplyBuffer + 4, ' ')) > 0)
2871 off += 5;
2873 off = 4;
2874 e->e_statmsg = sm_rpool_strdup_x(e->e_rpool, &SmtpReplyBuffer[off]);
H A Dqueue.c1176 ** reason -- why (signal?), -1 to turn off restart
1501 ** finished spinning off queue runners, may go back to doing something
1541 ** Pick up where we left off (curnum), in case we
1968 ** See if we want to go off and do other useful work.
2180 ** For this WorkQ we want to fork off N children (maxrunners)
2970 ** truncated off. Then the most important items are moved from
3016 ** important items might get truncated off -- not what we want.
6190 *cp = '\0'; /* cut off trailing / */
6200 int off; local
6234 off
[all...]
H A Dparseaddr.c460 ** are silently stripped off; this is intentional. The problem
1274 /* run off the end -- back up again */
2094 int off; local
2096 if ((off = isenhsc(ubuf + 4, ' ')) > 0)
2098 ubuf[off + 4] = '\0';
2099 off += 5;
2103 off = 4;
2107 if (off > 4)
2108 usrerr(fmt, ubuf + off);
2110 usrerrenh(hbuf, fmt, ubuf + off);
[all...]
H A Dmime.c812 *bp = '\0'; /* XXX simply cut off? */
903 /* strip off trailing whitespace */
1175 int off; local
1183 off = mime_fromqp((unsigned char *) buf, &fbufp,
1186 if (off < -1)
1196 if (off >= 0 && buf[off] != '\0')
1198 off = mime_fromqp((unsigned char *) (buf + off),
H A Ddeliver.c1293 ** The standard input is passed off to someone.
1525 "Warning: mailer %s: LMTP flag (F=z) turned off",
1745 ** is a file -- send it off without further ado. Note
2277 /* turn off timeout if fallback available */
2483 /* clear the events to turn off SIGALRMs */
4185 int off = 4; local
4325 if ((off = isenhsc(statmsg + 4, ' ')) > 0)
4330 "%.*s", off, statmsg + 4);
4333 off += 5;
4337 off
[all...]
H A Darpadate.c61 register int off; local
128 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
132 off -= 24 * 60;
134 off += 24 * 60;
136 off -= 24 * 60;
138 off += 24 * 60;
141 if (off == 0)
172 tz = timezone(off, lt->tm_isdst);
175 if (off < 0)
177 off
[all...]
/freebsd-11-stable/contrib/sendmail/mail.local/
H A Dmail.local.c990 int mbfd = -1, nr = 0, nw, off; local
1121 if ((off = lockmbox(p)) != 0)
1123 if (off == EX_TEMPFAIL || e_to_sys(off) == EX_TEMPFAIL)
1132 p, off, errno > 0 ? sm_errstring(errno) : "");
1331 for (off = 0; off < nr; off += nw)
1333 if ((nw = write(mbfd, buf + off, nr - off)) <
[all...]
/freebsd-11-stable/contrib/sendmail/libsm/
H A DMakefile.m439 dnl SM_CONF_STRL cannot be turned off
/freebsd-11-stable/contrib/sendmail/libmilter/
H A Dsmfi.c445 int len, off, r; local
457 off = 0;
463 (char *) (bodyp + off), len)) != MI_SUCCESS)
465 off += len;
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dexpn.pl1352 and Jon Broome has dropped off the face of the earth!
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_main.c449 /* Turn off PHV_EN flag in case phv_check_en is set.
990 hca_param.rss_ip_frags ? "on" : "off");
2813 int off = 0; local
2820 off += mlx4_get_eqs_per_port(dev, i);
2822 requested_cpu = eqn - off - !!(eqn > MLX4_EQ_ASYNC);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_ioctl.c580 * "off", verify that the specified new label is valid for the
4576 offset_t off; local
4671 off = fp->f_offset;
4672 error = dmu_recv_stream(&drc, fp, &off, zc->zc_cleanup_fd,
4737 zc->zc_cookie = off - fp->f_offset;
4738 if (off >= 0 && off <= MAXOFFSET_T)
4739 fp->f_offset = off;
4823 offset_t off; local
4895 off
5527 offset_t off; local
5929 offset_t off; local
[all...]
/freebsd-11-stable/sys/kern/
H A Dvfs_vnops.c2162 vn_bmap_seekhole(struct vnode *vp, u_long cmd, off_t *off, struct ucred *cred) argument
2182 noff = *off;
2198 if (noff < *off)
2199 noff = *off;
2211 *off = noff;
/freebsd-11-stable/sys/netinet6/
H A Dip6_output.c249 int off; local
259 for (off = hlen; off < tlen; off += mtu) {
290 ip6f->ip6f_offlg = htons((u_short)((off - hlen) & ~7));
291 if (off + mtu >= tlen)
292 mtu = tlen - off;
297 if ((m_frgpart = m_copy(m0, off, mtu)) == NULL) {
2256 /* turn off any old options. */
2274 * Only turning off an
[all...]
/freebsd-11-stable/sys/amd64/amd64/
H A Dpmap.c1017 * [We can't call it easily with mapping off since the kernel is not
5759 * off and size may not cover an area beyond a single hardware page.
5762 pmap_zero_page_area(vm_page_t m, int off, int size)
5766 if (off == 0 && size == PAGE_SIZE)
5769 bzero((char *)va + off, size);
5761 pmap_zero_page_area(vm_page_t m, int off, int size) argument
/freebsd-11-stable/contrib/file/src/
H A Dsoftmagic.c305 switch (moffset(ms, m, &bb, &ms->c.li[cont_level].off)) {
342 ms->c.li[cont_level - 1].off;
435 &ms->c.li[cont_level].off)) {
1471 do_ops(struct magic *m, intmax_t lhs, intmax_t off) argument
1474 if (off) {
1477 offset = lhs & off;
1480 offset = lhs | off;
1483 offset = lhs ^ off;
1486 offset = lhs + off;
1489 offset = lhs - off;
1607 intmax_t off = m->in_offset; local
[all...]
H A Dreadelf.c349 dophn_core(struct magic_set *ms, int clazz, int swap, int fd, off_t off, argument
357 off_t ph_off = off;
378 if (pread(fd, xph_addr, xph_sizeof, off) <
383 off += size;
932 off_t off, int num, off_t fsize, uint64_t virtaddr)
942 if (pread(fd, xph_addr, xph_sizeof, off) <
947 off += xph_sizeof;
1035 for (size_t off = 0; off + elsize <= descsz; off
931 get_offset_from_virtaddr(struct magic_set *ms, int swap, int clazz, int fd, off_t off, int num, off_t fsize, uint64_t virtaddr) argument
1328 doshn(struct magic_set *ms, int clazz, int swap, int fd, off_t off, int num, size_t size, off_t fsize, int mach, int strtab, int *flags, uint16_t *notecount) argument
1616 dophn_exec(struct magic_set *ms, int clazz, int swap, int fd, off_t off, int num, size_t size, off_t fsize, int sh_num, int *flags, uint16_t *notecount) argument
[all...]
H A Dfile.h405 int32_t off; member in struct:level_info
H A Dder.c289 ms->c.li[i].off);
294 ms->c.li[m->cont_level - 1].off = CAST(int, offs + tlen);
296 ms->c.li[m->cont_level - 1].off));
H A Dapprentice.c2331 size_t llen, off_t off, size_t len, const char *name, const char *extra,
2337 char *buf = CAST(char *, CAST(void *, m)) + off;
2330 parse_extra(struct magic_set *ms, struct magic_entry *me, const char *line, size_t llen, off_t off, size_t len, const char *name, const char *extra, int nt) argument
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_parse.c448 u_long rate; /* poll rate - once every "rate" seconds - 0 off */
2836 * Tell the I/O module to turn us off. We're history.
3551 l_fp off; local
3557 off = parse->timedata.parse_stime.fp;
3558 L_SUB(&off, &parse->timedata.parse_ptime.fp); /* true offset */
3560 snprintf(tt, 80, "refclock_ppsskew=%s", lfptoms(&off, 6));
3752 l_fp off, rectime, reftime; local
3755 /* silence warning: 'off.Ul_i.Xl_i' may be used uninitialized in this function */
3756 ZERO(off);
3994 off
[all...]

Completed in 296 milliseconds

1234567891011>>