/linux-4.4.14/lib/ |
D | test-hexdump.c | 46 bool ascii) in test_hexdump() argument 56 hex_dump_to_buffer(data_b, l, rs, gs, real, sizeof(real), ascii); in test_hexdump() 91 if (ascii) { in test_hexdump() 106 static void __init test_hexdump_set(int rowsize, bool ascii) in test_hexdump_set() argument 111 test_hexdump(len, rowsize, 4, ascii); in test_hexdump_set() 112 test_hexdump(len, rowsize, 2, ascii); in test_hexdump_set() 113 test_hexdump(len, rowsize, 8, ascii); in test_hexdump_set() 114 test_hexdump(len, rowsize, 1, ascii); in test_hexdump_set() 117 static void __init test_hexdump_overflow(bool ascii) in test_hexdump_overflow() argument 127 r = hex_dump_to_buffer(data_b, 1, 16, 1, buf, l, ascii); in test_hexdump_overflow() [all …]
|
D | hexdump.c | 109 char *linebuf, size_t linebuflen, bool ascii) in hex_dump_to_buffer() argument 186 if (!ascii) in hex_dump_to_buffer() 206 return ascii ? ascii_column + len : (groupsize * 2 + 1) * ngroups - 1; in hex_dump_to_buffer() 244 const void *buf, size_t len, bool ascii) in print_hex_dump() argument 258 linebuf, sizeof(linebuf), ascii); in print_hex_dump()
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | tbxfload.c | 123 !ACPI_COMPARE_NAME(table->signature.ascii, ACPI_SIG_DSDT) || in ACPI_EXPORT_SYMBOL_INIT() 176 (!ACPI_COMPARE_NAME(table->signature.ascii, ACPI_SIG_SSDT) in ACPI_EXPORT_SYMBOL_INIT() 177 && !ACPI_COMPARE_NAME(table->signature.ascii, in ACPI_EXPORT_SYMBOL_INIT() 179 && !ACPI_COMPARE_NAME(table->signature.ascii, in ACPI_EXPORT_SYMBOL_INIT() 192 table->signature.ascii, in ACPI_EXPORT_SYMBOL_INIT() 198 table->signature.ascii, in ACPI_EXPORT_SYMBOL_INIT() 406 (acpi_gbl_root_table_list.tables[i].signature.ascii, in ACPI_EXPORT_SYMBOL()
|
D | tbinstal.c | 272 new_table_desc.signature.ascii, in acpi_tb_install_standard_table() 296 if ((new_table_desc.signature.ascii[0] != 0x00) && in acpi_tb_install_standard_table() 299 && (strncmp(new_table_desc.signature.ascii, "OEM", 3))) { in acpi_tb_install_standard_table() 305 ascii) ? in acpi_tb_install_standard_table() 307 ascii : "????", in acpi_tb_install_standard_table() 437 old_table_desc->signature.ascii, in acpi_tb_override_table()
|
D | dbnames.c | 230 ascii, subtree_entry); in acpi_db_dump_namespace() 339 obj_handle)->name.ascii[i])) { in acpi_db_walk_and_match_name() 436 predefined = acpi_ut_match_predefined_method(node->name.ascii); in acpi_db_walk_for_predefined_names() 526 node->name.ascii, node->type); in acpi_db_walk_for_object_counts() 712 if (!acpi_ut_valid_acpi_name(node->name.ascii)) { in acpi_db_integrity_walk()
|
D | utdecode.c | 296 acpi_ut_repair_name(node->name.ascii); in acpi_ut_get_node_name() 300 return (node->name.ascii); in acpi_ut_get_node_name()
|
D | tbdata.c | 80 ACPI_MOVE_32_TO_32(table_desc->signature.ascii, table->signature); in acpi_tb_init_table_descriptor() 406 ascii) ? in acpi_tb_verify_temp_table() 407 table_desc->signature.ascii : "????", in acpi_tb_verify_temp_table()
|
D | dsmethod.c | 187 walk_state->method_node->name.ascii, in acpi_ds_detect_named_opcodes() 567 method_node->name.ascii, next_walk_state)); in acpi_ds_call_control_method() 805 ascii)); in acpi_ds_terminate_control_method()
|
D | dbtest.c | 343 acpi_ut_get_type_name(node->type), node->name.ascii); in acpi_db_test_one_object() 371 region_obj->region.node->name.ascii); in acpi_db_test_one_object() 947 predefined = acpi_ut_match_predefined_method(node->name.ascii); in acpi_db_evaluate_one_predefined_name()
|
D | exresnte.c | 128 node->name.ascii, node)); in acpi_ex_resolve_node_to_value()
|
D | psxface.c | 154 info->node->name.ascii, info->node, info->obj_desc)); in acpi_ps_execute_method()
|
D | nspredef.c | 238 return_object->node.name.ascii, in acpi_ns_check_object_type()
|
D | nseval.c | 134 acpi_ut_match_predefined_method(info->node->name.ascii); in acpi_ns_evaluate()
|
D | nsrepair.c | 358 if (ACPI_COMPARE_NAME(node->name.ascii, this_name->name)) { in acpi_ns_match_simple_repair()
|
D | dbcmds.c | 352 table_desc->signature.ascii)); in acpi_db_display_table_info() 1037 node->name.ascii, in acpi_db_display_resources()
|
D | exstore.c | 472 node->name.ascii)); in acpi_ex_store_object_to_node()
|
D | nsinit.c | 403 if (!ACPI_COMPARE_NAME(node->name.ascii, METHOD_NAME__INI)) { in acpi_ns_find_ini_methods()
|
D | exdebug.c | 237 name.ascii); in acpi_ex_do_debug_object()
|
D | evgpeblk.c | 411 gpe_device->name.ascii, gpe_block->register_count, in acpi_ev_create_gpe_block()
|
D | exdump.c | 578 acpi_os_printf(" [%4.4s]", node->name.ascii); in acpi_ex_dump_object() 693 obj_desc->reference.node->name.ascii); in acpi_ex_dump_operand()
|
D | dsobject.c | 131 node->name.ascii)); in acpi_ds_build_internal_object()
|
D | dbexec.c | 475 acpi_gbl_db_method_info.method)->name.ascii), in acpi_db_execute()
|
D | nsrepair2.c | 225 if (ACPI_COMPARE_NAME(node->name.ascii, this_name->name)) { in acpi_ns_match_complex_repair()
|
/linux-4.4.14/arch/x86/boot/ |
D | header.S | 94 .ascii "Use a boot loader.\r\n" 95 .ascii "\n" 96 .ascii "Remove disk and press any key to reboot...\r\n" 101 .ascii "PE" 202 .ascii ".setup" 221 .ascii ".reloc" 237 .ascii ".text" 255 .ascii ".bss" 303 .ascii "HdrS" # header signature
|
/linux-4.4.14/Documentation/usb/ |
D | misc_usbsevseg.txt | 19 The device can accept "text" either in raw, hex, or ascii textmode. 22 ascii expects a value between '0'-'9' and 'A'-'F'. 23 The default is ascii. 35 echo "123ABC" > /sys/bus/usb/.../text (ascii) 36 echo "A1B2" > /sys/bus/usb/.../text (ascii)
|
/linux-4.4.14/Documentation/filesystems/ |
D | sysfs-pci.txt | 34 class PCI class (ascii, ro) 36 device PCI device (ascii, ro) 37 enable Whether the device is enabled (ascii, rw) 38 irq IRQ number (ascii, ro) 40 remove remove device from kernel's list (ascii, wo) 41 resource PCI resource host addresses (ascii, ro) 45 subsystem_device PCI subsystem device (ascii, ro) 46 subsystem_vendor PCI subsystem vendor (ascii, ro) 47 vendor PCI vendor (ascii, ro) 53 ascii - file contains ascii text
|
D | hpfs.txt | 70 an ascii string identifying that attribute and value is any string of bytes of
|
/linux-4.4.14/fs/isofs/ |
D | joliet.c | 17 uni16_to_x8(unsigned char *ascii, __be16 *uni, int len, struct nls_table *nls) in uni16_to_x8() argument 23 op = ascii; in uni16_to_x8() 37 return (op - ascii); in uni16_to_x8()
|
/linux-4.4.14/arch/blackfin/kernel/ |
D | shadow_console.c | 99 char ascii[11] = " 0x"; in early_shadow_reg() local 106 ascii[i] = hex_asc_lo(reg >> 28); in early_shadow_reg() 109 early_shadow_write(NULL, ascii, n); in early_shadow_reg()
|
/linux-4.4.14/Documentation/security/ |
D | keys-trusted-encrypted.txt | 9 in hex ascii for convenience, and are integrity verified. 30 keyhandle= ascii hex value of sealing key default 0x40000000 (SRK) 31 keyauth= ascii hex auth for sealing key default 0x00...i 32 (40 ascii zeros) 33 blobauth= ascii hex auth for sealed data default 0x00... 34 (40 ascii zeros) 35 blobauth= ascii hex auth for sealed data default 0x00... 36 (40 ascii zeros) 37 pcrinfo= ascii hex of PCR_INFO or PCR_INFO_LONG (no default) 42 "keyctl print" returns an ascii hex copy of the sealed key, which is in standard
|
/linux-4.4.14/include/linux/ |
D | printk.h | 429 bool ascii); 433 const void *buf, size_t len, bool ascii); 444 const void *buf, size_t len, bool ascii) in print_hex_dump() argument 456 groupsize, buf, len, ascii) \ argument 458 groupsize, buf, len, ascii) 461 groupsize, buf, len, ascii) \ argument 463 groupsize, buf, len, ascii) 467 const void *buf, size_t len, bool ascii) in print_hex_dump_debug() argument
|
D | dynamic_debug.h | 99 groupsize, buf, len, ascii) \ argument 106 buf, len, ascii); \
|
D | seq_file.h | 132 bool ascii);
|
D | fb.h | 68 __u8 ascii[14]; /* ? */ member
|
/linux-4.4.14/drivers/video/logo/ |
D | logo_m32r_clut224.ppm | 4 # Note: how to convert ppm to pnm(ascii). 8 # pnm2asc - pnm to ascii-pnm format converter
|
/linux-4.4.14/arch/arm/mm/ |
D | proc-arm1020.S | 485 .ascii "ARM1020" 487 .ascii "i" 490 .ascii "d" 492 .ascii "(wt)" 494 .ascii "(wb)" 498 .ascii "B" 501 .ascii "RR" 503 .ascii "\0"
|
/linux-4.4.14/arch/x86/kernel/ |
D | head_32.S | 720 .ascii "BUG: Int %d: CR2 %p\n" 722 .ascii " EDI %p ESI %p EBP %p EBX %p\n" 723 .ascii " ESP %p ES %p DS %p\n" 724 .ascii " EDX %p ECX %p EAX %p\n" 726 .ascii " vec %p err %p EIP %p CS %p flg %p\n" 727 .ascii "Stack: %p %p %p %p %p %p %p %p\n" 728 .ascii " %p %p %p %p %p %p %p %p\n"
|
/linux-4.4.14/Documentation/EDID/ |
D | edid.S | 246 start1: .ascii "Linux #0" 268 start3: .ascii TIMING_NAME
|
/linux-4.4.14/arch/arm/lib/ |
D | io-acorn.S | 21 .ascii KERN_WARNING "insl/outsl not implemented, called from %08lX\0"
|
/linux-4.4.14/arch/arm/vfp/ |
D | vfphw.S | 33 1: .ascii KERN_DEBUG "VFP: \str\n" 48 1: .ascii KERN_DEBUG "VFP: \str\n" 65 1: .ascii KERN_DEBUG "VFP: \str\n"
|
/linux-4.4.14/drivers/net/wireless/ath/wil6210/ |
D | wil6210.h | 688 groupsize, buf, len, ascii) \ argument 691 groupsize, buf, len, ascii) 694 groupsize, buf, len, ascii) \ argument 697 groupsize, buf, len, ascii) 701 int groupsize, const void *buf, size_t len, bool ascii) in wil_hex_dump_txrx() argument 707 int groupsize, const void *buf, size_t len, bool ascii) in wil_hex_dump_wmi() argument
|
D | fw_inc.c | 24 groupsize, buf, len, ascii) \ argument 27 groupsize, buf, len, ascii)
|
/linux-4.4.14/arch/cris/arch-v10/lib/ |
D | hw_settings.S | 17 .ascii "HW_PARAM_MAGIC" ; Magic number
|
/linux-4.4.14/Documentation/ioctl/ |
D | ioctl-decoding.txt | 15 15-8 ascii character supposedly
|
/linux-4.4.14/arch/cris/arch-v32/mach-a3/ |
D | hw_settings.S | 15 .ascii "HW_PARAM_MAGIC" ; Magic number
|
/linux-4.4.14/arch/h8300/boot/compressed/ |
D | head.S | 32 .ascii "HdrS" ; header signature
|
/linux-4.4.14/tools/testing/selftests/powerpc/switch_endian/ |
D | switch_endian_test.S | 6 .ascii "success: switch_endian_test\n\0"
|
/linux-4.4.14/arch/arm64/kernel/ |
D | head.S | 107 .ascii "PE" 171 .ascii ".reloc" 185 .ascii ".text"
|
/linux-4.4.14/arch/cris/arch-v32/mach-fs/ |
D | hw_settings.S | 15 .ascii "HW_PARAM_MAGIC" ; Magic number
|
/linux-4.4.14/arch/x86/xen/ |
D | xen-head.S | 112 …ELFNOTE(Xen, XEN_ELFNOTE_FEATURES, .ascii "!writable_page_tables|pae_pgdir_above_4gb"; .asci…
|
/linux-4.4.14/arch/mips/txx9/generic/ |
D | 7segled.c | 58 static DEVICE_ATTR(ascii, 0200, NULL, ascii_store);
|
/linux-4.4.14/arch/nios2/boot/compressed/ |
D | head.S | 107 .ascii "HdrS"
|
/linux-4.4.14/arch/arm/configs/ |
D | spear6xx_defconfig | 68 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
D | spear3xx_defconfig | 79 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
D | spear13xx_defconfig | 98 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-usb-devices-usbsevseg | 26 ascii: each character is between '0'-'9' and 'A'-'F'.
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | nfsd-admin-interfaces.txt | 16 - an ascii-encoded file descriptor, which should refer to a
|
/linux-4.4.14/arch/microblaze/kernel/ |
D | entry-nommu.S | 597 .ascii "SYSCALL\0" 599 .ascii "IRQ\0" 601 .ascii "IRQ (PREEMPTED)\0" 603 .ascii " SYSCALL (PREEMPTED)\0"
|
D | entry.S | 980 .ascii "SYSCALL\0" 982 .ascii "IRQ\0" 984 .ascii "IRQ (PREEMPTED)\0" 986 .ascii " SYSCALL (PREEMPTED)\0"
|
/linux-4.4.14/arch/sh/boot/compressed/ |
D | head_32.S | 111 .ascii "HdrS" ! header signature
|
/linux-4.4.14/Documentation/zh_CN/ |
D | email-clients.txt | 147 然而,把"send_charset"设置为"us-ascii::utf-8"也是一个不错的主意。
|
D | SubmittingPatches | 193 Content-Type: text/plain; charset=us-ascii; format=flowed
|
/linux-4.4.14/include/acpi/ |
D | actbl.h | 362 char ascii[4]; member
|
/linux-4.4.14/arch/m32r/boot/compressed/ |
D | head.S | 165 .ascii "HdrS"
|
/linux-4.4.14/Documentation/s390/ |
D | s390dbf.txt | 64 Predefined views for hex/ascii, sprintf and raw binary data are provided. 219 Description: writes debug entry in ascii format to active debug area 277 Description: writes debug entry in ascii format to active debug area 498 The hex_ascii view shows the data field in hex and ascii representation 537 area time level exception cpu caller data (hex + ascii)
|
D | Debugging390.txt | 198 the ascii art. 1098 Help for displaying ascii textstrings 1100 On the very latest VM Nucleus'es VM can now display ascii 1109 program which converts a command line of hex digits to ascii text. It can be 1146 * a useful little tool for converting a hexadecimal command line to ascii
|
/linux-4.4.14/arch/powerpc/configs/86xx/ |
D | gef_ppc9a_defconfig | 163 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
D | gef_sbc310_defconfig | 161 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
/linux-4.4.14/arch/sh/configs/ |
D | sh2007_defconfig | 117 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
/linux-4.4.14/arch/powerpc/configs/85xx/ |
D | ge_imp3a_defconfig | 180 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
/linux-4.4.14/arch/sparc/kernel/ |
D | head_32.S | 36 .ascii " " 74 .ascii "HdrS"
|
D | head_64.S | 57 .ascii "HdrS"
|
/linux-4.4.14/fs/ |
D | seq_file.c | 764 bool ascii) in seq_hex_dump() argument 793 buffer, size, ascii); in seq_hex_dump()
|
/linux-4.4.14/fs/fat/ |
D | dir.c | 141 static int uni16_to_x8(struct super_block *sb, unsigned char *ascii, in uni16_to_x8() argument 151 op = ascii; in uni16_to_x8() 178 return op - ascii; in uni16_to_x8()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/omap/ |
D | omap.txt | 17 - ti,hwmods: list of hwmod names (ascii strings), that comes from the OMAP
|
/linux-4.4.14/arch/powerpc/configs/ |
D | c2k_defconfig | 324 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
D | ppc6xx_defconfig | 1063 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
/linux-4.4.14/arch/tile/configs/ |
D | tilegx_defconfig | 292 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
D | tilepro_defconfig | 401 CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
|
/linux-4.4.14/arch/s390/kernel/ |
D | head.S | 281 .ascii "S390EP"
|
/linux-4.4.14/drivers/video/fbdev/core/ |
D | fbmon.c | 969 copy_string(block, specs->ascii); in fb_edid_to_monspecs() 970 DPRINTK(" ASCII Block: %s\n", specs->ascii); in fb_edid_to_monspecs()
|
/linux-4.4.14/Documentation/accounting/ |
D | taskstats.txt | 85 attribute payload. The cpumask is specified as an ascii string of
|
/linux-4.4.14/drivers/block/ |
D | cciss_scsi.c | 267 print_bytes (unsigned char *c, int len, int hex, int ascii) 285 if (ascii)
|
/linux-4.4.14/drivers/net/wan/ |
D | wanxlfw.S | 876 .ascii "wanXL firmware\n"
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | timestamping.txt | 39 ascii-art, this could be represented as follows (for the playback
|
/linux-4.4.14/Documentation/ |
D | email-clients.txt | 186 set send_charset="us-ascii:utf-8"
|
/linux-4.4.14/arch/parisc/kernel/ |
D | entry.S | 675 .ascii "cows can fly" 718 .ascii "cows can fly"
|
/linux-4.4.14/arch/arm64/kvm/ |
D | hyp.S | 921 .ascii "HYP panic:\nPS:%08x PC:%016x ESR:%08x\nFAR:%016x HPFAR:%016x PAR:%016x\nVCPU:%p\n\0"
|
/linux-4.4.14/drivers/staging/unisys/Documentation/ |
D | overview.txt | 214 ascii text format)
|
/linux-4.4.14/arch/xtensa/kernel/ |
D | entry.S | 851 .ascii "Unrecoverable error in exception handler\0"
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.1992-1997 | 1733 * constants.c, constants.h: New files with ascii descriptions of
|
/linux-4.4.14/init/ |
D | Kconfig | 1414 using paths with ascii names is now the primary path to this
|
/linux-4.4.14/drivers/staging/speakup/ |
D | spkguide.txt | 878 The numbers 90 and 122 in the above echo commands are the ascii numeric
|