Searched refs:noff (Results 1 - 9 of 9) sorted by relevance

/freebsd-9.3-release/contrib/file/src/
H A Dreadelf.c487 size_t noff, size_t doff, int *flags)
489 if (namesz == 4 && strcmp((char *)&nbuf[noff], "GNU") == 0 &&
509 size_t noff, size_t doff, int *flags)
511 if (namesz == 5 && strcmp((char *)&nbuf[noff], "SuSE") == 0 &&
518 if (namesz == 4 && strcmp((char *)&nbuf[noff], "GNU") == 0 &&
557 if (namesz == 7 && strcmp((char *)&nbuf[noff], "NetBSD") == 0) {
565 if (namesz == 8 && strcmp((char *)&nbuf[noff], "FreeBSD") == 0) {
573 if (namesz == 8 && strcmp((char *)&nbuf[noff], "OpenBSD") == 0 &&
582 if (namesz == 10 && strcmp((char *)&nbuf[noff], "DragonFly") == 0 &&
601 size_t noff, size_
485 do_bid_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap __attribute__((__unused__)), uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags) argument
507 do_os_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags) argument
599 do_pax_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags) argument
637 do_core_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags, size_t size, int clazz) argument
821 size_t noff, doff; local
998 off_t noff, coff, name_off; local
[all...]
/freebsd-9.3-release/contrib/ntp/scripts/monitoring/
H A Dntploopwatch1347 local($noff);
1348 $noff = $loffset[$[] - ($cnt - @loffset + 1) * $RecordSize;
1349 $noff = 0 if $noff < 0;
1351 return (@fpos[$[,$[+1], ($noff == $fpos[$[+2]) ? $loffset[$[] : $noff);
1369 local($noff,$key);
1372 $noff = $fpos[$[+2] - $RecordSize * ($cnt - @loffset + 1);
1373 $noff = 0 if $noff <
[all...]
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_msfees.c1247 register int noff; local
1284 noff = samples;
1286 while ((noff - i) > samplereduce) {
1293 tmp = coffs[(noff + i)/2];
1296 L_SUB(&tmp, &coffs[noff-1]);
1297 if (L_ISNEG(&tmp)) noff--; else i++;
1301 if (ees->dump_vals) dump_buf(coffs, i, noff, "Reduced to:");
1309 for (j = i; j < noff; j++)
1322 tmp = coffs[noff-1];
1339 noff
[all...]
/freebsd-9.3-release/sys/kern/
H A Dvfs_vnops.c1946 off_t noff; local
1961 noff = *off;
1962 if (noff >= va.va_size) {
1967 for (bn = noff / bsize; noff < va.va_size; bn++, noff += bsize) {
1975 noff = bn * bsize;
1976 if (noff < *off)
1977 noff = *off;
1981 if (noff > v
[all...]
H A Dvfs_bio.c2880 vm_ooffset_t foff, noff, eoff; local
2895 noff = (foff + PAGE_SIZE) & ~(off_t)PAGE_MASK;
2896 eoff = noff;
2902 foff = noff;
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dresres.c381 rc_uint_type noff; local
384 noff = res_to_bin ((windres_bfd *) NULL, off, res);
385 datasize = noff - off;
/freebsd-9.3-release/sys/netinet6/
H A Dicmp6.c416 int code, sum, noff; local
607 noff = sizeof(struct ip6_hdr);
609 n->m_len = noff + sizeof(struct icmp6_hdr);
616 n->m_pkthdr.len = n0len + (noff - off);
622 noff = off;
629 icmp6_reflect(n, noff);
682 noff = sizeof(struct ip6_hdr);
745 noff = sizeof(struct ip6_hdr);
754 icmp6_reflect(n, noff);
/freebsd-9.3-release/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_rfcomm.c3520 int mlen, noff, len; local
3533 noff = 0;
3536 len = min(mlen - m->m_len, n->m_len - noff);
3540 bcopy(mtod(n, caddr_t)+noff, mtod(m, caddr_t)+m->m_len, len);
3542 noff += len;
3557 if (noff == n->m_len) {
3558 noff = 0;
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_vnops.c250 uint64_t noff = (uint64_t)*off; /* new offset */ local
256 if (noff >= file_sz) {
265 error = dmu_offset_next(zp->z_zfsvfs->z_os, zp->z_id, hole, &noff);
268 if ((error == ESRCH) || (noff > file_sz)) {
279 if (noff < *off)
281 *off = noff;

Completed in 137 milliseconds