Searched refs:base_p (Results 1 – 1 of 1) sorted by relevance
/Zephyr-Core-3.5.0/include/zephyr/arch/x86/ia32/ |
D | segmentation.h | 243 #define _LIMIT_AND_BASE(base_p, limit_p, granularity_p) \ argument 244 .base_low = (((uint32_t)base_p) & 0xFFFF), \ 245 .base_mid = (((base_p) >> 16) & 0xFF), \ 246 .base_hi = (((base_p) >> 24) & 0xFF), \ 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), \ [all …]
|