Home
last modified time | relevance | path

Searched refs:NC_NLEN_MASK (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/sys/sys/
Dnamei.h217 #define NC_NLEN_MASK ((1 << NC_NLEN_BITS) - 1) macro
218 #define NC_NLEN(ncp) ((ncp)->nc_key & NC_NLEN_MASK)
Dnamei.src209 #define NC_NLEN_MASK ((1 << NC_NLEN_BITS) - 1)
210 #define NC_NLEN(ncp) ((ncp)->nc_key & NC_NLEN_MASK)
/netbsd/src/sys/kern/
Dvfs_cache.c225 CTASSERT(NC_NLEN_MASK >= MAXPATHLEN);
287 int cache_maxlen __read_mostly = NC_NLEN_MASK; /* max name length to cache */
367 KASSERT((nlen & ~NC_NLEN_MASK) == 0); in cache_key()