/base/security/dlp_permission_service/frameworks/common/src/ |
H A D | hex_string.cpp | 46 hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1] = HexToChar(byte[i] & 0x0F); // get low four bits in ByteToHexString() 79 uint8_t low = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1]); in HexStringToByte() local 80 if (high == MAX_HEX || low == MAX_HEX) { // max hex must < 16 in HexStringToByte() 84 byte[i] |= low; // Set the low nibble in HexStringToByte()
|
/base/global/i18n_lite/frameworks/i18n/src/ |
H A D | data_resource.cpp | 127 int32_t low = 0;
in BinarySearchString() local 129 while (low <= high) {
in BinarySearchString() 130 int32_t mid = low + (high - low) / 2;
in BinarySearchString() 138 low = mid + 1;
in BinarySearchString() 448 int32_t low = 0;
in BinarySearchLocale() local 450 while (low <= high) {
in BinarySearchLocale() 451 int32_t mid = low + (high - low) / 2;
in BinarySearchLocale() 459 low in BinarySearchLocale() [all...] |
/base/security/device_auth/common_lib/impl/src/ |
H A D | string_util.c | 47 hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1] = HexToChar(byte[i] & 0x0F); /* get low four bits */
in ByteToHexString() 80 uint8_t low = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1]);
in HexStringToByte() local 81 if (high == OUT_OF_HEX || low == OUT_OF_HEX) {
in HexStringToByte() 85 byte[i] |= low; /* Set the low nibble */
in HexStringToByte()
|
/base/telephony/core_service/services/sim/src/ |
H A D | sim_utils.cpp | 133 char16_t low = charBytes[i + 1]; in CharsConvertToChar16() local 135 ret[id] = (char16_t)((high << BYTE_LENGTH) | low); in CharsConvertToChar16() 137 ret[id] = (char16_t)((low << BYTE_LENGTH) | high); in CharsConvertToChar16() 167 uint8_t low = 0; in Gsm7bitConvertToString() local 180 low = (bytes[pos] & (unsigned char)(0xFF << (BYTE_LENGTH - left))) >> (BYTE_LENGTH - left); in Gsm7bitConvertToString() 182 str.push_back(high | low); in Gsm7bitConvertToString()
|
/base/security/security_guard/test/unittest/mock/rdb/ |
H A D | rdb_predicates.h | 43 virtual AbsPredicates *Between(std::string field, std::string low, std::string high) {return nullptr;}; in Between() argument 44 virtual AbsPredicates *NotBetween(std::string field, std::string low, std::string high) {return nullptr;}; in NotBetween() argument 82 virtual AbsPredicates *Between(std::string field, std::string low, std::string high) {return nullptr;}; in Between() argument 83 virtual AbsPredicates *NotBetween(std::string field, std::string low, std::string high) {return nullptr;}; in NotBetween() argument
|
/base/customization/enterprise_device_management/services/edm_plugin/src/network/rule/ |
H A D | domain_chain_rule.cpp | 138 uint8_t low = CharToHex(second); in CharToHex() local 139 return (high << FOUR_BIT) | low; in CharToHex()
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/ |
H A D | arm_exidx.cpp | 155 uintptr_t low = 0; in SearchEntry() local 157 while (low < high) { in SearchEntry() 158 uintptr_t cur = (low + high) / 2; // 2 : binary search divided parameter in SearchEntry() 173 low = cur + 1; in SearchEntry()
|
H A D | dwarf_section.cpp | 73 uintptr_t low = 0;
in SearchEntry() local 76 while (low < high) {
in SearchEntry() 77 uintptr_t cur = (low + high) / 2; // 2 : binary search divided parameter
in SearchEntry() 94 low = cur + 1;
in SearchEntry()
|
/base/notification/distributed_notification_service/services/ans/src/common/ |
H A D | aes_gcm_helper.cpp | 77 unsigned char low = HexChar2Byte(hex[i + 1]); in Hex2Byte() local 78 bytes.push_back(static_cast<char>((high << OFFSET) | low)); in Hex2Byte()
|
/base/update/updater/services/package/pkg_manager/ |
H A D | pkg_utils.cpp | 263 uint32_t low = ReadLE32(buff); in GetFileSize() local 265 uint64_t value = ((static_cast<uint64_t>(high)) << (BYTE_SIZE * sizeof(uint32_t))) | low; in GetFileSize()
|
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/ |
H A D | cert_manager_auth_mgr.c | 66 hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1] = HexToChar(byte[i] & 0x0F); /* get low four bits */ in ByteToHexString() 83 uint8_t low = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1]); in HexStringToByte() local 84 if ((high == OUT_OF_HEX) || (low == OUT_OF_HEX)) { in HexStringToByte() 88 byte[i] |= low; /* Set the low nibble */ in HexStringToByte()
|
/base/telephony/sms_mms/services/sms/ |
H A D | gsm_cb_codec.cpp | 293 uint8_t low = iosData; in DecodeIos639Dcs() local 296 if (hight && low) { in DecodeIos639Dcs() 299 dcs.iso639Lang[HEX_VALUE_01] |= (low & HEX_VALUE_3F) << HEX_VALUE_01; in DecodeIos639Dcs()
|
/base/update/sys_installer/services/module_update/util/src/ |
H A D | module_utils.cpp | 182 uint16_t low = ReadLE16(buff); in ReadLE32() local 184 uint32_t value = ((static_cast<uint32_t>(high)) << (BYTE_SIZE * sizeof(uint16_t))) | low; in ReadLE32()
|
/base/powermgr/battery_manager/frameworks/napi/src/ |
H A D | battery_info.cpp | 338 napi_value low = nullptr;
in CreateEnumLevelState() local 346 napi_create_int32(env, (int32_t)BatteryCapacityLevel::LEVEL_LOW, &low);
in CreateEnumLevelState() 355 DECLARE_NAPI_STATIC_PROPERTY("LEVEL_LOW", low),
in CreateEnumLevelState()
|
/base/notification/eventhandler/frameworks/napi/src/ |
H A D | events_emitter.cpp | 663 napi_value low = nullptr; in CreateEnumEventPriority() local 668 napi_create_uint32(env, (uint32_t)Priority::LOW, &low); in CreateEnumEventPriority() 674 DECLARE_NAPI_STATIC_PROPERTY("LOW", low), in CreateEnumEventPriority()
|
/base/security/huks/services/huks_standard/huks_service/main/os_dependency/ca/ |
H A D | hks_teec.c | 82 static inline uint64_t Uint32To64(uint32_t high, uint32_t low)
in Uint32To64() argument 84 return ((uint64_t)(high) << 32) + (uint64_t)(low); /* 32 is higher bits */
in Uint32To64()
|
/base/startup/init/services/modules/seccomp/scripts/ |
H A D | generate_code_from_policy.py | 372 low = number & 0xffffffff 397 low = number & 0xffffffff 459 #low 4 bytes 659 #low 4 bytes
|