Lines Matching refs:_num

275 #define vmstate_offset_array(_state, _field, _type, _num)            \  argument
277 type_check_array(_type, typeof_field(_state, _field), _num))
361 #define VMSTATE_ARRAY(_field, _state, _num, _version, _info, _type) {\ argument
364 .num = (_num), \
368 .offset = vmstate_offset_array(_state, _field, _type, _num), \
391 #define VMSTATE_SUB_ARRAY(_field, _state, _start, _num, _version, _info, _type) { \ argument
394 .num = (_num), \
500 #define VMSTATE_ARRAY_OF_POINTER(_field, _state, _num, _version, _info, _type) {\ argument
503 .num = (_num), \
507 .offset = vmstate_offset_array(_state, _field, _type, _num), \
520 #define VMSTATE_STRUCT_SUB_ARRAY(_field, _state, _start, _num, _version, _vmsd, _type) { \ argument
523 .num = (_num), \
530 #define VMSTATE_STRUCT_ARRAY_TEST(_field, _state, _num, _test, _version, _vmsd, _type) { \ argument
532 .num = (_num), \
538 .offset = vmstate_offset_array(_state, _field, _type, _num),\
567 #define VMSTATE_STRUCT_VARRAY_POINTER_KNOWN(_field, _state, _num, _version, _vmsd, _type) { \ argument
569 .num = (_num), \
871 #define VMSTATE_STRUCT_ARRAY(_field, _state, _num, _version, _vmsd, _type) \ argument
872 VMSTATE_STRUCT_ARRAY_TEST(_field, _state, _num, NULL, _version, \
1043 #define VMSTATE_BOOL_SUB_ARRAY(_f, _s, _start, _num) \ argument
1044 VMSTATE_SUB_ARRAY(_f, _s, _start, _num, 0, vmstate_info_bool, bool)
1055 #define VMSTATE_UINT16_SUB_ARRAY(_f, _s, _start, _num) \ argument
1056 VMSTATE_SUB_ARRAY(_f, _s, _start, _num, 0, vmstate_info_uint16, uint16_t)
1070 #define VMSTATE_UINT8_SUB_ARRAY(_f, _s, _start, _num) \ argument
1071 VMSTATE_SUB_ARRAY(_f, _s, _start, _num, 0, vmstate_info_uint8, uint8_t)
1085 #define VMSTATE_UINT32_SUB_ARRAY(_f, _s, _start, _num) \ argument
1086 VMSTATE_SUB_ARRAY(_f, _s, _start, _num, 0, vmstate_info_uint32, uint32_t)
1097 #define VMSTATE_UINT64_SUB_ARRAY(_f, _s, _start, _num) \ argument
1098 VMSTATE_SUB_ARRAY(_f, _s, _start, _num, 0, vmstate_info_uint64, uint64_t)