Home
last modified time | relevance | path

Searched refs:high (Results 1 – 14 of 14) sorted by relevance

/base/global/i18n_lite/frameworks/i18n/src/
Ddata_resource.cpp122 int32_t high = static_cast<int32_t>(length - 1); in BinarySearchString() local
123 while (low <= high) { in BinarySearchString()
124 int32_t mid = low + (high - low) / 2; in BinarySearchString()
134 high = mid - 1; in BinarySearchString()
443 int32_t high = static_cast<int32_t>(localesCount - 1); in BinarySearchLocale() local
444 while (low <= high) { in BinarySearchLocale()
445 int32_t mid = low + (high - low) / 2; in BinarySearchLocale()
455 high = mid - 1; in BinarySearchLocale()
/base/security/deviceauth/common_lib/impl/src/
Dstring_util.c93 uint8_t high = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH]); in HexStringToByte() local
95 if (high == OUT_OF_HEX || low == OUT_OF_HEX) { in HexStringToByte()
98 byte[i] = high << 4; /* 4: Set the high nibble */ in HexStringToByte()
/base/telephony/core_service/services/sim/src/
Dsim_utils.cpp131 char16_t high = charBytes[i]; in CharsConvertToChar16() local
134 ret[id] = (char16_t)((high << BYTE_LENGTH) | low); in CharsConvertToChar16()
136 ret[id] = (char16_t)((low << BYTE_LENGTH) | high); in CharsConvertToChar16()
/base/update/updater/services/package/pkg_manager/
Dpkg_utils.cpp145 uint32_t high = ReadLE32(buff + sizeof(uint32_t)); in ReadLE64() local
146 uint64_t value = ((static_cast<uint64_t>(high)) << (BYTE_SIZE * sizeof(uint32_t))) | low; in ReadLE64()
/base/compileruntime/js_util_module/container/struct/
Djs_struct.ts148 let high = endIndex - 1;
149 while (low <= high) {
150 let mid = (low + high) >>> 1;
158 high = mid - 1;
242 let high = endIndex - 1;
243 while (low <= high) {
244 let mid = (low + high) >>> 1;
252 high = mid - 1;
/base/powermgr/battery_manager/frameworks/js/napi/
Dbattery_info.cpp207 napi_value high = nullptr; in CreateEnumLevelState() local
214 napi_create_int32(env, (int32_t)BatteryLevel::LEVEL_HIGH, &high); in CreateEnumLevelState()
222 DECLARE_NAPI_STATIC_PROPERTY("HIGH", high), in CreateEnumLevelState()
/base/compileruntime/js_api_module/
DREADME_zh.md401 thatSer.setAttributes("importance", "high");
403 endElement(); // => <h:table importance="high" xmlns:h="http://www.w3.org/TR/html4/">Happy</h:table>
414 '<note importance="high" logged="true">' +
430 '<note importance="high" logged="true">' +
DREADME.md402 thatSer.setAttributes("importance", "high");
404 endElement(); // => <h:table importance="high" xmlns:h="http://www.w3.org/TR/html4/">Happy</h:table>
415 '<note importance="high" logged="true">' +
431 '<note importance="high" logged="true">' +
/base/update/updater/test/unittest/test_data/applypatch/
DTestGZipModeImagePatch.old.gz
/base/user_iam/pin_auth/
DREADME.md23 … input dialog box management API. The input box management API requires a high-level access permis…
/base/security/huks/services/huks_standard/huks_service/main/os_dependency/ca/
Dhks_teec.c81 static inline uint64_t Uint32To64(uint32_t high, uint32_t low) in Uint32To64() argument
83 return ((uint64_t)(high) << 32) + (uint64_t)(low); /* 32 is higher bits */ in Uint32To64()
/base/location/
DREADME.en.md38 …xed WLAN access points \(APs\) and Bluetooth devices around the device. A high density of WLAN APs…
263 …d and can reduce power consumption when your application does not require high location accuracy o…
/base/security/permission/
DREADME.md30 …composer, diverse components, and rich animations. This system applies to high-end refrigerator di…
/base/hiviewdfx/hilog/frameworks/native/
Doutput_p.inl386 /* The strlen performance is high when the string length is greater than 32 */