Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 19 of 19) sorted by relevance

/device/google/contexthub/firmware/os/platform/stm32/misc/
Dshowsizes.sh7 hex=$(nm $1 | grep -v "U" | grep "$2" |awk '{print "16#" $1 }')
8 echo $(($hex))
/device/google/cuttlefish/host/commands/modem_simulator/
Dpdu_parser.cpp164 ss << std::setfill('0') << std::setw(2) << std::hex << message_reference; in CreateStatuReport()
224 int PDUParser::Hex2ToByte(const std::string& hex) { in Hex2ToByte() argument
225 int hi = HexCharToInt(hex[0]); in Hex2ToByte()
226 int lo = HexCharToInt(hex[1]); in Hex2ToByte()
Dpdu_parser.h38 int Hex2ToByte(const std::string& hex);
Dcommand_parser.cpp74 ss << std::hex << std::uppercase << value; in GetNextStrDeciToHex()
Dnetwork_service.cpp898 ss << "+CTEC: " << current_network_mode_ << "," << std::hex << preferred_network_mode_; in HandleGetPreferredNetworkType()
/device/linaro/hikey/hifi/xaf/hifi-dpf/core/util/gdbstub/
Dgdbstub.c251 static int hex(unsigned char ch) in hex() function
297 xmitcsum = hex (ch) << 4; in getpacket()
299 xmitcsum += hex (ch); in getpacket()
398 ch = hex(*buf++) << 4; in hex2mem()
399 ch |= hex(*buf++); in hex2mem()
434 hexValue = hex(**ptr); in hexToInt()
/device/generic/goldfish-opengl/android-emu/android/base/
DAndroidSubAllocator.cpp127 ss << "Out of range: " << std::hex << addr << " "; in rangeCheck()
129 std::hex << startAddr << " " << in rangeCheck()
130 std::hex << endAddr; in rangeCheck()
/device/google/contexthub/contexthubhal/
Dnanohubhal.cpp60 os << vendor << ", " << std::hex << std::setw(6) << seqId; in operator <<()
62 os << "#" << std::hex << appId.id; in operator <<()
74 os << "; EVT=" << std::hex << evtId; in dumpBuffer()
76 os << "; EPT=" << std::hex << endpoint; in dumpBuffer()
77 os << "]:" << std::hex; in dumpBuffer()
/device/google/cuttlefish/host/libs/config/
Dkernel_args.cpp43 stream << std::hex << (int) mac[0]; in mac_to_str()
45 stream << ":" << std::hex << (int) mac[i]; in mac_to_str()
/device/google/contexthub/contexthubhal/test/
Dmain.cpp36 os << vendor << ", " << std::hex << std::setw(6) << seqId; in operator <<()
38 os << "#" << std::hex << appId.id; in operator <<()
49 os << "; EVT=" << std::hex << evtId; in dumpBuffer()
50 os << "]:" << std::hex; in dumpBuffer()
/device/google/cuttlefish/host/frontend/gcastv2/https/
DSupport.cpp43 ss << "0x" << std::hex << std::setw(8) << std::setfill('0') << offset << ": "; in hexdump()
DWebSocketHandler.cpp120 << std::hex in handleMessage()
/device/google/cuttlefish/guest/commands/setup_wifi/
Dmain.cpp42 stream >> std::hex >> num; in str_to_mac()
/device/google/bonito/health/
DHealthService.cpp94 ss << "mmc0 " << std::hex << value; in read_emmc_version()
/device/google/crosshatch/health/
DHealthService.cpp91 ss << "ufs " << std::hex << value; in read_ufs_version()
/device/google/cuttlefish/host/frontend/adb_connector/
Dadb_connection_maintainer.cpp34 ss << std::setfill('0') << std::setw(4) << std::hex << user_message.size() in MakeMessage()
/device/google/coral/health/
DHealth.cpp103 ss << "ufs " << std::hex << value; in read_ufs_version()
/device/google/cuttlefish/common/libs/utils/
Dnetwork.cpp197 << ", mac_address = \"" << std::hex; in operator <<()
/device/google/cuttlefish/common/libs/net/
Dnetlink_request_test.cpp43 *result_listener << std::hex << +data[item] << " "; in Dump()