/ohos5.0/base/web/webview/interfaces/kits/napi/protos/ |
H A D | web_download.proto | 33 required int64 web_download_id = 1; 35 optional int64 current_speed = 2; 37 optional int64 percent_complete = 3; 39 optional int64 total_bytes = 4; 41 optional int64 received_bytes = 5; 63 optional int64 last_error_code = 16;
|
/ohos5.0/docs/zh-cn/application-dev/napi/ |
H A D | use-napi-basic-data-types.md | 22 | napi_get_value_int64 | 将ArkTS环境中获取的number类型数据转为Node-API模块中的int64类型数据。 | 144 将ArkTS value转为Node-API模块中的int64类型数据。 158 // 将前端传过来的参数转为Node-API模块的int64类型 164 // 调用napi_create_int64接口将int64类型的数据转为napi_value返回前端 184 // 输入不超过int64表示范围的数字,会返回该数字 188 // 输入超过int64表示范围的数字会溢出,失去精度,导致输入数字与返回数字不相等 325 用于创建一个ArkTS数字(int64类型)的值。 334 // int64是有符号的64位整数类型,可以表示范围从-2^63到2^63 - 1的整数,即 -9223372036854775808到9223372036854775807 337 // 创建ArkTS中的int64数字 342 napi_throw_error(env, nullptr, "Failed to create int64 value");
|
H A D | use-jsvm-basic-data-types.md | 139 将JavaScript value转为JSVM模块中的int64类型数据。 157 // 将前端传过来的参数分别转为JSVM模块的int64类型 339 用于创建一个JavaScript number(int64类型)的值。 352 // int64是有符号的64位整数类型,可以表示范围从-2^63到2^63 - 1的整数,即 -9223372036854775808到9223372036854775807 355 // 创建JavaScript中的int64数字
|
H A D | napi-data-types-interfaces.md | 406 | napi_create_int64 | 通过一个C的int64数据创建JS number。 | 410 | napi_get_value_int64 | 获取给定JS number对应的C int64值。 | 418 | napi_create_bigint_int64 | 通过一个C的int64数据创建JS BigInt。 | 421 | napi_get_value_bigint_int64 | 获取给定JS BigInt对应的C int64值。 |
|
H A D | use-napi-about-bigint.md | 12 - **BigInt创建:** 使用Node-API提供的接口,可以通过传递C的int64或uint64数据来创建对应的ArkTS BigInt。这使得在Node-API模块中可以方便地创建BigI… 19 | napi_create_bigint_int64 | 用于创建64位带符号整数(int64)的BigInt对象的函数。 | 22 | napi_get_value_bigint_int64 | 用于从BigInt对象中获取64位带符号整数(int64)值的函数。 |
|
H A D | use-jsvm-about-bigint.md | 12 - **BigInt创建:** 使用JSVM-API提供的接口,可以通过传递C的int64或uint64数据来创建对应的JavaScript BigInt。这使得在JSVM模块中可以方便地创建Big…
|
/ohos5.0/commonlibrary/utils_lite/include/ |
H A D | ohos_types.h | 37 typedef long long int64; typedef 40 typedef __int64 int64; typedef
|
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/ |
H A D | _o_h___v_object.md | 21 | [putInt64](_r_d_b.md#putint64-22) | Converts a single parameter or an array of the int64 type int… 22 | [putDouble](_r_d_b.md#putdouble) | Converts a single parameter or an array of the int64 type into…
|
/ohos5.0/foundation/graphic/graphic_surface/surface/test/systemtest/ |
H A D | native_window_buffer_test.cpp | 87 int64_t int64; in GetData() local 90 buffer->GetExtraData()->ExtraGet("345", int64); in GetData() 92 if ((int32 != 0x123) || (int64 != 0x345) || (str != "567")) { in GetData()
|
H A D | surface_ipc_test.cpp | 90 int64_t int64; in GetData() local 93 buffer->GetExtraData()->ExtraGet("345", int64); in GetData() 95 if ((int32 != 0x123) || (int64 != 0x345) || (str != "567")) { in GetData()
|
H A D | native_window_test.cpp | 190 int64_t int64; in GetData() local 193 buffer->GetExtraData()->ExtraGet("345", int64); in GetData() 195 if ((int32 != 0x123) || (int64 != 0x345) || (str != "567")) { in GetData()
|
/ohos5.0/docs/en/application-dev/napi/ |
H A D | use-napi-basic-data-types.md | 22 | napi_get_value_int64 | Obtains a C int64 value from an ArkTS number.| 144 Use **napi_get_value_int64** to convert an ArkTS value to a C int64 value. 158 // Convert the parameter into a C int64 value. 164 // Call napi_create_int64 to convert the int64 value to a napi_value and return it. 184 // If a number within the int64 value range is passed in, the original number will be returned. 188 // If a number out of the int64 value range is passed in, it will cause integer overflow and loss o… 333 …// int64 represents a 64-bit signed integer, ranging from -2^63 to 2^63 - 1, that is, -92233720368… 340 napi_throw_error(env, nullptr, "Failed to create int64 value");
|
H A D | use-jsvm-basic-data-types.md | 139 Use **OH_JSVM_GetValueInt64** to obtain a C int64 value from a JS value. 157 // Convert the input parameters into C int64 values. 339 Use **OH_JSVM_CreateInt64** to create a JS number of the int64 type. 352 …// int64 represents a 64-bit signed integer, ranging from -2^63 to 2^63 - 1, that is, -92233720368…
|
H A D | napi-data-types-interfaces.md | 401 | napi_create_bigint_int64 | Creates a JS BigInt from C int64 data.| 404 | napi_get_value_bigint_int64 | Obtains the C int64 equivalent of a JS BigInt.|
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/ |
H A D | _o_h___v_object.md | 21 | [putInt64](_r_d_b.md#putint64-22) | 将int64类型的单个参数或者数组转换为OH_VObject类型的值。 |
|
H A D | _r_d_b.md | 213 | [OH_VObject::putInt64](#putint64-22) | 将int64类型的单个参数或者数组转换为[OH_VObject](_o_h___v_object.md)类型的值。 … 3976 将int64类型的单个参数或者数组转换为[OH_VObject](_o_h___v_object.md)类型的值。
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-avcodec-kit/ |
H A D | _core.md | 114 用int64整数来表示高保真立体声混响属性。 131 用int64整数来表示在录制或播放时扬声器的外观和顺序。 148 将每一个声道映射为int64的变量。 276 用int64整数来表示高保真立体声混响属性。 304 用int64整数来表示在录制或播放时扬声器的外观和顺序。 374 将每一个声道映射为int64的变量。
|
H A D | avcodec__audio__channel__layout_8h.md | 24 …1ULL << 55U,<br/>AMBISONICS_ACN15 = 1ULL << 56U<br/>} | 音频声道数集合, 将每一个声道数映射为int64的变量。 |
|
/ohos5.0/docs/zh-cn/application-dev/reference/native-lib/ |
H A D | napi.md | 81 |FUNC|napi_get_value_int64|获取给定js `Number`对应的C int64值。|10| 152 |FUNC|napi_create_bigint_int64|通过一个C的`int64`数据创建js `BigInt`。|10| 155 |FUNC|napi_get_value_bigint_int64|获取给定js `BigInt`对应的C int64值。|10|
|
/ohos5.0/docs/en/device-dev/subsystems/ |
H A D | subsys-dfx-hisysevent-listening.md | 70 …am** key in a system event into an int64\_t value.<br>Input arguments:<br>- **param**: key name.<b… 74 …am** key in a system event into an int64\_t array.<br>Input arguments:<br>- **param**: key name.<b…
|
/ohos5.0/docs/en/application-dev/reference/apis-avcodec-kit/ |
H A D | avcodec__audio__channel__layout_8h.md | 24 …r>} | Enumerates the audio channel numbers. Each channel number is mapped to a variable of int64.|
|
/ohos5.0/docs/en/application-dev/reference/native-lib/ |
H A D | napi.md | 81 |FUNC|napi_get_value_int64|Obtains the C int64 equivalent of a JS number.|10| 152 |FUNC|napi_create_bigint_int64|Creates a JS BigInt from C int64 data.|10| 155 |FUNC|napi_get_value_bigint_int64|Obtains the C int64 equivalent of the given JS BigInt.|10|
|
/ohos5.0/docs/zh-cn/contribute/ |
H A D | OpenHarmony-cpp-coding-style-guide.md | 2067 - 是使用int8,int16,int32还是int64,确定整形的长度 2085 对于那种算数转换,并且类型信息没有丢失的,比如float到double, int32到int64的转换,推荐使用大括号的初始方式。
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-neural-network-runtime-kit/ |
H A D | _neural_network_runtime.md | 493 | OH_NN_INT64 | 张量数据类型为int64 | 605 | OH_NN_OPS_SOFTMAX | 给定一个张量,计算其softmax结果。<br/>输入:<br/>- input,n维输入张量。<br/>参数:<br/>- axis,int64类型,指… 618 …表示“ASYMMETRIC”,1表示“ALIGN_CORNERS”,2表示“HALF_PIXEL”。<br/>- excludeOutside,一个int64浮点数。当excludeOutside…
|
H A D | _neural_nework_runtime.md | 493 | OH_NN_INT64 | 张量数据类型为int64 | 605 | OH_NN_OPS_SOFTMAX | 给定一个张量,计算其softmax结果。<br/>输入:<br/>- input,n维输入张量。<br/>参数:<br/>- axis,int64类型,指… 618 …表示“ASYMMETRIC”,1表示“ALIGN_CORNERS”,2表示“HALF_PIXEL”。<br/>- excludeOutside,一个int64浮点数。当excludeOutside…
|