Searched refs:onb (Results 1 – 3 of 3) sorted by relevance
| /freebsd/libexec/rtld-elf/ |
| H A D | rtld_malloc.c | 253 u_int onb; in __crt_realloc() local 264 onb = 1 << (i + 3); in __crt_realloc() 265 if (onb < (u_int)pagesz) in __crt_realloc() 266 onb -= sizeof(*op); in __crt_realloc() 268 onb += pagesz - sizeof(*op); in __crt_realloc() 277 if (nbytes <= onb && nbytes > (size_t)i) in __crt_realloc() 281 bcopy(cp, res, (nbytes < onb) ? nbytes : onb); in __crt_realloc()
|
| /freebsd/contrib/tcsh/ |
| H A D | tc.alloc.c | 389 U_int onb; in realloc() local 416 onb = MEMALIGN(nbytes + MEMALIGN(sizeof(union overhead)) + RSLOP); in realloc() 419 if (was_alloced && (onb <= (U_int) (1 << (i + 3))) && in realloc() 420 (onb > (U_int) (1 << (i + 2)))) { in realloc() 437 onb = (1 << (i + 3)) - MEMALIGN(sizeof(union overhead)) - RSLOP; in realloc() 438 (void) memmove(res, cp, onb < nbytes ? onb : nbytes); in realloc()
|
| /freebsd/contrib/lib9p/backend/ |
| H A D | fs.c | 2836 char onb[MAXPATHLEN], nnb[MAXPATHLEN]; in fs_renameat() local 2851 error = fs_buildname(olddir, onp, onb, sizeof(onb)); in fs_renameat() 2857 if (fstatat(off->ff_dirfd, onb, &fst, AT_SYMLINK_NOFOLLOW) != 0) in fs_renameat() 2874 facl = getacl(off, -1, onb); in fs_renameat() 2890 if (renameat(off->ff_dirfd, onb, nff->ff_dirfd, nnb)) in fs_renameat()
|