Home
last modified time | relevance | path

Searched defs:IntVal (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dmpl_int_val.h27 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
35IntVal(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
44IntVal(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