Home
last modified time | relevance | path

Searched refs:integer (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/ohos5.0/docs/en/application-dev/reference/apis-arkui/
H A D_native_display_manager___display_info.md20 | uint32_t [id](#id) | ID of the display. The value must be a non-negative integer.|
23 | int32_t [width](#width) | Width of the display, in px. The value must be a non-negative integer.|
24 …t32_t [height](#height) | Height of the display, in px. The value must be a non-negative integer.|
53 Height of the available area on a 2-in-1 device, in px. The value must be a non-negative integer.
64 Width of the available area on a 2-in-1 device, in px. The value must be a non-negative integer.
119 Height of the display, in px. The value must be a non-negative integer.
130 ID of the display. The value must be a non-negative integer.
174 Physical height of the display, in px. The value must be a non-negative integer.
185 Physical width of the display, in px. The value must be a non-negative integer.
196 Refresh rate of the display, in Hz. The value must be a non-negative integer.
[all …]
H A Dunion_ark_u_i___number_value.md21 | int32_t [i32](#i32) | Signed integer. |
22 | uint32_t [u32](#u32) | Unsigned integer. |
45 Signed integer.
55 Unsigned integer.
H A Djs-apis-screen-sys.md230 …<number> | Promise used to return the group ID of the expanded screens, which is an integer.|
402 …inScreen | number | Yes | ID of the primary screen. The value must be an integer. |
403 | mirrorScreen | Array<number> | Yes | IDs of secondary screens. Each ID must be an integer.|
695 | screenId | number | Yes | Screen ID. The value must be an integer.|
786 | screenId | number | Yes | Screen ID. The value must be an integer. |
985 …imaryScreenId | number | Yes | ID of the primary screen. The value must be an integer.|
1083 | screenId | number | Yes | Yes | Screen ID. The value must be an integer. |
1084 …tartX | number | Yes | Yes | Start X coordinate of the screen. The value must be an integer.|
1085 …tartY | number | Yes | Yes | Start Y coordinate of the screen. The value must be an integer.|
1106 …r | Yes | Yes | Screen ID. The value must be a positive integer. Any non-positive integer valu…
[all …]
H A Djs-apis-screenshot.md25 …umber | Yes | Left boundary of the screen region to capture, in px. The value must be an integer.|
26 …number | Yes | Top boundary of the screen region to capture, in px. The value must be an integer.|
27 …dth | number | Yes | Width of the screen region to capture, in px. The value must be an integer.|
28 …ght | number | Yes | Height of the screen region to capture, in px. The value must be an integer.|
40 … The default value is **0**. The value must be an integer greater than or equal to 0. If a non-int…
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/utils/
H A Dblock_integer.h23 …API_EXPORT BlockInteger(const BlockInteger &integer) : interval_(integer.interval_), value_(intege… in BlockInteger() argument
24 API_EXPORT BlockInteger &operator=(const BlockInteger &integer) = default;
/ohos5.0/build/config/sanitizers/
H A DBUILD.gn489 "-fsanitize=integer-divide-by-zero",
496 "-fsanitize=signed-integer-overflow",
537 "-fsanitize=signed-integer-overflow",
772 "-fno-sanitize-trap=integer,undefined",
780 "-fno-sanitize-trap=integer,undefined",
781 "-fsanitize-recover=integer,undefined",
788 "-fno-sanitize-trap=integer,undefined",
797 "-fno-sanitize-trap=integer,undefined",
798 "-fsanitize-recover=integer,undefined",
806 "-fno-sanitize-trap=integer,undefined",
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dparcel.h177 int WriteInteger(T integer);
179 uint32_t ReadInteger(T &integer);
189 uint32_t Parcel::ReadInteger(T &integer) in ReadInteger() argument
200 integer = *(reinterpret_cast<T *>(bufPtr_)); in ReadInteger()
203 integer = NetToHost(integer); in ReadInteger()
208 int Parcel::WriteInteger(T integer) in WriteInteger() argument
213 T inData = HostToNet(integer); in WriteInteger()
/ohos5.0/docs/en/application-dev/reference/apis-neural-network-runtime-kit/
H A D_o_h___n_n___u_int32_array.md6 Defines the structure for storing 32-bit unsigned integer arrays.
20 | uint32_t \* [data](#data) | Pointer to the unsigned integer array.|
35 Pointer to the unsigned integer array.
/ohos5.0/docs/en/application-dev/napi/
H A Duse-napi-basic-data-types.md24 | napi_create_int32 | Creates an ArkTS number from a 32-bit signed integer.|
25 | napi_create_uint32 | Creates an ArkTS number from a 32-bit unsigned integer.|
26 | napi_create_int64 | Creates an ArkTS number from a 64-bit signed integer.|
35 Use **napi_get_value_uint32** to obtain a 32-bit unsigned integer from an ArkTS number.
51 // Obtain the 32-bit unsigned integer from the input parameter.
58 // Create a 32-bit unsigned integer and output the integer.
108 // Call napi_create_int32 to convert the 32-bit signed integer into a napi_value and return it.
242 Use **napi_create_int32** to create an ArkTS number from a 32-bit signed integer.
283 Use **napi_create_uint32** to create an ArkTS number from a 32-bit unsigned integer.
293 …// uint32_t represents a 32-bit unsigned integer, ranging from 0 to 2^32 - 1, that is, 0 to 429496…
[all …]
H A Duse-napi-about-bigint.md19 | napi_create_bigint_int64 | Creates an ArkTS BigInt object from a signed 64-bit integer in C/C++.|
20 | napi_create_bigint_uint64 | Creates an ArkTS BigInt object from an unsigned 64-bit integer in C/C…
22 | napi_get_value_bigint_int64 | Obtains a signed 64-bit integer from an ArkTS BigInt object.|
23 | napi_get_value_bigint_uint64 | Obtains an unsigned 64-bit integer from an ArkTS BigInt object.|
33 Use **napi_create_bigint_int64** to create an ArkTS BigInt object from a signed 64-bit integer in C…
69 Use **napi_create_bigint_uint64** to create an ArkTS BigInt object from an unsigned 64-bit integer
149 Use **napi_get_value_bigint_int64** to obtain a signed 64-bit integer from an ArkTS BigInt object.
161 // Obtain the 64-bit big integer from the input parameter.
200 Use **napi_get_value_bigint_uint64** to obtain an unsigned 64-bit integer from an ArkTS BigInt obje…
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/hpack/
H A Dinteger.rs155 use crate::h2::hpack::integer::{IntegerDecoder, IntegerEncoder};
220 let mut integer = IntegerEncoder::new($int, $mask, $pre); in ut_integer_encode() localVariable
222 assert_eq!(integer.next_byte(), Some($byte)); in ut_integer_encode()
224 assert_eq!(integer.next_byte(), None); in ut_integer_encode()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/
H A Dunion_rdb___key_info_1_1_rdb___key_data.md20 | [integer](_r_d_b.md#integer) | 存放uint64_t类型的数据。 |
/ohos5.0/docs/en/application-dev/reference/apis-arkgraphics2d/
H A Djs-apis-graphics-common2D.md23 | alpha | number | Yes | Yes | Alpha component of the color. The value is an integer ranging from…
24 | red | number | Yes | Yes | Red component of the color. The value is an integer ranging from 0…
25 | green | number | Yes | Yes | Green component of the color. The value is an integer ranging from…
26 | blue | number | Yes | Yes | Blue component of the color. The value is an integer ranging from …
/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/
H A DBUILD.gn25 integer_overflow = true # Enable integer overflow detection
88 integer_overflow = true # Enable integer overflow detection
129 integer_overflow = true # Enable integer overflow detection
182 integer_overflow = true # Enable integer overflow detection
200 integer_overflow = true # Enable integer overflow detection
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/
H A Dunion_rdb___key_info_1_1_rdb___key_data.md20 | [integer](_r_d_b.md#integer) | Data of the uint64_t type.|
/ohos5.0/drivers/peripheral/wlan/hostapd/interfaces/hdi_service/
H A DBUILD.gn25 integer_overflow = true # Enable integer overflow detection
77 integer_overflow = true # Enable integer overflow detection
118 integer_overflow = true # Enable integer overflow detection
136 integer_overflow = true # Enable integer overflow detection
/ohos5.0/docs/en/application-dev/security/UniversalKeystoreKit/
H A Dhuks-key-generation-overview.md27 | HMAC | An integer multiple of 8, ranging from 8 to 1024 (inclusive)| 8+ | Yes|
32 | <!--DelRow-->DSA | An integer multiple of 8, ranging from 512 to 1024 (inclusive) | 8+ | No|
52 | RSA | An integer multiple of 8, ranging from 1024 to 2048 (inclusive)| 12+ |
53 | HMAC | An integer multiple of 8, ranging from 8 to 1024 (inclusive)| 12+ |
/ohos5.0/foundation/communication/dsoftbus/core/authentication/src/
H A Dauth_common.c224 static uint32_t integer = 0; in GenSeq() local
225 if (integer >= SEQ_INTEGER_MAX) { in GenSeq()
226 integer = 0; in GenSeq()
228 if (integer == 0) { in GenSeq()
231 integer += SEQ_INTERVAL; in GenSeq()
232 uint64_t seq = isServer ? (integer + 1) : integer; in GenSeq()
/ohos5.0/foundation/distributeddatamgr/kv_store/test/unittest/distributeddata/
H A DSingleKvStoreEnumJsTest.js139 var integer = factory.ValueType.INTEGER;
140 console.info('integer = ' + integer);
141 expect(integer == 1).assertTrue()
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.2/
H A Dchangelogs-multimedia.md249 * Signed 16 bit integer, little endian.
253 * Signed 24 bit integer, little endian.
257 * Signed 32 bit integer, little endian.
/ohos5.0/foundation/communication/wifi/wifi/frameworks/js/napi/
H A DBUILD.gn24 integer_overflow = true # Enable integer overflow detection
82 integer_overflow = true # Enable integer overflow detection
134 integer_overflow = true # Enable integer overflow detection
192 integer_overflow = true # Enable integer overflow detection
248 integer_overflow = true # Enable integer overflow detection
/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/
H A DBUILD.gn121 integer_overflow = true # Enable integer overflow detection
156 integer_overflow = true # Enable integer overflow detection
191 integer_overflow = true # Enable integer overflow detection
227 integer_overflow = true # Enable integer overflow detection
262 integer_overflow = true # Enable integer overflow detection
/ohos5.0/docs/en/application-dev/reference/apis-image-kit/
H A Dunion_image_effect___data_value.md26 | long [longValue](#longvalue) | Long integer value, corresponding to [EFFECT_DATA_TYPE_LONG](_imag…
91 Long integer value, corresponding to [EFFECT_DATA_TYPE_LONG](_image_effect.md).
/ohos5.0/foundation/communication/wifi/wifi/base/cRPC/
H A DBUILD.gn83 integer_overflow = true # Enable integer overflow detection
109 integer_overflow = true # Enable integer overflow detection
137 integer_overflow = true # Enable integer overflow detection
/ohos5.0/foundation/filemanagement/user_file_service/interfaces/kits/js/src/common/
H A Dfile_info_shared_memory.h298 static bool WriteInteger(T &integer, SharedMemoryInfo &memInfo) in WriteInteger() argument
300 uint8_t *src = reinterpret_cast<uint8_t *>(&integer); in WriteInteger()
312 static bool ReadInteger(T &integer, SharedMemoryInfo &memInfo) in ReadInteger() argument
315 uint8_t *dest = reinterpret_cast<uint8_t *>(&integer); in ReadInteger()

12345678910>>...13