Searched defs:SpecConstantValue (Results 1 – 1 of 1) sorted by relevance
3647 struct SpecConstantValue struct3649 SpecConstantType type;3650 union ValueUnion3697 } value;3699 SpecConstantValue(int8_t v) : type(SC_INT8), value(v) in SpecConstantValue() argument3702 SpecConstantValue(uint8_t v) : type(SC_UINT8), value(v) in SpecConstantValue() function3705 SpecConstantValue(int16_t v) : type(SC_INT16), value(v) in SpecConstantValue() function3708 SpecConstantValue(uint16_t v) : type(SC_UINT16), value(v) in SpecConstantValue() function3711 SpecConstantValue(int32_t v) : type(SC_INT32), value(v) in SpecConstantValue() argument3714 SpecConstantValue(uint32_t v) : type(SC_UINT32), value(v) in SpecConstantValue() argument[all …]