Home
last modified time | relevance | path

Searched refs:hex_to_bin (Results 1 – 25 of 40) sorted by relevance

12

/Linux-v4.19/lib/
Dnet_utils.c23 mac[i] = (hex_to_bin(s[i * 3]) << 4) | hex_to_bin(s[i * 3 + 1]); in mac_pton()
Dhexdump.c29 int hex_to_bin(char ch) in hex_to_bin() function
38 EXPORT_SYMBOL(hex_to_bin);
51 int hi = hex_to_bin(*src++); in hex2bin()
52 int lo = hex_to_bin(*src++); in hex2bin()
Duuid.c112 int hi = hex_to_bin(uuid[si[i] + 0]); in __uuid_parse()
113 int lo = hex_to_bin(uuid[si[i] + 1]); in __uuid_parse()
Dstring_helpers.c188 num = digit = hex_to_bin(*q++); in unescape_hex()
192 digit = hex_to_bin(*q); in unescape_hex()
Dbitmap.c411 chunk = (chunk << 4) | hex_to_bin(c); in __bitmap_parse()
/Linux-v4.19/kernel/debug/
Dgdbstub.c125 xmitcsum = hex_to_bin(gdbstub_read_wait()) << 4; in get_packet()
126 xmitcsum += hex_to_bin(gdbstub_read_wait()); in get_packet()
282 *tmp_raw = hex_to_bin(*tmp_hex--); in kgdb_hex2mem()
283 *tmp_raw |= hex_to_bin(*tmp_hex--) << 4; in kgdb_hex2mem()
306 hex_val = hex_to_bin(**ptr); in kgdb_hex2long()
629 if (hex_to_bin(ptr[i]) >= 0) in gdb_cmd_reg_set()
/Linux-v4.19/drivers/platform/x86/
Dintel-wmi-thunderbolt.c40 mode = hex_to_bin(buf[0]); in force_power_store()
/Linux-v4.19/sound/usb/6fire/
Dfirmware.c68 hval = hex_to_bin(data[0]); in usb6fire_fw_ihex_hex()
72 hval = hex_to_bin(data[1]); in usb6fire_fw_ihex_hex()
/Linux-v4.19/drivers/nvdimm/
Dcore.c239 uuid[i] = (hex_to_bin(str[0]) << 4) | hex_to_bin(str[1]); in nd_uuid_parse()
/Linux-v4.19/drivers/net/can/
Dslcan.c194 tmp = hex_to_bin(*cmd++); in slc_bump()
198 tmp = hex_to_bin(*cmd++); in slc_bump()
/Linux-v4.19/drivers/scsi/aacraid/
Drx.c379 ret = (hex_to_bin(buffer[2]) << 4) + in aac_rx_check_health()
380 hex_to_bin(buffer[3]); in aac_rx_check_health()
/Linux-v4.19/drivers/ptp/
Dptp_pch.c328 tmp = hex_to_bin(addr[i * 3]); in pch_set_station_address()
335 tmp = hex_to_bin(addr[(i * 3) + 1]); in pch_set_station_address()
/Linux-v4.19/drivers/s390/cio/
Dblacklist.c86 int value = hex_to_bin(**cp); in pure_hex()
/Linux-v4.19/drivers/media/usb/pvrusb2/
Dpvrusb2-debugifc.c104 int val = hex_to_bin(*buf++); in debugifc_parse_unsigned_number()
/Linux-v4.19/drivers/media/usb/rainshadow-cec/
Drainshadow-cec.c89 stat = hex_to_bin(cmd[0]); in rain_process_msg()
/Linux-v4.19/net/core/
Dutils.c101 val = hex_to_bin(c); in xdigit2bin()
/Linux-v4.19/drivers/usb/atm/
Dspeedtch.c660 atm_dev->esi[i] = (hex_to_bin(mac_str[i * 2]) << 4) + in speedtch_atm_start()
661 hex_to_bin(mac_str[i * 2 + 1]); in speedtch_atm_start()
/Linux-v4.19/drivers/target/tcm_fc/
Dtfc_conf.c85 val = hex_to_bin(c); in ft_parse_wwn()
/Linux-v4.19/drivers/usb/gadget/function/
Du_ether.c699 num = hex_to_bin(*str++) << 4; in get_ether_addr()
700 num |= hex_to_bin(*str++); in get_ether_addr()
/Linux-v4.19/drivers/nvme/target/
Dconfigfs.c404 nguid[i] = (hex_to_bin(p[0]) << 4) | hex_to_bin(p[1]); in nvmet_ns_device_nguid_store()
/Linux-v4.19/drivers/firmware/efi/
Dvars.c108 hex_to_bin(var_name[i] & 0xff) < 0) in validate_load_option()
/Linux-v4.19/drivers/staging/comedi/drivers/
Djr3_pci.c320 value = hex_to_bin(data[*pos]); in read_idm_word()
/Linux-v4.19/include/linux/
Dkernel.h633 extern int hex_to_bin(char ch);
/Linux-v4.19/net/sunrpc/
Dcache.c1243 h = hex_to_bin(bp[0]); in qword_get()
1247 l = hex_to_bin(bp[1]); in qword_get()
/Linux-v4.19/drivers/target/
Dtarget_core_spc.c154 int val = hex_to_bin(*p); in spc_parse_naa_6h_vendor_specific()

12