Lines Matching defs:entry
269 #define MBCS_ENTRY_TRANSITION_SET_OFFSET(entry, offset) (int32_t)(((entry)&0xff000000)|(offset)) argument
270 #define MBCS_ENTRY_TRANSITION_ADD_OFFSET(entry, offset) (int32_t)((entry)+(offset)) argument
273 #define MBCS_ENTRY_SET_FINAL(entry) (int32_t)((entry)|0x80000000) argument
274 #define MBCS_ENTRY_FINAL_SET_ACTION(entry, action) (int32_t)(((entry)&0xff0fffff)|((int32_t)(action… argument
275 #define MBCS_ENTRY_FINAL_SET_VALUE(entry, value) (int32_t)(((entry)&0xfff00000)|(value)) argument
276 #define MBCS_ENTRY_FINAL_SET_ACTION_VALUE(entry, action, value) (int32_t)(((entry)&0xff000000)|((in… argument
278 #define MBCS_ENTRY_SET_STATE(entry, state) (int32_t)(((entry)&0x80ffffff)|((int32_t)(state)<<24L)) argument
280 #define MBCS_ENTRY_STATE(entry) ((((uint32_t)entry)>>24)&0x7f) argument
282 #define MBCS_ENTRY_IS_TRANSITION(entry) ((entry)>=0) argument
283 #define MBCS_ENTRY_IS_FINAL(entry) ((entry)<0) argument
285 #define MBCS_ENTRY_TRANSITION_STATE(entry) (((uint32_t)entry)>>24) argument
286 #define MBCS_ENTRY_TRANSITION_OFFSET(entry) ((entry)&0xffffff) argument
288 #define MBCS_ENTRY_FINAL_STATE(entry) ((((uint32_t)entry)>>24)&0x7f) argument
289 #define MBCS_ENTRY_FINAL_IS_VALID_DIRECT_16(entry) ((entry)<(int32_t)0x80100000) argument
290 #define MBCS_ENTRY_FINAL_ACTION(entry) ((((uint32_t)entry)>>20)&0xf) argument
291 #define MBCS_ENTRY_FINAL_VALUE(entry) ((entry)&0xfffff) argument
292 #define MBCS_ENTRY_FINAL_VALUE_16(entry) (uint16_t)(entry) argument