Lines Matching +full:- +full:16 +full:g
1 /* SPDX-License-Identifier: GPL-2.0 */
20 u16 limit1: 4, avl: 1, l: 1, d: 1, g: 1, base2: 8; member
26 .limit1 = ((limit) >> 16) & 0x0F, \
28 .base1 = ((base) >> 16) & 0xFF, \
37 .g = (flags >> 15) & 0x01, \
59 u16 limit1 : 4, zero0 : 3, g : 1, base2 : 8; member
97 static inline unsigned long gate_offset(const gate_desc *g) in gate_offset() argument
100 return g->offset_low | ((unsigned long)g->offset_middle << 16) | in gate_offset()
101 ((unsigned long) g->offset_high << 32); in gate_offset()
103 return g->offset_low | ((unsigned long)g->offset_middle << 16); in gate_offset()
107 static inline unsigned long gate_segment(const gate_desc *g) in gate_segment() argument
109 return g->segment; in gate_segment()