Searched refs:sign_ (Results 1 - 6 of 6) sorted by relevance
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | big_integer.cpp | 22 sign_ = 1; in BigInteger() 29 : sign_(sign), value_(std::move(trueForm)) in BigInteger() 48 sign_ = other.sign_; in operator =() 58 sign_ = other.sign_; in operator =() 60 other.sign_ = 0; in operator =() 66 if (sign_ != other.sign_) { in operator ==() 74 return sign_ ! in operator <() [all...] |
/foundation/distributeddatamgr/preferences/interfaces/inner_api/include/ |
H A D | preferences_value.h | 40 BigInt(const std::vector<uint64_t> &words, int sign) : words_(std::move(words)), sign_(sign) in BigInt() 46 return sign_ == value.sign_ && words_ == value.words_; in operator ==() 49 int sign_; member
|
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | big_integer.h | 44 int32_t sign_ = 0; member in OHOS::NativeRdb::final
|
/foundation/distributeddatamgr/preferences/frameworks/native/src/ |
H A D | preferences_impl.cpp | 242 value.sign_ = 0; in Convert2PrefValue() 244 value.sign_ = static_cast<int>(value.words_[value.words_.size() - 1]); in Convert2PrefValue() 358 Convert2Element(symbolElement, static_cast<uint64_t>(value.sign_)); in Convert2Element()
|
H A D | preferences_value_parcel.cpp | 297 int64_t sign = static_cast<int64_t>(bigIntValue.sign_); in MarshallingVecBigIntAfterType()
|
/foundation/distributeddatamgr/preferences/frameworks/js/napi/common/src/ |
H A D | js_common_utils.cpp | 157 status = napi_get_value_bigint_words(env, jsValue, &output.sign_, &wordCount, output.words_.data()); in Convert2NativeValue() 288 napi_status status = napi_create_bigint_words(env, value.sign_, value.words_.size(), value.words_.data(), &bigint); in Convert2JSValue()
|
Completed in 5 milliseconds