Home
last modified time | relevance | path

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

12345678

/Linux-v5.4/tools/firmware/
Dihex2fw.c46 static uint8_t hex(const uint8_t *data, uint8_t *crc) in hex() function
157 len = hex(data + i, &crc); i += 2; in process_ihex()
160 len += hex(data + i, &crc); i += 2; in process_ihex()
178 record->addr = hex(data + i, &crc) << 8; i += 2; in process_ihex()
179 record->addr |= hex(data + i, &crc); i += 2; in process_ihex()
180 type = hex(data + i, &crc); i += 2; in process_ihex()
183 record->data[j] = hex(data + i, &crc); in process_ihex()
186 crcbyte = hex(data + i, &crc); i += 2; in process_ihex()
/Linux-v5.4/arch/m68k/ifpsp060/
DREADME32 fpsp.sa Full FP Kernel Module - hex image
36 pfpsp.sa Partial FP Kernel Module - hex image
39 fplsp.sa FP Library Module - hex image
43 isp.sa Integer Unimplemented Kernel Module - hex image
47 ilsp.sa Integer Unimplemented Library Module - hex image
58 was connected properly; hex image
62 connected properly; hex image
/Linux-v5.4/Documentation/misc-devices/
Dspear-pcie-gadget.txt37 vendor_id :returns programmed vendor id (hex)
38 device_id :returns programmed device id(hex)
39 bar0_size: :returns size of bar0 in hex.
40 bar0_address :returns address of bar0 mapped area in hex.
53 vendor_id :write vendor id(hex) to be programmed.
54 device_id :write device id(hex) to be programmed.
55 bar0_size :write size of bar0 in hex. default bar0 size is 1000 (hex)
57 bar0_address :write address of bar0 mapped area in hex. (default mapping of
/Linux-v5.4/Documentation/ABI/testing/
Dconfigfs-usb-gadget-rndis15 class - USB interface class, default is 02 (hex)
16 subclass - USB interface subclass, default is 06 (hex)
17 protocol - USB interface protocol, default is 00 (hex)
Dconfigfs-spear-pcie-gadget25 vendor_id ... used to write and read vendor id (hex)
26 device_id ... used to write and read device id (hex)
28 bar0_address ... used to write and read bar0 mapped area in hex.
Dsysfs-kernel-vmcoreinfo9 First value contains physical address of note in hex and
10 second value contains the size of note in hex. This ELF
Ddebugfs-olpc11 CC is the (hex) command, N is the count of expected reply bytes, and A A A A
12 are optional (hex) arguments.
Dsysfs-class-uwb_rc54 hex octets.
80 The EUI-48, in colon-separated hex octets, for this
117 hex octets.
125 The EUI-48 of this device in colon separated hex
134 space separated hex octets with one IE per line.
Dsysfs-wusb_cbaf58 hex octets.
91 The device's CDID formatted as 16 space-separated hex
99 Write 16 space-separated random, hex octets to
Dsysfs-memory-page-offline7 written into this file. Input is a hex number specifying the
29 address written into this file. Input is a hex number
/Linux-v5.4/arch/arm/
DKconfig-nommu14 hex '(S)DRAM Base Address' if SET_MEM_PARAM
18 hex '(S)DRAM SIZE' if SET_MEM_PARAM
22 hex 'FLASH Base Address' if SET_MEM_PARAM
27 hex 'FLASH Size' if SET_MEM_PARAM
32 hex 'Hard wire the processor ID'
/Linux-v5.4/lib/
Dseq_buf.c224 unsigned char hex[HEX_CHARS]; local
238 hex[j++] = hex_asc_hi(data[i]);
239 hex[j++] = hex_asc_lo(data[i]);
246 hex[j++] = ' ';
248 seq_buf_putmem(s, hex, j);
/Linux-v5.4/drivers/bus/
Dmoxtet.c469 u8 hex[sizeof(buf) * 2 + 1]; in input_read() local
477 bin2hex(hex, bin, n); in input_read()
479 hex[2*n] = '\n'; in input_read()
481 return simple_read_from_buffer(buf, len, ppos, hex, 2*n + 1); in input_read()
495 u8 hex[TURRIS_MOX_MAX_MODULES * 2 + 1]; in output_read() local
496 u8 *p = hex; in output_read()
508 return simple_read_from_buffer(buf, len, ppos, hex, p - hex); in output_read()
516 u8 hex[sizeof(bin) * 2 + 1]; in output_write() local
524 res = simple_write_to_buffer(hex, sizeof(hex), &dummy, buf, len); in output_write()
528 if (len % 2 == 1 && hex[len - 1] != '\n') in output_write()
[all …]
/Linux-v5.4/drivers/usb/serial/
DMakefile-keyspan_pda_fw12 %.hex: %.asm
16 %_fw.h: %.hex ezusb_convert.pl
/Linux-v5.4/Documentation/usb/
Dmisc_usbsevseg.rst26 The device can accept "text" either in raw, hex, or ascii textmode.
28 hex expects a value between 0-15 per character,
44 echo -ne "\x01\x02\x03" > /sys/bus/usb/.../text (hex)
/Linux-v5.4/Documentation/ABI/stable/
Dsysfs-firmware-opal-dump15 id 0xYYYY (in hex). The name of this
25 in hex (e.g. '0x01')
28 in hex and a description of the dump type
/Linux-v5.4/arch/nios2/platform/
DKconfig.platform7 hex "Memory base address"
32 hex "DTB Address"
127 hex "D-Cache size" if CUSTOM_CACHE_SETTINGS
134 hex "D-Cache line size" if CUSTOM_CACHE_SETTINGS
141 hex "I-Cache size" if CUSTOM_CACHE_SETTINGS
/Linux-v5.4/drivers/mfd/
Djanz-cmodio.c49 u8 hex; member
157 return snprintf(buf, PAGE_SIZE, "%x\n", priv->hex); in mbus_show()
211 priv->hex = ioread8(&priv->ctrl->int_enable); in cmodio_pci_probe()
/Linux-v5.4/drivers/media/usb/rainshadow-cec/
Drainshadow-cec.c285 char hex[3]; in rain_cec_adap_transmit() local
290 snprintf(hex, sizeof(hex), "%02x", msg->msg[i]); in rain_cec_adap_transmit()
291 strlcat(cmd, hex, sizeof(cmd)); in rain_cec_adap_transmit()
/Linux-v5.4/Documentation/security/keys/
Dtrusted-encrypted.rst11 in hex ascii for convenience, and are integrity verified.
56 keyhandle= ascii hex value of sealing key
59 keyauth= ascii hex auth for sealing key default 0x00...i
61 blobauth= ascii hex auth for sealed data default 0x00...
63 pcrinfo= ascii hex of PCR_INFO or PCR_INFO_LONG (no default)
77 "keyctl print" returns an ascii hex copy of the sealed key, which is in standard
/Linux-v5.4/scripts/
Dleaking_addresses.pl339 my $hex = hex($match);
343 return ($hex >= $region_min and $hex <= $region_max);
/Linux-v5.4/arch/m68k/
DKconfig.machine335 hex "Address of the base of RAM"
344 hex "Size of RAM (in bytes), or 0 for automatic"
352 hex "Address of the base of system vectors"
361 hex "Address of the MBAR (internal peripherals)"
372 hex "Address of the IPSBAR (internal peripherals)"
383 hex "Address of the base of kernel code"
405 hex "Address of the base of ROM device"
414 hex "Address of the base of the ROM vectors"
423 hex "Address of the base of system image in ROM"
431 hex "Size of the ROM device"
/Linux-v5.4/arch/nios2/
DKconfig130 hex "Link address offset for booting"
156 hex "Virtual base address of the kernel MMU region " if NIOS2_KERNEL_MMU_REGION_BASE_BOOL
170 hex "Virtual base address of the kernel region " if NIOS2_KERNEL_REGION_BASE_BOOL
182 hex "Virtual base address of the I/O region" if NIOS2_IO_REGION_BASE_BOOL
/Linux-v5.4/arch/powerpc/platforms/cell/
Dsetup.c76 static void cell_progress(char *s, unsigned short hex) in cell_progress() argument
78 printk("*** %04x : %s\n", hex, s ? s : ""); in cell_progress()
/Linux-v5.4/drivers/isdn/capi/
Dcapiutil.c610 unsigned hex = 0; in printstructlen() local
616 if (hex) in printstructlen()
619 hex = 0; in printstructlen()
621 if (!hex) in printstructlen()
625 hex = 1; in printstructlen()
627 if (hex) in printstructlen()

12345678