Searched refs:hex (Results 1 - 25 of 56) sorted by last modified time

123

/linux-master/tools/net/ynl/lib/
H A Dynl.py822 elif display_hint == 'hex':
823 formatted = bytes.hex(raw, ' ')
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/steering/
H A Ddr_dbg.c198 dr_dump_hex_print(char hex[DR_HEX_SIZE], char *src, u32 size) argument
203 bin2hex(hex, src, size);
204 hex[2 * size] = 0; /* NULL-terminate */
/linux-master/scripts/kconfig/tests/
H A Dconftest.py204 extra_env = {'KCONFIG_SEED': hex(seed)}
/linux-master/arch/powerpc/kernel/
H A Dsetup-common.c845 void ppc_printk_progress(char *s, unsigned short hex) argument
H A Drtas.c860 void rtas_progress(char *s, unsigned short hex) argument
897 /* use hex display if available */
899 rtas_call(set_indicator, 3, 1, NULL, 6, 0, hex);
/linux-master/kernel/trace/
H A Dtrace.c4316 enum print_line_t ret = event->funcs->hex(iter, 0, event);
5644 "\t .hex display a number as a hex value\n"
H A Dtrace_output.c206 * trace_print_hex_seq - print buffer as hex sequence
210 * @concatenate: Print @buf as single hex string or with spacing
212 * Prints the passed buffer as a hex sequence either as a whole,
213 * single hex string if @concatenate is true or with spacing after
769 if (event->funcs->hex == NULL)
770 event->funcs->hex = trace_nop_print;
1063 .hex = trace_fn_hex,
1203 .hex = trace_ctx_hex,
1215 .hex = trace_wake_hex,
/linux-master/include/linux/
H A Dtrace_events.h150 trace_print_func hex; member in struct:trace_event_functions
H A Dkernel.h24 #include <linux/hex.h>
/linux-master/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c312 define_event_symbols(event, ev_name, args->hex.field);
313 define_event_symbols(event, ev_name, args->hex.size);
H A Dtrace-event-perl.c225 define_event_symbols(event, ev_name, args->hex.field);
226 define_event_symbols(event, ev_name, args->hex.size);
/linux-master/tools/perf/pmu-events/
H A Djevents.py90 \05). The code adjusts for \000 but not properly for all octal, hex
206 return str(x) if x >= 0 and x < 10 else hex(x)
/linux-master/drivers/gpu/drm/amd/amdkfd/
H A Dcwsr_trap_handler_gfx10.asm27 * sp3 nv1x.sp3 -hex nv1x.hex
31 * sp3 gfx10.sp3 -hex gfx10.hex
35 * sp3 gfx11.sp3 -hex gfx11.hex
H A Dcwsr_trap_handler_gfx9.asm27 * sp3 gfx9.sp3 -hex gfx9.hex
31 * sp3 arcturus.sp3 -hex arcturus.hex
35 * sp3 aldebaran.sp3 -hex aldebaran.hex
39 * sp3 gc_9_4_3.sp3 -hex gc_9_4_3.hex
/linux-master/tools/net/ynl/
H A Dcli.py15 return bytes.hex(obj)
/linux-master/drivers/net/wireless/realtek/rtw88/
H A Dphy.c1135 static u8 tbl_to_dec_pwr_by_rate(struct rtw_dev *rtwdev, u32 hex, u8 i) argument
1138 return bcd_to_dec_pwr_by_rate(hex, i);
1140 return (hex >> (i * 8)) & 0xFF;
/linux-master/scripts/gdb/linux/
H A Dsymbols.py129 module_addr = hex(int(module_addr, 0) + plt_offset + plt_size)
/linux-master/arch/powerpc/include/asm/
H A Drtas.h441 void rtas_progress(char *s, unsigned short hex);
/linux-master/lib/
H A Dseq_buf.c20 #include <linux/hex.h>
253 * seq_buf_putmem_hex - write raw memory into the buffer in ASCII hex
255 * @mem: The raw memory to write its hex ASCII representation of
260 * in hex characters.
267 unsigned char hex[HEX_CHARS]; local
283 hex[j++] = hex_asc_hi(data[i]);
284 hex[j++] = hex_asc_lo(data[i]);
290 hex[j++] = ' ';
292 seq_buf_putmem(s, hex, j);
379 * seq_buf_hex_dump - print formatted hex dum
[all...]
/linux-master/tools/perf/tests/
H A Dcode-reading.c55 /* Get 2 hex digits */
64 **buf = (hex(c1) << 4) | hex(c2);
/linux-master/tools/perf/
H A Dbuiltin-inject.c706 dso->bid.data[ix] = (hex(build_id[2 * ix]) << 4 |
707 hex(build_id[2 * ix + 1]));
/linux-master/tools/lib/api/
H A Dio.h90 /* Read a hexadecimal value with no 0x prefix into the out argument hex. If the
95 static inline int io__get_hex(struct io *io, __u64 *hex) argument
99 *hex = 0;
106 *hex = (*hex << 4) | (ch - '0');
108 *hex = (*hex << 4) | (ch - 'a' + 10);
110 *hex = (*hex << 4) | (ch - 'A' + 10);
/linux-master/drivers/bus/
H A Dmoxtet.c468 u8 hex[sizeof(bin) * 2 + 1]; local
476 bin2hex(hex, bin, n);
478 hex[2*n] = '\n';
480 return simple_read_from_buffer(buf, len, ppos, hex, 2*n + 1);
494 u8 hex[TURRIS_MOX_MAX_MODULES * 2 + 1]; local
495 u8 *p = hex;
507 return simple_read_from_buffer(buf, len, ppos, hex, p - hex);
515 u8 hex[sizeof(bin) * 2 + 1]; local
523 res = simple_write_to_buffer(hex, sizeo
[all...]
/linux-master/net/wireless/
H A DMakefile28 $(obj)/shipped-certs.c: $(sort $(wildcard $(srctree)/$(src)/certs/*.hex))
/linux-master/Documentation/driver-api/media/drivers/ccs/
H A Dmk-ccs-regs62 my $addr = hex $_[0];
314 $num = hex $num if $num =~ /0x/i;
324 "elsize" => $elsize =~ /^0x/ ? hex $elsize : $elsize,

Completed in 324 milliseconds

123