Home
last modified time | relevance | path

Searched full:hex (Results 1 – 25 of 400) sorted by relevance

12345678910>>...16

/linux/scripts/kconfig/tests/transitional/
H A DKconfig36 hex "New hex option"
40 hex
77 hex "New hex option with precedence"
81 hex
/linux/drivers/usb/serial/
H A Dezusb_convert.pl5 # convert an Intel HEX file into a set of C records usable by the firmware
8 # accepts the .hex file(s) on stdin, a basename (to name the initialized
10 # perl ezusb_convert.pl foo <foo.hex >fw_foo.h
18 # len, type, crc are 2-char hex, addr is 4-char hex. type is 00 for
24 my($len) = hex($lenstring);
25 my($addr) = hex($addrstring);
/linux/arch/m68k/ifpsp060/
H A 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/Documentation/misc-devices/
H A Dspear-pcie-gadget.rst44 vendor_id returns programmed vendor id (hex)
45 device_id returns programmed device id(hex)
46 bar0_size: returns size of bar0 in hex.
47 bar0_address returns address of bar0 mapped area in hex.
63 vendor_id write vendor id(hex) to be programmed.
64 device_id write device id(hex) to be programmed.
65 bar0_size write size of bar0 in hex. default bar0 size is 1000 (hex)
67 bar0_address write address of bar0 mapped area in hex. (default mapping of
/linux/arch/arm/
H A 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/tools/testing/selftests/ftrace/test.d/trigger/
H A Dtrigger-hist-mod.tc22 echo "Test histogram with hex modifier"
24 echo 'hist:keys=parent_pid.hex' > events/sched/sched_process_fork/trigger
27 HEX=`printf %x $PID`
28 grep "parent_pid: $HEX" events/sched/sched_process_fork/hist > /dev/null || \
29 fail "hex modifier on sched_process_fork did not work"
/linux/tools/firmware/
H A Dihex2fw.c36 * nybble/hex are little helpers to parse hexadecimal numbers to a byte value
46 static uint8_t hex(const uint8_t *data, uint8_t *crc) in hex() function
65 fprintf(stderr, "usage: ihex2fw [<options>] <src.HEX> <dst.fw>\n"); in usage()
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/scripts/gdb/linux/
H A Dsymbols.py57 hex(vmcore_info))
67 utils.get_vmlinux(), hex(kaslr_offset_phys)))
69 return "KERNELOFFSET=" + hex(kaslr_offset)[2:]
74 return gdb.parse_and_eval("(char *)" + hex(desc_paddr)).string()
105 hex(svc_old_pswa)))
106 gdb.execute("tbreak *" + hex(jump_to_kernel))
199 module_addr = hex(int(module_addr, 0) + plt_offset + plt_size)
223 addr=hex(addr), name=name))
229 obj=debug_obj.name, addr=hex(addr))
244 addr=hex(add
[all...]
H A Dpgtable.py78 {'cr3 binary data': <30} {hex(self.cr3)}
79 {'next entry physical address': <30} {hex(self.next_entry_physical_address)}
146 {'entry address': <30} {hex(self.address)}
147 {'page entry binary data': <30} {hex(self.page_entry_binary_data)}
157 {'entry address': <30} {hex(self.address)}
158 {'page entry binary data': <30} {hex(self.page_entry_binary_data)}
160 {'page physical address': <30} {hex(self.page_physical_address)}
179 {'entry address': <30} {hex(self.address)}
180 {'page entry binary data': <30} {hex(self.page_entry_binary_data)}
181 {'next entry physical address': <30} {hex(sel
[all...]
/linux/drivers/target/
H A Dtarget_core_fabric_lib.c19 #include <linux/hex.h>
46 pr_debug("%s: invalid hex string\n", __func__); in sas_get_pr_transport_id()
74 pr_debug("%s: invalid hex string\n", __func__); in fc_get_pr_transport_id()
94 pr_debug("%s: invalid hex string\n", __func__); in sbp_get_pr_transport_id()
263 char hex[17] = {}; in sas_parse_pr_out_transport_id() local
265 bin2hex(hex, buf + 4, 8); in sas_parse_pr_out_transport_id()
266 snprintf(i_str, TRANSPORT_IQN_LEN, "naa.%s", hex); in sas_parse_pr_out_transport_id()
271 char hex[33] = {}; in srp_parse_pr_out_transport_id() local
273 bin2hex(hex, buf + 8, 16); in srp_parse_pr_out_transport_id()
274 snprintf(i_str, TRANSPORT_IQN_LEN, "0x%s", hex); in srp_parse_pr_out_transport_id()
[all …]
/linux/drivers/acpi/acpica/
H A Dutstrtoul64.c68 * integer width. Supports Decimal, Hex, and Octal strings.
101 * 1) Check for a hex constant. A "0x" prefix indicates base 16. in acpi_ut_strtoul64()
166 * only hex strings are supported.
173 * Examples (both are hex values):
189 * 3) The first non-hex character terminates the conversion and returns
247 * main restriction is that only hex and decimal are supported.
256 * to_integer ("0xABCD") Hex
261 * A hex value must be prefixed by "0x" or it is interpreted as decimal.
268 * 3) Behavior on the first non-hex character is not defined by the ACPI
299 * Only Hex and Decimal are supported, as per the ACPI specification. in acpi_ut_explicit_strtoul64()
[all …]
/linux/drivers/media/usb/as102/
H A Das102_fw.c16 static const char as102_st_fw1[] = "as102_data1_st.hex";
17 static const char as102_st_fw2[] = "as102_data2_st.hex";
18 static const char as102_dt_fw1[] = "as102_data1_dt.hex";
19 static const char as102_dt_fw2[] = "as102_data2_dt.hex";
38 * Parse INTEL HEX firmware file to extract address and data.
107 /* parse intel hex line */ in as102_firmware_upload()
/linux/Documentation/ABI/testing/
H A 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.
15 a command. Hex reply bytes will be returned, *whether or not* they came from
H A Dconfigfs-usb-gadget-rndis16 class USB interface class, default is 02 (hex)
17 subclass USB interface subclass, default is 06 (hex)
18 protocol USB interface protocol, default is 00 (hex)
H A Dconfigfs-spear-pcie-gadget26 vendor_id used to write and read vendor id (hex)
27 device_id used to write and read device id (hex)
29 bar0_address used to write and read bar0 mapped area in hex.
/linux/tools/perf/tests/
H A Dapi-io.c140 __u64 hex; in do_test_get_hex() local
145 ch = io__get_hex(&io, &hex); in do_test_get_hex()
146 EXPECT_EQUAL64(hex, val1); in do_test_get_hex()
149 ch = io__get_hex(&io, &hex); in do_test_get_hex()
150 EXPECT_EQUAL64(hex, val2); in do_test_get_hex()
153 ch = io__get_hex(&io, &hex); in do_test_get_hex()
154 EXPECT_EQUAL64(hex, val3); in do_test_get_hex()
/linux/arch/powerpc/
H A DKconfig.debug306 hex "vterm number to use with early debug HVSI"
314 hex "vterm number to use with OPAL early debug"
325 hex "Low 32 bits of early debug UART physical address"
333 hex "EPRN of early debug UART physical address"
338 hex "CPM UART early debug transmit descriptor address"
350 hex "Early debug Serial 16550 physical address"
369 hex
/linux/drivers/bus/
H A Dmoxtet.c11 #include <linux/hex.h>
469 u8 hex[sizeof(bin) * 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()
494 u8 hex[TURRIS_MOX_MAX_MODULES * 2 + 1]; in output_read() local
495 u8 *p = hex; in output_read()
507 return simple_read_from_buffer(buf, len, ppos, hex, p - hex); in output_read()
515 u8 hex[sizeof(bin) * 2 + 1]; in output_write() local
523 res = simple_write_to_buffer(hex, sizeof(hex), &dummy, buf, len); in output_write()
[all …]
/linux/arch/mips/kernel/
H A Dcps-vec-ns16550.S65 * _mips_cps_putx4 - write a 4b hex value to the UART
82 * _mips_cps_putx8 - write an 8b hex value to the UART
99 * _mips_cps_putx16 - write a 16b hex value to the UART
116 * _mips_cps_putx32 - write a 32b hex value to the UART
135 * _mips_cps_putx64 - write a 64b hex value to the UART
/linux/drivers/mfd/
H A Djanz-cmodio.c48 /* hex switch position */
49 u8 hex; member
157 return sysfs_emit(buf, "%x\n", priv->hex); in modulbus_number_show()
210 /* Read the hex switch on the carrier board */ in cmodio_pci_probe()
211 priv->hex = ioread8(&priv->ctrl->int_enable); in cmodio_pci_probe()
213 /* Add the MODULbus number (hex switch value) to the device's sysfs */ in cmodio_pci_probe()
/linux/arch/nios2/
H A DKconfig127 hex "Link address offset for booting"
153 hex "Virtual base address of the kernel MMU region " if NIOS2_KERNEL_MMU_REGION_BASE_BOOL
167 hex "Virtual base address of the kernel region " if NIOS2_KERNEL_REGION_BASE_BOOL
179 hex "Virtual base address of the I/O region" if NIOS2_IO_REGION_BASE_BOOL
/linux/drivers/net/wireless/intel/iwlwifi/mld/
H A Dmld.c145 /* Please keep this array *SORTED* by hex value.
192 /* Please keep this array *SORTED* by hex value.
206 /* Please keep this array *SORTED* by hex value.
218 /* Please keep this array *SORTED* by hex value.
226 /* Please keep this array *SORTED* by hex value.
254 /* Please keep this array *SORTED* by hex value.
275 /* Please keep this array *SORTED* by hex value.
282 /* Please keep this array *SORTED* by hex value.
290 /* Please keep this array *SORTED* by hex value.
302 /* Please keep this array *SORTED* by hex value.
[all …]
/linux/arch/microblaze/
H A DKconfig165 hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
169 hex "Microblaze reset vector address setup"
191 hex "Virtual address of kernel base" if KERNEL_START_BOOL
205 hex "Size of user task space" if TASK_SIZE_BOOL
/linux/tools/perf/util/
H A Ddemangle-ocaml.c57 /* "$xx" is a hex-encoded character */ in ocaml_demangle_sym()
58 result[j++] = (hex(sym[i + 1]) << 4) | hex(sym[i + 2]); in ocaml_demangle_sym()
/linux/Documentation/devicetree/bindings/leds/
H A Dleds-el15203000.txt9 Vending area LED encoded with symbol 'V' (hex code 0x56).
13 encoded with symbol 'S' (hex code 0x53). Supports blinking breathing pattern.
15 Water Pipe LED encoded with symbol 'P' (hex code 0x50) and

12345678910>>...16