Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/test/fuzztest/createbigwords_fuzzer/
Dcreatebigwords_fuzzer.cpp33 bool sign = false; in CreateBigWordsFuzzTest() local
/arkcompiler/ets_runtime/test/fuzztest/getwordsarray_fuzzer/
Dgetwordsarray_fuzzer.cpp33 bool sign = false; in GetWordsArrayFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp80 static inline double SignedZero(Sign sign) in SignedZero()
446 Sign sign = Sign::NONE; in StringToDouble() local
628 Sign sign = Sign::NONE; in Strtod() local
712 Sign sign = Sign::NONE; in StringToBigInt() local
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp509 bool sign = number < 0; in Int32ToBigInt() local
530 bool sign = number < 0; in Int64ToBigInt() local
597 JSHandle<BigInt> BigInt::CreateBigWords(JSThread *thread, bool sign, uint32_t size, const uint64_t … in CreateBigWords()
810 JSHandle<BigInt> BigInt::ReturnIfRightShiftOverMax(JSThread *thread, bool sign) in ReturnIfRightShiftOverMax()
864 bool sign = x->GetSign(); in RightShiftHelper() local
1368 bool sign = x->GetSign() != y->GetSign(); in Divide() local
1470 static JSTaggedNumber CalculateNumber(const uint64_t &sign, const uint64_t &mantissa, uint64_t &exp… in CalculateNumber()
1482 static JSTaggedNumber Rounding(const uint64_t &sign, uint64_t &mantissa, uint64_t &exponent, bool n… in Rounding()
1510 uint64_t sign = bigintSign ? 1ULL << 63 : 0; // 63 : Set the sign bit of sign to 1 in BigIntToNumber() local
Ddate_parse.cpp46 DateUnit sign = proxy->NextDate(); in IsIsoDateTime() local
Ddate_parse.h348 void SetSign(int sign) in SetSign()
/arkcompiler/runtime_core/assembler/
Dassembly-parser.cpp1339 bool Parser::ParseOperandSignature(std::string *sign) in ParseOperandSignature()
1373 bool Parser::ParseOperandSignatureTypesList(std::string *sign) in ParseOperandSignatureTypesList()
2344 std::string sign {}; in BuildMetaListAttr() local
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp570 bool sign = true; in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp1080 bool sign = false; in HWTEST_F_L0() local
/arkcompiler/runtime_core/compiler/tests/amd64/
Dencoder64_test.cpp102 int8_t sign = (gen % 2) == 0 ? 1 : -1; in random_gen() local
/arkcompiler/runtime_core/compiler/tests/aarch32/
Dencoder32_test.cpp105 int8_t sign = (gen % 2) == 0 ? 1 : -1; in random_gen() local
/arkcompiler/runtime_core/compiler/tests/aarch64/
Dencoder64_test.cpp102 int8_t sign = (gen % 2) == 0 ? 1 : -1; in random_gen() local
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/aarch64/
Dencode.cpp604 auto sign = (dst.GetId() == src.GetId() ? tmp : dst); in EncodeSignum() local
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp850 Local<JSValueRef> BigIntRef::CreateBigWords(const EcmaVM *vm, bool sign, uint32_t size, const uint6… in CreateBigWords()