Searched refs:limit_p (Results 1 – 1 of 1) sorted by relevance
/Zephyr-Core-3.7.0/include/zephyr/arch/x86/ia32/ |
D | segmentation.h | 243 #define _LIMIT_AND_BASE(base_p, limit_p, granularity_p) \ argument 247 .limit_low = ((limit_p) & 0xFFFF), \ 248 .limit_hi = (((limit_p) >> 16) & 0xF), \ 267 #define DT_CODE_SEG_ENTRY(base_p, limit_p, granularity_p, dpl_p, readable_p, \ argument 271 _LIMIT_AND_BASE(base_p, limit_p, granularity_p), \ 279 #define DT_DATA_SEG_ENTRY(base_p, limit_p, granularity_p, dpl_p, writable_p, \ argument 283 _LIMIT_AND_BASE(base_p, limit_p, granularity_p), \ 291 #define DT_LDT_ENTRY(base_p, limit_p, granularity_p, dpl_p) \ argument 294 _LIMIT_AND_BASE(base_p, limit_p, granularity_p), \ 298 #define DT_TSS_ENTRY(base_p, limit_p, granularity_p, dpl_p) \ argument [all …]
|