Home
last modified time | relevance | path

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

12

/linux/lib/
H A Dhexdump.c46 int hex_to_bin(unsigned char ch) in hex_to_bin() function
53 EXPORT_SYMBOL(hex_to_bin);
68 hi = hex_to_bin(*src++); in hex2bin()
71 lo = hex_to_bin(*src++); in hex2bin()
H A Dnet_utils.c23 mac[i] = (hex_to_bin(s[i * 3]) << 4) | hex_to_bin(s[i * 3 + 1]); in mac_pton()
H A Duuid.c114 int hi = hex_to_bin(uuid[si[i] + 0]); in __uuid_parse()
115 int lo = hex_to_bin(uuid[si[i] + 1]); in __uuid_parse()
H A Dbitmap-str.c440 c = hex_to_bin(*end--); in bitmap_get_x32_reverse()
450 if (hex_to_bin(*end--) >= 0) in bitmap_get_x32_reverse()
H A Dstring_helpers.c244 num = digit = hex_to_bin(*q++); in unescape_hex()
248 digit = hex_to_bin(*q); in unescape_hex()
/linux/include/linux/
H A Dhex.h29 extern int hex_to_bin(unsigned char ch);
/linux/drivers/platform/x86/intel/wmi/
H A Dthunderbolt.c32 mode = hex_to_bin(buf[0]); in force_power_store()
/linux/drivers/gpio/
H A Dgpio-macsmc.c81 int low = hex_to_bin(key & 0xff); in macsmc_gpio_nr()
82 int high = hex_to_bin((key >> 8) & 0xff); in macsmc_gpio_nr()
/linux/sound/usb/6fire/
H A Dfirmware.c64 hval = hex_to_bin(data[0]); in usb6fire_fw_ihex_hex()
68 hval = hex_to_bin(data[1]); in usb6fire_fw_ihex_hex()
/linux/drivers/net/wireless/silabs/wfx/
H A Dfwio.c128 keyset_file = (hex_to_bin(data[6]) * 16) | hex_to_bin(data[7]); in get_firmware()
/linux/drivers/scsi/aacraid/
H A Drx.c374 ret = (hex_to_bin(buffer[2]) << 4) + in aac_rx_check_health()
375 hex_to_bin(buffer[3]); in aac_rx_check_health()
/linux/drivers/media/usb/pvrusb2/
H A Dpvrusb2-debugifc.c89 int val = hex_to_bin(*buf++); in debugifc_parse_unsigned_number()
/linux/fs/efivarfs/
H A Dvars.c83 hex_to_bin(var_name[i] & 0xff) < 0) in validate_load_option()
/linux/net/core/
H A Dutils.c97 val = hex_to_bin(c); in xdigit2bin()
/linux/drivers/target/tcm_fc/
H A Dtfc_conf.c77 val = hex_to_bin(c); in ft_parse_wwn()
/linux/drivers/usb/atm/
H A Dspeedtch.c662 atm_dev->esi[i] = (hex_to_bin(mac_str[i * 2]) << 4) + in speedtch_atm_start()
663 hex_to_bin(mac_str[i * 2 + 1]); in speedtch_atm_start()
/linux/drivers/usb/gadget/function/
H A Du_ether.c693 num = hex_to_bin(*str++) << 4; in get_ether_addr()
694 num |= hex_to_bin(*str++); in get_ether_addr()
/linux/drivers/comedi/drivers/
H A Djr3_pci.c306 value = hex_to_bin(data[*pos]); in read_idm_word()
/linux/net/sunrpc/
H A Dcache.c1300 h = hex_to_bin(bp[0]); in qword_get()
1304 l = hex_to_bin(bp[1]); in qword_get()
/linux/security/selinux/
H A Dselinuxfs.c967 c1 = hex_to_bin(*r++); in sel_write_create()
970 c2 = hex_to_bin(*r++); in sel_write_create()
/linux/drivers/nvme/target/
H A Dconfigfs.c638 nguid[i] = (hex_to_bin(p[0]) << 4) | hex_to_bin(p[1]); in nvmet_ns_device_nguid_store()
/linux/drivers/s390/virtio/
H A Dvirtio_ccw.c1486 int value = hex_to_bin(**cp); in pure_hex()
/linux/drivers/net/ethernet/chelsio/cxgb3/
H A Dt3_hw.c687 p->port_type[0] = hex_to_bin(vpd.port0_data[0]); in get_vpd_params()
688 p->port_type[1] = hex_to_bin(vpd.port1_data[0]); in get_vpd_params()
/linux/drivers/scsi/qla2xxx/
H A Dtcm_qla2xxx.c111 value = hex_to_bin(*ns++); in tcm_qla2xxx_npiv_extract_wwn()
/linux/drivers/target/
H A Dtarget_core_spc.c201 int val = hex_to_bin(*p); in spc_gen_naa_6h_vendor_specific()

12