Home
last modified time | relevance | path

Searched refs:isNeg (Results 1 - 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
H A Dc_string.h80 bool isNeg = true; in ToCString() local
83 isNeg = false; in ToCString()
89 if (isNeg) { in ToCString()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dmpl_int_val.h194 bool isNeg = sign && GetSignBit(); in operator /() local
197 uint64 dividendVal = isNeg ? (-*this).value : value; in operator /()
200 return isNeg != isDivisorNeg ? -IntVal(dividendVal / divisorVal, width, sign) in operator /()
210 bool isNeg = sign && GetSignBit(); in operator %() local
213 uint64 dividendVal = isNeg ? (-*this).value : value; in operator %()
216 return isNeg ? -IntVal(dividendVal % divisorVal, width, sign) : IntVal(dividendVal % divisorVal, width, sign); in operator %()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H A Dcountable_loop_parser.cpp261 auto isNeg = DataType::IsTypeSigned(loopInfo_.update->GetType()) && (cnst & mask) != 0; in SetIndexAndConstStep() local
263 if (isNeg) { in SetIndexAndConstStep()
/arkcompiler/ets_runtime/ecmascript/base/
H A Dnumber_helper.cpp714 bool isNeg = false;
717 isNeg = true;
768 if (isNeg) {
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
H A Dassembler_aarch64.cpp623 bool isNeg = false; in EmitMovInstruct() local
625 isNeg = true; in EmitMovInstruct()
638 if (isNeg) { in EmitMovInstruct()
650 if (imm16 == (isNeg ? HWORD_MASK : 0)) { in EmitMovInstruct()

Completed in 6 milliseconds