/src/include/ |
tgmath.h | 62 #define __TG_GFN1(fn, a, ftype, ltype) \ 65 __TG_CHOOSE(__TG_IS_##ltype##_P(a), \ 69 #define __TG_GFN1x(fn, a, b, ftype, ltype) \ 72 __TG_CHOOSE(__TG_IS_##ltype##_P(a), \ 76 #define __TG_GFN2(fn, a, b, ftype, ltype) \ 80 __TG_CHOOSE(__TG_IS_##ltype##_P(a) \ 81 || __TG_IS_##ltype##_P(b), \ 85 #define __TG_GFN2x(fn, a, b, c, ftype, ltype) \ 89 __TG_CHOOSE(__TG_IS_##ltype##_P(a) \ 90 || __TG_IS_##ltype##_P(b), [all...] |
/src/sys/ufs/lfs/ |
ulfs_quota.h | 80 #define DQ_WARN(ltype) (0x10 << ltype) /* has been warned about "type" limit */
|
/src/sys/ufs/ufs/ |
ufs_quota.h | 79 #define DQ_WARN(ltype) (0x10 << ltype) /* has been warned about "type" limit */
|
/src/usr.bin/scmdctl/ |
common.c | 425 common_get_lock_state(struct function_block *fb, int fd, bool debug, int ltype, uint8_t *lstate) 431 switch (ltype) { 459 common_set_lock_state(struct function_block *fb, int fd, bool debug, int ltype, uint8_t lstate) 465 switch (ltype) { 488 if (ltype == SCMD_LOCAL_USER_LOCK || 489 ltype == SCMD_GLOBAL_USER_LOCK)
|
/src/sys/compat/linux/common/ |
linux_socket.c | 241 linux_to_bsd_type(int ltype) 246 type = ltype & LINUX_SOCK_TYPE_MASK; 249 flags = ltype & ~LINUX_SOCK_TYPE_MASK;
|
/src/sys/fs/nfs/server/ |
nfs_nfsdstate.c | 5615 int error = 0, ltype, oldltype; local in function:nfsrv_dolocal 5618 ltype = F_WRLCK; 5620 ltype = F_RDLCK; 5622 ltype = F_UNLCK; 5629 if (ltype == oldltype || (oldltype == F_WRLCK && ltype == F_RDLCK)) 5632 error = nfsvno_advlock(vp, ltype, first, end, p); 5644 } else if (ltype != F_UNLCK) {
|
/src/sys/fs/nfs/client/ |
nfs_clvnops.c | 1041 int error = 0, attrflag, dattrflag, ltype, ncticks; local in function:nfs_lookup 1225 ltype = NFSVOPISLOCKED(dvp); 1231 NFSVOPLOCK(dvp, ltype | LK_RETRY); 1247 NFSVOPLOCK(dvp, ltype | LK_RETRY);
|