Searched defs:IntVal (Results 1 – 1 of 1) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
| D | mpl_int_val.h | 27 IntVal() : value(0), width(0), sign(false) {} in IntVal() function 29 IntVal(uint64 val, uint8 bitWidth, bool isSigned) : value(val), width(bitWidth), sign(isSigned) in IntVal() function 35 …IntVal(uint64 val, PrimType type) : IntVal(val, GetPrimTypeActualBitSize(type), IsSignedInteger(ty… in IntVal() function 40 IntVal(const IntVal &val) : IntVal(val.value, val.width, val.sign) {} in IntVal() function 42 IntVal(const IntVal &val, PrimType type) : IntVal(val.value, type) {} in IntVal() function 44 …IntVal(const IntVal &val, uint8 bitWidth, bool isSigned) : IntVal(val.value, bitWidth, isSigned) {} in IntVal() function 46 IntVal(const IntVal &val, bool isSigned) : IntVal(val.value, val.width, isSigned) {} in IntVal() function
|