/ohos5.0/docs/zh-cn/application-dev/napi/ |
H A D | use-napi-about-bigint.md | 21 | napi_create_bigint_words | 用于根据提供的64位无符号(uint64)字节数据创建BigInt对象的函数。 | 103 ### napi_create_bigint_words subsection 114 // 使用napi_create_bigint_words接口创建一个BigInt对象 119 napi_status status = napi_create_bigint_words(env, signBit, wordCount, words, &returnValue); 121 napi_throw_error(env, nullptr, "napi_create_bigint_words fail"); 141 …hilog.info(0x0000, 'testTag', 'Test Node-API napi_create_bigint_words: %{public}d', testNapi.creat…
|
H A D | napi-data-types-interfaces.md | 420 | napi_create_bigint_words | 通过一个C的uint64数组创建单个JS BigInt。 |
|
/ohos5.0/docs/en/application-dev/napi/ |
H A D | use-napi-about-bigint.md | 21 | napi_create_bigint_words | Creates an ArkTS BigInt object from an array of unsigned 64-bit byte d… 103 ### napi_create_bigint_words subsection 105 Use **napi_create_bigint_words** to create an ArkTS BigInt object based on the given byte data. 114 // Call napi_create_bigint_words to create a BigInt object. 119 napi_status status = napi_create_bigint_words(env, signBit, wordCount, words, &returnValue); 121 napi_throw_error(env, nullptr, "napi_create_bigint_words fail"); 141 …hilog.info(0x0000, 'testTag', 'Test Node-API napi_create_bigint_words: %{public}d', testNapi.creat…
|
H A D | napi-data-types-interfaces.md | 403 | napi_create_bigint_words | Creates a single JS BigInt from a C uint64 array.|
|
/ohos5.0/foundation/arkui/napi/sample/native_module_systemtest/ |
H A D | js_test_bigint_napi.cpp | 114 NAPI_CALL(env, napi_create_bigint_words(env, sign_bit, word_count, words, &output)); in BigIntWords() 127 NAPI_CALL(env, napi_create_bigint_words(env, sign_bit, word_count, words, &output)); in CreateTooBigBigInt()
|
H A D | test_napi.cpp | 1662 ExpectCheckCall(napi_create_bigint_words(env, sign_bit, word_count, words, &result)); 1696 ExpectCheckCall(napi_create_bigint_words(env, sign_bit, word_count, words, &result)); 1728 ret = napi_create_bigint_words(env, sign_bit, word_count, nullptr, &result); 1750 ret = napi_create_bigint_words(nullptr, sign_bit, word_count, words, &result); 1781 ExpectCheckCall(napi_create_bigint_words(env, sign_bit, word_count, words, &result)); 1820 ExpectCheckCall(napi_create_bigint_words(env, sign_bit, word_count, words, &result)); 1854 ExpectCheckCall(napi_create_bigint_words(env, sign_bit, word_count, words, &result)); 1888 ExpectCheckCall(napi_create_bigint_words(env, sign_bit, word_count, words, &result)); 1921 ret = napi_create_bigint_words(env, sign_bit, word_count, words, nullptr); 1947 ExpectCheckCall(napi_create_bigint_words(env, sign_bit, word_count, words, &result)); [all …]
|
/ohos5.0/foundation/arkui/napi/test/unittest/ |
H A D | test_napi_ext.cpp | 286 ASSERT_CHECK_CALL(napi_create_bigint_words(env, signBit, wordCount, words, &result)); 306 ASSERT_CHECK_CALL(napi_create_bigint_words(env, signBit, wordCount, words, &result)); 325 ASSERT_CHECK_CALL(napi_create_bigint_words(env, signBit, wordCount, words, &result)); 345 ASSERT_CHECK_CALL(napi_create_bigint_words(env, signBit, wordCount, words, &result));
|
H A D | test_napi.cpp | 6378 napi_status status = napi_create_bigint_words(env, signBit, wordCount, words, &result); 6390 napi_status status = napi_create_bigint_words(env, signBit, wordCount, words, result); 6526 napi_status status = napi_create_bigint_words(env, signBit, wordCount, words, &value);
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/src/ |
H A D | napi_rdb_js_utils.cpp | 88 …napi_status status = napi_create_bigint_words(env, value.Sign(), value.Size(), value.TrueForm(), &… in Convert2JSValue()
|
/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/js/napi/common/src/ |
H A D | js_common_utils.cpp | 288 …napi_status status = napi_create_bigint_words(env, value.sign_, value.words_.size(), value.words_.… in Convert2JSValue()
|
/ohos5.0/docs/zh-cn/application-dev/reference/native-lib/ |
H A D | napi.md | 154 |FUNC|napi_create_bigint_words|通过一个C的`uint64`数组创建单个js `BigInt`。|10| 568 ### napi_create_bigint_words subsection
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/ |
H A D | napi_rdb_js_utils.cpp | 249 …napi_status status = napi_create_bigint_words(env, value.Sign(), value.Size(), value.TrueForm(), &… in Convert2JSValue()
|
/ohos5.0/base/security/certificate_framework/frameworks/js/napi/certificate/src/ |
H A D | napi_cert_utils.cpp | 1029 napi_create_bigint_words(env, 0, wordsCount, words, &result); in ConvertBlobToBigIntWords()
|
/ohos5.0/docs/en/application-dev/reference/native-lib/ |
H A D | napi.md | 154 |FUNC|napi_create_bigint_words|Creates a single JS BigInt from a C uint64 array.|10| 566 ### napi_create_bigint_words subsection
|
/ohos5.0/base/security/crypto_framework/frameworks/js/napi/crypto/src/ |
H A D | napi_utils.cpp | 1639 napi_status status = napi_create_bigint_words(env, 0, wordsCount, words, &bigInt); in ConvertBigIntToNapiValue()
|
/ohos5.0/foundation/arkui/napi/native_engine/ |
H A D | native_api.cpp | 3686 NAPI_EXTERN napi_status napi_create_bigint_words(napi_env env, in napi_create_bigint_words() function
|