Searched refs:onb (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/libexec/rtld-elf/
H A Drtld_malloc.c222 u_int onb; local
233 onb = 1 << (i + 3);
234 if (onb < (u_int)pagesz)
235 onb -= sizeof(*op);
237 onb += pagesz - sizeof(*op);
246 if (nbytes <= onb && nbytes > (size_t)i)
250 bcopy(cp, res, (nbytes < onb) ? nbytes : onb);
/freebsd-13-stable/contrib/tcsh/
H A Dtc.alloc.c389 U_int onb; local
416 onb = MEMALIGN(nbytes + MEMALIGN(sizeof(union overhead)) + RSLOP);
419 if (was_alloced && (onb <= (U_int) (1 << (i + 3))) &&
420 (onb > (U_int) (1 << (i + 2)))) {
437 onb = (1 << (i + 3)) - MEMALIGN(sizeof(union overhead)) - RSLOP;
438 (void) memmove(res, cp, onb < nbytes ? onb : nbytes);
/freebsd-13-stable/contrib/lib9p/backend/
H A Dfs.c2836 char onb[MAXPATHLEN], nnb[MAXPATHLEN]; local
2851 error = fs_buildname(olddir, onp, onb, sizeof(onb));
2857 if (fstatat(off->ff_dirfd, onb, &fst, AT_SYMLINK_NOFOLLOW) != 0)
2874 facl = getacl(off, -1, onb);
2890 if (renameat(off->ff_dirfd, onb, nff->ff_dirfd, nnb))

Completed in 115 milliseconds