Home
last modified time | relevance | path

Searched refs:eflag (Results 1 – 6 of 6) sorted by relevance

/linux-5.19.10/arch/sparc/math-emu/
Dmath_32.c217 static inline int record_exception(unsigned long *pfsr, int eflag) in record_exception() argument
223 would_trap = (fsr & ((long)eflag << FSR_TEM_SHIFT)) != 0UL; in record_exception()
227 eflag &= ((fsr & FSR_TEM_MASK) >> FSR_TEM_SHIFT); in record_exception()
228 if ((eflag & (eflag - 1)) != 0) { in record_exception()
229 if (eflag & FP_EX_INVALID) in record_exception()
230 eflag = FP_EX_INVALID; in record_exception()
231 else if (eflag & FP_EX_OVERFLOW) in record_exception()
232 eflag = FP_EX_OVERFLOW; in record_exception()
233 else if (eflag & FP_EX_UNDERFLOW) in record_exception()
234 eflag = FP_EX_UNDERFLOW; in record_exception()
[all …]
Dmath_64.c101 static inline int record_exception(struct pt_regs *regs, int eflag) in record_exception() argument
107 would_trap = (fsr & ((long)eflag << FSR_TEM_SHIFT)) != 0UL; in record_exception()
111 eflag &= ((fsr & FSR_TEM_MASK) >> FSR_TEM_SHIFT); in record_exception()
112 if((eflag & (eflag - 1)) != 0) { in record_exception()
113 if(eflag & FP_EX_INVALID) in record_exception()
114 eflag = FP_EX_INVALID; in record_exception()
115 else if(eflag & FP_EX_OVERFLOW) in record_exception()
116 eflag = FP_EX_OVERFLOW; in record_exception()
117 else if(eflag & FP_EX_UNDERFLOW) in record_exception()
118 eflag = FP_EX_UNDERFLOW; in record_exception()
[all …]
/linux-5.19.10/arch/powerpc/math-emu/
Dmath.c168 record_exception(struct pt_regs *regs, int eflag) in record_exception() argument
174 if (eflag) { in record_exception()
176 if (eflag & EFLAG_OVERFLOW) in record_exception()
178 if (eflag & EFLAG_UNDERFLOW) in record_exception()
180 if (eflag & EFLAG_DIVZERO) in record_exception()
182 if (eflag & EFLAG_INEXACT) in record_exception()
184 if (eflag & EFLAG_INVALID) in record_exception()
186 if (eflag & EFLAG_VXSNAN) in record_exception()
188 if (eflag & EFLAG_VXISI) in record_exception()
190 if (eflag & EFLAG_VXIDI) in record_exception()
[all …]
/linux-5.19.10/fs/nfsd/
Dnfs4acl.c240 int eflag = ((flags & NFS4_ACL_TYPE_DEFAULT) ? in _posix_to_nfsv4_one() local
258 ace->flag = eflag; in _posix_to_nfsv4_one()
266 ace->flag = eflag; in _posix_to_nfsv4_one()
278 ace->flag = eflag; in _posix_to_nfsv4_one()
286 ace->flag = eflag; in _posix_to_nfsv4_one()
304 ace->flag = eflag; in _posix_to_nfsv4_one()
313 ace->flag = eflag | NFS4_ACE_IDENTIFIER_GROUP; in _posix_to_nfsv4_one()
330 ace->flag = eflag; in _posix_to_nfsv4_one()
343 ace->flag = eflag | NFS4_ACE_IDENTIFIER_GROUP; in _posix_to_nfsv4_one()
356 ace->flag = eflag; in _posix_to_nfsv4_one()
/linux-5.19.10/drivers/net/can/spi/
Dhi311x.c639 u8 intf, eflag, statf; in hi3110_can_ist() local
647 eflag = hi3110_read(spi, HI3110_READ_ERR); in hi3110_can_ist()
649 if (eflag & HI3110_ERR_BUSOFF) in hi3110_can_ist()
651 else if (eflag & HI3110_ERR_PASSIVE_MASK) in hi3110_can_ist()
695 if (eflag & HI3110_ERR_PROTOCOL_MASK) { in hi3110_can_ist()
703 if (eflag & HI3110_ERR_BITERR) in hi3110_can_ist()
705 else if (eflag & HI3110_ERR_FRMERR) in hi3110_can_ist()
707 else if (eflag & HI3110_ERR_STUFERR) in hi3110_can_ist()
709 else if (eflag & HI3110_ERR_CRCERR) in hi3110_can_ist()
711 else if (eflag & HI3110_ERR_ACKERR) in hi3110_can_ist()
Dmcp251x.c1066 u8 intf, eflag; in mcp251x_can_ist() local
1070 mcp251x_read_2regs(spi, CANINTF, &intf, &eflag); in mcp251x_can_ist()
1091 eflag |= eflag1; in mcp251x_can_ist()
1112 if (eflag & (EFLG_RX0OVR | EFLG_RX1OVR)) in mcp251x_can_ist()
1113 mcp251x_write_bits(spi, EFLG, eflag, 0x00); in mcp251x_can_ist()
1116 if (eflag & EFLG_TXBO) { in mcp251x_can_ist()
1119 } else if (eflag & EFLG_TXEP) { in mcp251x_can_ist()
1123 } else if (eflag & EFLG_RXEP) { in mcp251x_can_ist()
1127 } else if (eflag & EFLG_TXWAR) { in mcp251x_can_ist()
1131 } else if (eflag & EFLG_RXWAR) { in mcp251x_can_ist()
[all …]