Lines Matching +full:fixed +full:- +full:length

10  * option) any later version.  See the COPYING file in the top-level directory.
18 #include "target/s390x/cpu-qom.h"
83 * - some of the embedded structures below the SCCB can appear multiple times
84 * at different locations, so there is no fixed offset
85 * - we work on a private copy of the SCCB, since there are several length
93 uint16_t length; member
99 #define SCCB_DATA_LEN (SCCB_SIZE - sizeof(SCCBHeader))
118 uint8_t _reserved1[15 - 11]; /* 11-14 */
119 uint8_t stsi_parm; /* 15-15 */
120 uint16_t entries_cpu; /* 16-17 */
121 uint16_t offset_cpu; /* 18-19 */
122 uint8_t _reserved2[24 - 20]; /* 20-23 */
123 uint8_t loadparm[8]; /* 24-31 */
124 uint8_t _reserved3[48 - 32]; /* 32-47 */
125 uint64_t facilities; /* 48-55 */
126 uint8_t _reserved0[76 - 56]; /* 56-75 */
128 uint8_t conf_char[99 - 80]; /* 80-98 */
132 uint8_t _reserved6[116 - 112]; /* 112-115 */
133 uint8_t conf_char_ext[120 - 116]; /* 116-119 */
135 uint8_t _reserved5[124 - 122]; /* 122-123 */
137 uint8_t _reserved7[134 - 128]; /* 128-133 */
139 uint8_t _reserved8[144 - 135]; /* 135-143 */
142 * When the Extended-Length SCCB (ELS) feature is enabled the
150 uint16_t nr_configured; /* 8-9 */
151 uint16_t offset_configured; /* 10-11 */
152 uint16_t nr_standby; /* 12-13 */
153 uint16_t offset_standby; /* 14-15 */
154 uint8_t reserved0[24-16]; /* 16-23 */
163 uint8_t _reserved0[16 - 14]; /* 14-15 */
169 uint8_t _reserved0[10 - 8]; /* 8-9 */
171 uint8_t _reserved1[16 - 12]; /* 12-15 */
221 return be16_to_cpu(sccb->h.length) - sizeof(sccb->h); in sccb_data_len()