Searched refs:rsize (Results 1 - 7 of 7) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dmcache.c875 size_t rsize = P2ROUNDUP(cp->mc_bufsize, sizeof (u_int64_t)); local
918 VERIFY(((intptr_t)base + rsize) <=
920 mcache_set_pattern(MCACHE_FREE_PATTERN, base, rsize);
952 size_t rsize = P2ROUNDUP(cp->mc_bufsize, sizeof (u_int64_t)); local
977 VERIFY(((intptr_t)base + rsize) <=
979 mcache_audit_free_verify(NULL, base, offset, rsize);
1001 size_t rsize = P2ROUNDUP(cp->mc_bufsize, sizeof (u_int64_t)); local
1022 VERIFY(((intptr_t)base + rsize) <=
1026 mcache_set_pattern(MCACHE_FREE_PATTERN, base, rsize);
1028 mcache_audit_free_verify_set(NULL, base, offset, rsize);
[all...]
/darwin-on-arm/xnu/libsyscall/mach/
H A Dmach_msg.c64 #define MACH_MSG_TRAP(msg, opt, ssize, rsize, rname, to, not) \
65 mach_msg_trap((msg), (opt), (ssize), (rsize), (rname), (to), (not))
/darwin-on-arm/xnu/bsd/miscfs/specfs/
H A Dspec_vnops.c210 int rsize; local
213 rsize = (*size)(dev);
214 if (rsize <= 0) /* did size fail? */
217 vp->v_specsize = rsize;
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_attrlist.c1808 size_t rsize = 0; local
1816 if ((error = vn_getxattr(vp, XATTR_RESOURCEFORK_NAME, NULL, &rsize, XATTR_NOSECURITY, ctx)) != 0) {
1818 rsize = 0;
1824 rlength = rsize;
1831 ralloc = roundup(rsize, blksize);
H A Dkpi_vfs.c2240 size_t xsize, rsize; local
2283 rsize = xsize;
2287 &rsize,
2304 if (rsize < KAUTH_FILESEC_SIZE(0)) {
2305 KAUTH_DEBUG("ACL - DATA TOO SMALL (%d)", rsize);
2323 if (KAUTH_FILESEC_SIZE(host_acl_entrycount) > rsize) {
2324 KAUTH_DEBUG("ACL - BUFFER OVERFLOW (%d entries too big for %d)", host_acl_entrycount, rsize);
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs.h234 int rsize; /* read size in bytes */ member in struct:nfs_args
278 int rsize; /* read size in bytes */ member in struct:user_nfs_args
H A Dnfs_vfsops.c1507 args.rsize = tempargs.rsize;
1649 if ((args.flags & NFSMNT_RSIZE) && (args.rsize > 0))
1705 xb_add_32(error, &xb, args.rsize);

Completed in 104 milliseconds