Searched defs:IntVal (Results 1 - 1 of 1) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ | ||
H A D | mpl_int_val.h | 24 class IntVal { class 27 IntVal() : value(0), width(0), sign(false) {} in IntVal() function in maple::IntVal 29 IntVal(uint64 val, uint8 bitWidth, bool isSigned) : value(val), width(bitWidth), sign(isSigned) in IntVal() function in maple::IntVal 35 IntVal(uint64 val, PrimType type) : IntVal(val, GetPrimTypeActualBitSize(type), IsSignedInteger(type)) in IntVal() function in maple::IntVal 40 IntVal(const IntVal &val) : IntVal(val.value, val.width, val.sign) {} in IntVal() function in maple::IntVal 42 IntVal(const IntVal function in maple::IntVal 44 IntVal(const IntVal &val, uint8 bitWidth, bool isSigned) : IntVal(val.value, bitWidth, isSigned) {} IntVal() function in maple::IntVal 46 IntVal(const IntVal &val, bool isSigned) : IntVal(val.value, val.width, isSigned) {} IntVal() function in maple::IntVal [all...] |
Completed in 2 milliseconds