Home
last modified time | relevance | path

Searched refs:is_hex (Results 1 – 21 of 21) sorted by relevance

/external/mesa3d/src/panfrost/midgard/
Dmidgard_print_constant.c37 bool is_sint = false, is_uint = false, is_hex = false; in mir_print_constant_component() local
57 is_hex = true; in mir_print_constant_component()
71 } else if (is_hex) { in mir_print_constant_component()
95 } else if (is_uint || is_hex) { in mir_print_constant_component()
126 } else if (is_uint || is_hex) { in mir_print_constant_component()
/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dparse_number.cpp88 const bool is_hex = text[0] == '0' && (text[1] == 'x' || text[1] == 'X'); in ParseAndEncodeIntegerNumber() local
99 if (!CheckRangeAndIfHexThenSignExtend(decoded_signed, type, is_hex, in ParseAndEncodeIntegerNumber()
102 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
114 if (!CheckRangeAndIfHexThenSignExtend(decoded_bits, type, is_hex, in ParseAndEncodeIntegerNumber()
117 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
Dparse_number.h105 bool is_hex, T* updated_value_for_hex) { in CheckRangeAndIfHexThenSignExtend() argument
140 if (is_hex) { in CheckRangeAndIfHexThenSignExtend()
157 if (is_hex && (value & sign_mask)) in CheckRangeAndIfHexThenSignExtend()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/util/
Dparse_number.cpp88 const bool is_hex = text[0] == '0' && (text[1] == 'x' || text[1] == 'X'); in ParseAndEncodeIntegerNumber() local
99 if (!CheckRangeAndIfHexThenSignExtend(decoded_signed, type, is_hex, in ParseAndEncodeIntegerNumber()
102 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
114 if (!CheckRangeAndIfHexThenSignExtend(decoded_bits, type, is_hex, in ParseAndEncodeIntegerNumber()
117 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
Dparse_number.h105 bool is_hex, T* updated_value_for_hex) { in CheckRangeAndIfHexThenSignExtend() argument
140 if (is_hex) { in CheckRangeAndIfHexThenSignExtend()
157 if (is_hex && (value & sign_mask)) in CheckRangeAndIfHexThenSignExtend()
/external/deqp-deps/SPIRV-Tools/source/util/
Dparse_number.cpp88 const bool is_hex = text[0] == '0' && (text[1] == 'x' || text[1] == 'X'); in ParseAndEncodeIntegerNumber() local
99 if (!CheckRangeAndIfHexThenSignExtend(decoded_signed, type, is_hex, in ParseAndEncodeIntegerNumber()
102 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
114 if (!CheckRangeAndIfHexThenSignExtend(decoded_bits, type, is_hex, in ParseAndEncodeIntegerNumber()
117 << "Integer " << (is_hex ? std::hex : std::dec) << std::showbase in ParseAndEncodeIntegerNumber()
Dparse_number.h105 bool is_hex, T* updated_value_for_hex) { in CheckRangeAndIfHexThenSignExtend() argument
140 if (is_hex) { in CheckRangeAndIfHexThenSignExtend()
157 if (is_hex && (value & sign_mask)) in CheckRangeAndIfHexThenSignExtend()
/external/libxkbcommon/src/xkbcomp/
Dscanner.c33 bool is_float = false, is_hex = false; in number() local
39 is_hex = true; in number()
50 if (is_hex) in number()
/external/perfetto/src/kallsyms/
Dlazy_kernel_symbolizer.cc204 const bool is_hex = (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f'); in CanReadKernelSymbolAddresses() local
205 if (is_hex) { in CanReadKernelSymbolAddresses()
/external/skqp/src/utils/
DSkParse.cpp45 static inline bool is_hex(int c) in is_hex() function
113 if (!is_hex(*str)) in FindHex()
/external/skia/src/utils/
DSkParse.cpp45 static inline bool is_hex(int c) in is_hex() function
113 if (!is_hex(*str)) in FindHex()
/external/dnsmasq/src/
Doption.c657 int i, addrs, digs, is_addr, is_hex, is_dec, is_string, dots; in parse_dhcp_opt() local
714 is_addr = is_hex = is_dec = is_string = 1; in parse_dhcp_opt()
720 is_dec = is_hex = 0; in parse_dhcp_opt()
725 is_dec = is_hex = 0; in parse_dhcp_opt()
729 is_dec = is_hex = 0; in parse_dhcp_opt()
732 is_hex = is_addr = 0; in parse_dhcp_opt()
734 is_dec = is_hex = 0; in parse_dhcp_opt()
744 is_hex = 0; in parse_dhcp_opt()
750 is_string = is_dec = is_hex = 0; in parse_dhcp_opt()
754 if (is_hex && digs > 1) { in parse_dhcp_opt()
/external/rust/crates/gdbstub/src/protocol/commands/
D_vRun.rs39 if args.iter().any(|b| !(is_hex(*b) || *b == b';')) { in from_packet()
/external/rust/crates/gdbstub/src/protocol/common/
Dhex.rs55 pub fn is_hex(c: u8) -> bool { in is_hex() function
/external/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp435 bool is_hex = false; in ParseImmediate() local
443 if (is_hex) { in ParseImmediate()
459 is_hex = true; in ParseImmediate()
/external/libxml2/
Duri.c1597 static int is_hex(char c) { in is_hex() function
1640 if ((len > 2) && (*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) { in xmlURIUnescapeString()
/external/wpa_supplicant_8/src/utils/
Dcommon.h510 int is_hex(const u8 *data, size_t len);
Dcommon.c699 int is_hex(const u8 *data, size_t len) in is_hex() function
/external/rust/crates/regex-syntax/src/ast/
Dparse.rs94 fn is_hex(c: char) -> bool { in is_hex() function
1627 if !is_hex(self.char()) { in parse_hex_digits()
1670 if !is_hex(self.char()) { in parse_hex_brace()
/external/wpa_supplicant_8/src/ap/
Dwps_hostapd.c560 if (is_hex(cred->ssid, cred->ssid_len)) { in hapd_wps_cred_cb()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig.c173 if (is_hex(value, len)) in wpa_config_write_string()