/linux/tools/testing/selftests/net/lib/py/ |
H A D | ksft.py | 52 def ksft_eq(a, b, comment=""): argument 55 _fail("Check failed", a, "!=", b, comment) 58 def ksft_ne(a, b, comment=""): argument 61 _fail("Check failed", a, "==", b, comment) 64 def ksft_true(a, comment=""): argument 66 _fail("Check failed", a, "does not eval to True", comment) 69 def ksft_in(a, b, comment=""): argument 71 _fail("Check failed", a, "not in", b, comment) 74 def ksft_ge(a, b, comment=""): argument 76 _fail("Check failed", a, "<", b, comment) [all …]
|
/linux/drivers/media/usb/ |
H A D | Kconfig | 14 comment "Webcam devices" 25 comment "Analog TV USB devices" 35 comment "Analog/digital TV USB devices" 43 comment "Digital TV USB devices" 56 comment "Webcam, TV (analog/digital) USB devices" 63 comment "Software defined radio USB devices"
|
/linux/drivers/media/pci/cx18/ |
H A D | cx18-cards.c | 50 .comment = "Simultaneous Digital and Analog TV capture supported\n", 97 .comment = "Simultaneous Digital and Analog TV capture supported\n", 144 .comment = "Simultaneous Digital and Analog TV capture supported\n", 200 .comment = "Analog TV capture supported\n", 247 .comment = "Experimenters needed for device to work well.\n" 307 .comment = "Experimenters needed for device to work well.\n" 367 .comment = "Analog TV capture supported\n", 421 .comment = "Experimenters and photos needed for device to work well.\n" 464 .comment = "Experimenters and photos needed for device to work well.\n" 517 .comment = "Simultaneous DVB-T and Analog capture supported,\n"
|
/linux/sound/pci/hda/ |
H A D | Kconfig | 136 comment "Set to Y if you want auto-loading the side codec driver" 153 comment "Set to Y if you want auto-loading the side codec driver" 206 comment "Set to Y if you want auto-loading the side codec driver" 218 comment "Set to Y if you want auto-loading the codec driver" 228 comment "Set to Y if you want auto-loading the codec driver" 239 comment "Set to Y if you want auto-loading the codec driver" 249 comment "Set to Y if you want auto-loading the codec driver" 263 comment "Set to Y if you want auto-loading the codec driver" 273 comment "Set to Y if you want auto-loading the codec driver" 283 comment "Set to Y if you want auto-loading the codec driver" [all …]
|
/linux/drivers/media/pci/ |
H A D | Kconfig | 14 comment "Media capture support" 27 comment "Media capture/analog TV support" 36 comment "Media capture/analog/hybrid TV support" 50 comment "Media digital TV PCI Adapters"
|
/linux/Documentation/doc-guide/ |
H A D | kernel-doc.rst | 29 comment. Functions and data structures in header files which are intended 42 The opening comment mark ``/**`` is used for kernel-doc comments. The 44 the comment is formatted like a normal multi-line comment with a column 67 The general format of a function and function-like macro kernel-doc comment is:: 78 * empty comment line, and may include additional embedded empty 79 * comment lines. 89 * be placed at the end of the comment block. 93 ends with an argument description, a blank comment line, or the end of the 94 comment block. 177 The general format of a struct, union, and enum kernel-doc comment is:: [all …]
|
/linux/tools/testing/selftests/ftrace/ |
H A D | ftracetest | 321 local comment=$* 322 if [ "$comment" != "" ]; then 323 comment="# $comment" 326 echo $result $CASENO $INSTANCE$CASENAME $comment
|
/linux/tools/testing/selftests/ftrace/test.d/trigger/ |
H A D | trigger-trace-marker-snapshot.tc | 17 comment=`echo $line | sed -e 's/^#//'` 18 if [ "$line" != "$comment" ]; then
|
/linux/arch/alpha/boot/ |
H A D | bootloader.lds | 24 .comment 0 : { *(.comment) }
|
/linux/arch/arm/boot/bootp/ |
H A D | bootp.lds | 26 .comment 0 : { *(.comment) }
|
/linux/tools/perf/util/ |
H A D | config.c | 77 int quote = 0, comment = 0, space = 0; in parse_value() local 91 if (comment) in parse_value() 99 comment = 1; in parse_value() 234 int comment = 0; in perf_parse_file() local 263 comment = 0; in perf_parse_file() 266 if (comment || isspace(c)) in perf_parse_file() 269 comment = 1; in perf_parse_file()
|
H A D | disasm.c | 494 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep) in comment__symbol() argument 501 *addrp = strtoull(comment, &endptr, 16); in comment__symbol() 502 if (endptr == comment) in comment__symbol() 612 char *s = strchr(ops->raw, ','), *target, *comment, prev; in mov__parse() local 640 comment = strchr(s, arch->objdump.comment_char); in mov__parse() 642 if (comment != NULL) in mov__parse() 643 s = comment - 1; in mov__parse() 661 if (comment == NULL) in mov__parse() 664 comment = skip_spaces(comment); in mov__parse() 665 comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name); in mov__parse() [all …]
|
/linux/drivers/input/joystick/ |
H A D | sidewinder.c | 524 static void sw_3dp_id(unsigned char *buf, char *comment, size_t size) in sw_3dp_id() argument 537 snprintf(comment, size, " [PnP %d.%02d id %s rev %s]", in sw_3dp_id() 576 char comment[40]; in sw_connect() local 578 comment[0] = 0; in sw_connect() 680 sprintf(comment, " [AC %s]", sw_get_bits(idbuf,38,1,3) ? "off" : "on"); in sw_connect() 693 sw_3dp_id(idbuf, comment, sizeof(comment)); in sw_connect() 766 dbg("%s%s [%d-bit id %d data %d]\n", sw->name, comment, m, l, k); in sw_connect()
|
/linux/include/linux/ |
H A D | compiler_types.h | 535 #define __diag_ignore(compiler, version, option, comment) \ argument 537 #define __diag_warn(compiler, version, option, comment) \ argument 539 #define __diag_error(compiler, version, option, comment) \ argument 543 #define __diag_ignore_all(option, comment) argument
|
/linux/tools/testing/selftests/drivers/net/ |
H A D | stats.py | 110 ksft_ge(triple[1][key], triple[0][key], comment="bad key: " + key) 111 ksft_ge(triple[2][key], triple[1][key], comment="bad key: " + key) 153 ksft_ge(qstat2[k], qstat[k], comment=f"{k} went backwards on device down")
|
/linux/scripts/ |
H A D | checkpatch.pl | 1401 my $comment = ""; 1406 $comment = $3 if defined $3; 1409 $comment = $2 if defined $2; 1412 $comment = $2 if defined $2; 1426 $comment = ""; 1443 $comment = trim($comment); 1450 return ($name, $name_comment, $address, $comment); 1454 my ($name, $name_comment, $address, $comment) = @_; 1469 $comment = trim($comment); 1470 $comment = " $comment" if ($comment ne ""); [all …]
|
/linux/Documentation/process/ |
H A D | license-rules.rst | 41 matching boilerplate text into the top comment of the file. Due to 64 possible line in a file which can contain a comment. For the majority 73 The SPDX license identifier is added in form of a comment. The comment 83 If a specific tool cannot handle the standard comment style, then the 84 appropriate comment mechanism which the tool accepts shall be used. This 85 is the reason for having the "/\* \*/" style comment in C header 87 'ld' failed to parse the C++ comment. This has been fixed by now, but 214 tag/value pairs into a comment according to the placement 229 tag/value pair into a comment according to the placement 276 tag/value pair into a comment according to the placement [all …]
|
/linux/drivers/gpu/drm/exynos/ |
H A D | Kconfig | 18 comment "CRTCs" 48 comment "Encoders and Bridges" 91 comment "Sub-drivers"
|
/linux/arch/nios2/platform/ |
H A D | Kconfig.platform | 4 comment "Memory settings" 17 comment "Device tree" 53 comment "Nios II instructions" 115 comment "Cache settings"
|
/linux/arch/sparc/boot/ |
H A D | Makefile | 19 cmd_strip = $(STRIP) -R .comment -R .note -K sun4u_init -K _end -K _start $< -o $@ 43 OBJCOPYFLAGS_image.bin := -S -O binary -R .note -R .comment
|
/linux/arch/parisc/kernel/vdso64/ |
H A D | vdso64.lds.S | 60 .comment 0 : { *(.comment) }
|
/linux/arch/parisc/kernel/vdso32/ |
H A D | vdso32.lds.S | 62 .comment 0 : { *(.comment) }
|
/linux/arch/riscv/boot/ |
H A D | Makefile | 17 OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S 19 OBJCOPYFLAGS_xipImage :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/linux/sound/pci/ice1712/ |
H A D | se.c | 352 const char *comment; member 360 .comment = "Front(green)" 367 .comment = "Surround(orange)" 374 .comment = "SurroundBack(white)" 381 .comment = "Center(Lch)&SubWoofer(Rch)(black)"
|
/linux/Documentation/scsi/ |
H A D | ChangeLog.arcmsr | 14 ** thanks for peoples kindness comment 24 ** (Kornel Wieliczek's comment) 29 ** bug fix enormous stack usage (Adrian Bunk's comment) 40 ** 1.20.00.11 9/29/2005 Erich Chen by comment of Arjan van de Ven fix incorrect msleep…
|