Searched refs:sign_bit (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/arkui/napi/sample/native_module_systemtest/ |
H A D | js_test_bigint_napi.cpp | 106 int sign_bit = 0; in BigIntWords() local 110 NAPI_CALL(env, napi_get_value_bigint_words(env, args[0], &sign_bit, &word_count, words)); in BigIntWords() 114 NAPI_CALL(env, napi_create_bigint_words(env, sign_bit, word_count, words, &output)); in BigIntWords() 123 int sign_bit = 0; in CreateTooBigBigInt() local 127 NAPI_CALL(env, napi_create_bigint_words(env, sign_bit, word_count, words, &output)); in CreateTooBigBigInt()
|
H A D | test_napi.cpp | 1658 int sign_bit = INT_ZERO; variable 1692 int sign_bit = INT_ONE; variable 1723 int sign_bit = INT_ZERO; variable 1745 int sign_bit = INT_ONE; variable 1777 int sign_bit = INT_ZERO; variable 1816 int sign_bit = INT_ONE; variable 1850 int sign_bit = INT_ONE; variable 1884 int sign_bit = INT_ONE; variable 1917 int sign_bit = INT_ONE; variable 1977 int sign_bit = INT_ONE; variable [all …]
|
/ohos5.0/foundation/arkui/napi/native_engine/ |
H A D | native_api.cpp | 3540 int sign_bit = 0; in napi_type_tag_object() local 3543 if ((sign_bit % bigintMod) == 1) { in napi_type_tag_object() 3687 int sign_bit, in napi_create_bigint_words() argument 3700 if ((sign_bit % bigintMod) == 1) { in napi_create_bigint_words() 3716 int* sign_bit, in napi_get_value_bigint_words() argument 3734 if (sign_bit == nullptr && words == nullptr) { in napi_get_value_bigint_words() 3737 } else if (sign_bit != nullptr && words != nullptr) { in napi_get_value_bigint_words() 3744 *sign_bit = 1; in napi_get_value_bigint_words() 3746 *sign_bit = 0; in napi_get_value_bigint_words()
|