/linux-4.4.14/arch/um/drivers/ |
D | line.c | 21 struct line *line = chan->line; in line_interrupt() local 23 if (line) in line_interrupt() 24 chan_interrupt(line, irq); in line_interrupt() 34 static int write_room(struct line *line) in write_room() argument 38 if (line->buffer == NULL) in write_room() 42 n = line->head - line->tail; in write_room() 51 struct line *line = tty->driver_data; in line_write_room() local 55 spin_lock_irqsave(&line->lock, flags); in line_write_room() 56 room = write_room(line); in line_write_room() 57 spin_unlock_irqrestore(&line->lock, flags); in line_write_room() [all …]
|
D | chan.h | 18 struct line *line; member 30 extern void chan_interrupt(struct line *line, int irq); 31 extern int parse_chan_pair(char *str, struct line *line, int device, 37 extern int console_open_chan(struct line *line, struct console *co); 41 extern int enable_chan(struct line *line); 42 extern void close_chan(struct line *line); 43 extern int chan_window_size(struct line *line, 46 extern int chan_config_string(struct line *line, char *str, int size,
|
D | chan_kern.c | 133 struct line *line = container_of(work, struct line, task.work); in line_timer_cb() local 135 if (!line->throttled) in line_timer_cb() 136 chan_interrupt(line, line->driver->read_irq); in line_timer_cb() 139 int enable_chan(struct line *line) in enable_chan() argument 145 INIT_DELAYED_WORK(&line->task, line_timer_cb); in enable_chan() 147 list_for_each(ele, &line->chan_list) { in enable_chan() 159 err = line_setup_irq(chan->fd, chan->input, chan->output, line, in enable_chan() 170 close_chan(line); in enable_chan() 198 um_free_irq(chan->line->driver->read_irq, chan); in free_irqs() 200 um_free_irq(chan->line->driver->write_irq, chan); in free_irqs() [all …]
|
D | line.h | 34 struct line { struct 62 struct line *line); argument 79 extern int line_setup_irq(int fd, int input, int output, struct line *line, 81 extern void line_close_chan(struct line *line); 84 struct line *lines, int nlines); 85 extern int setup_one_line(struct line *lines, int n, char *init, 87 extern void close_lines(struct line *lines, int nlines); 89 extern int line_config(struct line *lines, unsigned int sizeof_lines, 93 extern int line_remove(struct line *lines, unsigned int sizeof_lines, int n, 95 extern int line_get_config(char *dev, struct line *lines,
|
D | xterm.c | 47 static int __init xterm_setup(char *line, int *add) in xterm_setup() argument 50 terminal_emulator = line; in xterm_setup() 52 line = strchr(line, ','); in xterm_setup() 53 if (line == NULL) in xterm_setup() 56 *line++ = '\0'; in xterm_setup() 57 if (*line) in xterm_setup() 58 title_switch = line; in xterm_setup() 60 line = strchr(line, ','); in xterm_setup() 61 if (line == NULL) in xterm_setup() 64 *line++ = '\0'; in xterm_setup() [all …]
|
D | stdio_console.c | 75 static struct line vts[MAX_TTYS]; 119 struct line *line = &vts[console->index]; in uml_console_write() local 122 spin_lock_irqsave(&line->lock, flags); in uml_console_write() 123 console_write_chan(line->chan_out, string, len); in uml_console_write() 124 spin_unlock_irqrestore(&line->lock, flags); in uml_console_write() 135 struct line *line = &vts[co->index]; in uml_console_setup() local 137 return console_open_chan(line, co); in uml_console_setup()
|
D | ssl.c | 70 static struct line serial_lines[NR_PORTS]; 119 struct line *line = &serial_lines[c->index]; in ssl_console_write() local 122 spin_lock_irqsave(&line->lock, flags); in ssl_console_write() 123 console_write_chan(line->chan_out, string, len); in ssl_console_write() 124 spin_unlock_irqrestore(&line->lock, flags); in ssl_console_write() 135 struct line *line = &serial_lines[co->index]; in ssl_console_setup() local 137 return console_open_chan(line, co); in ssl_console_setup()
|
D | pty.c | 78 static int getmaster(char *line) in getmaster() argument 84 pty = &line[strlen("/dev/ptyp")]; in getmaster() 86 line[strlen("/dev/pty")] = *bank; in getmaster() 89 if ((stat(line, &buf) < 0) && (errno == ENOENT)) in getmaster() 94 master = open(line, O_RDWR); in getmaster() 96 char *tp = &line[strlen("/dev/")]; in getmaster() 100 err = access(line, R_OK | W_OK); in getmaster()
|
D | ssl.h | 9 extern int ssl_read(int fd, int line); 10 extern void ssl_receive_char(int line, char ch);
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/ |
D | nv10.c | 29 nv10_gpio_sense(struct nvkm_gpio *gpio, int line) in nv10_gpio_sense() argument 32 if (line < 2) { in nv10_gpio_sense() 33 line = line * 16; in nv10_gpio_sense() 34 line = nvkm_rd32(device, 0x600818) >> line; in nv10_gpio_sense() 35 return !!(line & 0x0100); in nv10_gpio_sense() 37 if (line < 10) { in nv10_gpio_sense() 38 line = (line - 2) * 4; in nv10_gpio_sense() 39 line = nvkm_rd32(device, 0x60081c) >> line; in nv10_gpio_sense() 40 return !!(line & 0x04); in nv10_gpio_sense() 42 if (line < 14) { in nv10_gpio_sense() [all …]
|
D | nv50.c | 38 u8 line = (data & 0x0000001f); in nv50_gpio_reset() local 44 u32 reg = regs[line >> 4]; in nv50_gpio_reset() 45 u32 lsh = line & 0x0f; in nv50_gpio_reset() 51 nvkm_gpio_set(gpio, 0, func, line, defs); in nv50_gpio_reset() 58 nv50_gpio_location(int line, u32 *reg, u32 *shift) in nv50_gpio_location() argument 62 if (line >= 32) in nv50_gpio_location() 65 *reg = nv50_gpio_reg[line >> 3]; in nv50_gpio_location() 66 *shift = (line & 7) << 2; in nv50_gpio_location() 71 nv50_gpio_drive(struct nvkm_gpio *gpio, int line, int dir, int out) in nv50_gpio_drive() argument 76 if (nv50_gpio_location(line, ®, &shift)) in nv50_gpio_drive() [all …]
|
D | base.c | 29 nvkm_gpio_drive(struct nvkm_gpio *gpio, int idx, int line, int dir, int out) in nvkm_gpio_drive() argument 31 return gpio->func->drive(gpio, line, dir, out); in nvkm_gpio_drive() 35 nvkm_gpio_sense(struct nvkm_gpio *gpio, int idx, int line) in nvkm_gpio_sense() argument 37 return gpio->func->sense(gpio, line); in nvkm_gpio_sense() 48 nvkm_gpio_find(struct nvkm_gpio *gpio, int idx, u8 tag, u8 line, in nvkm_gpio_find() argument 56 if (line == 0xff && tag == 0xff) in nvkm_gpio_find() 59 data = dcb_gpio_match(bios, idx, tag, line, &ver, &len, func); in nvkm_gpio_find() 68 .line = device->quirk->tv_gpio, in nvkm_gpio_find() 80 nvkm_gpio_set(struct nvkm_gpio *gpio, int idx, u8 tag, u8 line, int state) in nvkm_gpio_set() argument 85 ret = nvkm_gpio_find(gpio, idx, tag, line, &func); in nvkm_gpio_set() [all …]
|
D | gf119.c | 37 u8 line = (data & 0x0000003f); in gf119_gpio_reset() local 47 nvkm_gpio_set(gpio, 0, func, line, defs); in gf119_gpio_reset() 49 nvkm_mask(device, 0x00d610 + (line * 4), 0xff, unk0); in gf119_gpio_reset() 51 nvkm_mask(device, 0x00d740 + (unk1 * 4), 0xff, line); in gf119_gpio_reset() 56 gf119_gpio_drive(struct nvkm_gpio *gpio, int line, int dir, int out) in gf119_gpio_drive() argument 60 nvkm_mask(device, 0x00d610 + (line * 4), 0x00003000, data); in gf119_gpio_drive() 66 gf119_gpio_sense(struct nvkm_gpio *gpio, int line) in gf119_gpio_sense() argument 69 return !!(nvkm_rd32(device, 0x00d610 + (line * 4)) & 0x00004000); in gf119_gpio_sense()
|
/linux-4.4.14/scripts/kconfig/ |
D | zconf.hash.c | 31 #line 10 "scripts/kconfig/zconf.gperf" 187 #line 26 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 189 #line 37 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 192 #line 27 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 195 #line 30 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 197 #line 32 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 199 #line 20 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 201 #line 25 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 204 #line 33 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() 206 #line 36 "scripts/kconfig/zconf.gperf" in kconf_id_lookup() [all …]
|
D | zconf.hash.c_shipped | 2 /* Command-line: gperf -t --output-file scripts/kconfig/zconf.hash.c_shipped -a -C -E -g -k '1,3,$'… 31 #line 10 "scripts/kconfig/zconf.gperf" 187 #line 26 "scripts/kconfig/zconf.gperf" 189 #line 37 "scripts/kconfig/zconf.gperf" 192 #line 27 "scripts/kconfig/zconf.gperf" 195 #line 30 "scripts/kconfig/zconf.gperf" 197 #line 32 "scripts/kconfig/zconf.gperf" 199 #line 20 "scripts/kconfig/zconf.gperf" 201 #line 25 "scripts/kconfig/zconf.gperf" 204 #line 33 "scripts/kconfig/zconf.gperf" [all …]
|
D | conf.c | 44 static char line[128]; variable 91 line[0] = '\n'; in conf_askvalue() 92 line[1] = 0; in conf_askvalue() 96 line[0] = '\n'; in conf_askvalue() 97 line[1] = 0; in conf_askvalue() 112 xfgets(line, 128, stdin); in conf_askvalue() 129 printf("%s", line); in conf_askvalue() 146 switch (line[0]) { in conf_string() 151 if (line[1] == '\n') { in conf_string() 158 line[strlen(line)-1] = 0; in conf_string() [all …]
|
D | streamline_config.pl | 161 my $line; 179 $_ = $line . " " . $_; 184 $line = $_; 273 my ($line, %vars) = @_; 277 while ($line =~ s/^(.*?)(\$\((.*?)\))//) { 289 $process .= $line; 297 my $line = ""; 305 $line .= $1; 309 $line .= $_; 310 $_ = $line; [all …]
|
D | confdata.c | 219 char *line = *lineptr; in compat_getline() local 227 if (add_byte(c, &line, slen, n) < 0) in compat_getline() 232 if (add_byte('\0', &line, slen, n) < 0) in compat_getline() 234 *lineptr = line; in compat_getline() 239 if (add_byte(c, &line, slen, n) < 0) in compat_getline() 246 line[slen-1] = '\0'; in compat_getline() 247 *lineptr = line; in compat_getline() 254 char *line = NULL; in conf_read_simple() local 314 while (compat_getline(&line, &line_asize, in) != -1) { in conf_read_simple() 317 if (line[0] == '#') { in conf_read_simple() [all …]
|
D | nconf.gui.c | 203 int get_line_length(const char *line) in get_line_length() argument 206 while (*line != '\0' && *line != '\n') { in get_line_length() 207 line++; in get_line_length() 225 const char *line = get_line(text, i); in fill_window() local 226 int len = get_line_length(line); in fill_window() 227 strncpy(tmp, line, min(len, x)); in fill_window() 271 const char *line = get_line(msg, i); in btn_dialog() local 272 int len = get_line_length(line); in btn_dialog() 381 const char *line = get_line(prompt, i); in dialog_inputbox() local 382 int len = get_line_length(line); in dialog_inputbox() [all …]
|
/linux-4.4.14/scripts/ |
D | checkpatch.pl | 116 my $line = $_; 118 $line =~ s/\s*\n?$//g; 119 $line =~ s/^\s*//g; 120 $line =~ s/\s+/ /g; 122 next if ($line =~ m/^\s*#/); 123 next if ($line =~ m/^\s*$/); 125 my @words = split(" ", $line); 486 my $line = $_; 488 $line =~ s/\s*\n?$//g; 489 $line =~ s/^\s*//g; [all …]
|
D | markup_oops.pl | 51 my ($line) = @_; 52 if ($line =~ /EAX: ([0-9a-f]+) EBX: ([0-9a-f]+) ECX: ([0-9a-f]+) EDX: ([0-9a-f]+)/) { 58 if ($line =~ /ESI: ([0-9a-f]+) EDI: ([0-9a-f]+) EBP: ([0-9a-f]+) ESP: ([0-9a-f]+)/) { 63 if ($line =~ /RAX: ([0-9a-f]+) RBX: ([0-9a-f]+) RCX: ([0-9a-f]+)/) { 68 if ($line =~ /RDX: ([0-9a-f]+) RSI: ([0-9a-f]+) RDI: ([0-9a-f]+)/) { 73 if ($line =~ /RBP: ([0-9a-f]+) R08: ([0-9a-f]+) R09: ([0-9a-f]+)/) { 77 if ($line =~ /R10: ([0-9a-f]+) R11: ([0-9a-f]+) R12: ([0-9a-f]+)/) { 82 if ($line =~ /R13: ([0-9a-f]+) R14: ([0-9a-f]+) R15: ([0-9a-f]+)/) { 100 my ($line, $cntr) = @_; 102 if (length($line) < 40) { [all …]
|
D | headers_check.pl | 27 my $line; 37 while ($line = <$fh>) { 51 if ($line =~ m/^\s*#\s*include\s+<((asm|linux).*)>/) { 69 if ($line =~ m/^void seqbuf_dump\(void\);/) { 72 if ($line =~ m/^(\s*extern|unsigned|char|short|int|long|void)\b/) { 81 if ($line =~ m/[^a-zA-Z0-9_]+CONFIG_([a-zA-Z0-9_]+)[^a-zA-Z0-9_]/) { 97 if ($line =~ m/^\s*#\s*include\s+<asm\/types.h>/) { 126 my $line; 127 while ($line = <$fh>) { 128 if ($line =~ m/^\s*#\s*include\s+<linux\/types.h>/) { [all …]
|
D | docproc.c | 61 typedef void FILELINE(char * file, char * line); 183 static void adddep2(char * file, char * line) { line = line; adddep(file); } in adddep2() argument 184 static void noaction(char * line) { line = line; } in noaction() argument 185 static void noaction2(char * file, char * line) { file = file; line = line; } in noaction2() argument 188 static void printline(char * line) { printf("%s", line); } in printline() argument 199 char line[MAXLINESZ]; in find_export_symbols() local 214 while (fgets(line, MAXLINESZ, fp)) { in find_export_symbols() 217 if (((p = strstr(line, "EXPORT_SYMBOL_GPL")) != NULL) || in find_export_symbols() 218 ((p = strstr(line, "EXPORT_SYMBOL")) != NULL)) { in find_export_symbols() 291 static void singfunc(char * filename, char * line) in singfunc() argument [all …]
|
D | show_delta | 44 def get_time(line): argument 45 if line[0]!="[": 49 (time_str, rest) = string.split(line[1:],']',1) 61 def convert_line(line, base_time): argument 65 (time, rest) = get_time(line) 68 return line 109 for line in lines: 111 (time, rest) = get_time(line) 125 for line in lines: 126 print (convert_line(line, base_time),)
|
D | checkkconfigsymbols.py | 200 for line in stdout: 201 if re.findall(r"[URMADC]{1}", line[:2]): 271 for line in lines: 272 if not "CONFIG_" in line: 274 features = REGEX_SOURCE_FEATURE.findall(line) 283 def get_features_in_line(line): argument 285 return REGEX_FEATURE.findall(line) 297 line = lines[i] 298 line = line.strip('\n') 299 line = line.split("#")[0] # ignore comments [all …]
|
D | get_maintainer.pl | 171 my $line = $_; 173 $line =~ s/\s*\n?$//g; 174 $line =~ s/^\s*//g; 175 $line =~ s/\s+/ /g; 177 next if ($line =~ m/^\s*#/); 178 next if ($line =~ m/^\s*$/); 180 my @words = split(" ", $line); 196 my $line = $_; 198 $line =~ s/\s*\n?$//; 199 $line =~ s/^\s*//; [all …]
|
D | cleanfile | 137 while ( defined($line = <FILE>) ) { 139 $in_bytes += length($line); 140 $line =~ s/[ \t\r]*$//; # Remove trailing spaces 141 $line = clean_space_tabs($line); 143 if ( $line eq "\n" ) { 144 push(@blanks, $line); 145 $blank_bytes += length($line); 149 push(@lines, $line); 150 $out_bytes += length($line); 155 $l_width = strwidth($line);
|
D | cleanpatch | 138 while ( defined($line = <FILE>) ) { 140 $in_bytes += length($line); 143 if ($line =~ 149 @hunk_lines = ($line); 152 push(@lines, $line); 153 $out_bytes += length($line); 158 if ($line =~ /^\+/) { 161 $text = substr($line, 1); 173 } elsif ($line =~ /^\-/) { 175 push(@hunk_lines, $line); [all …]
|
D | decode_stacktrace.sh | 117 while read line; do 119 if [[ $line =~ \[\<([^]]+)\>\] ]]; then 121 handle_line "$line" 123 elif [[ $line == *Code:* ]]; then 124 decode_code "$line" 127 echo "$line"
|
D | diffconfig | 41 for line in config_file: 42 line = line[:-1] 43 if line[:7] == "CONFIG_": 44 name, val = line[7:].split("=", 1) 46 if line[-11:] == " is not set": 47 d[line[9:-11]] = "n"
|
D | checkstack.pl | 120 while (my $line = <STDIN>) { 121 if ($line =~ m/$funcre/) { 124 elsif ($line =~ m/(.*):\s*file format/) { 132 elsif ($line =~ m/$re/) { 143 next if $line !~ m/^($xs*)/; 157 elsif (defined $dre && $line =~ m/$dre/) { 160 next if $line !~ m/^($xs*)/;
|
D | bootgraph.pl | 83 my $line = $_; 84 if ($line =~ /([0-9\.]+)\] calling ([a-zA-Z0-9\_\.]+)\+/) { 93 if ($line =~ /\@ ([0-9]+)/) { 99 if ($line =~ /([0-9\.]+)\] async_waiting @ ([0-9]+)/) { 120 if ($line =~ /([0-9\.]+)\] initcall ([a-zA-Z0-9\_\.]+)\+.*returned/) { 127 if ($line =~ /([0-9\.]+)\] async_continuing @ ([0-9]+)/) { 133 if ($line =~ /Write protecting the/) { 136 if ($line =~ /Freeing unused kernel memory/) {
|
D | extract-sys-certs.pl | 30 foreach my $line (@lines) { 31 chomp($line); 32 …if ($line =~ /\s*([0-9]+)\s+(\S+)\s+([0-9a-f]+)\s+([0-9a-f]+)\s+([0-9a-f]+)\s+([0-9a-f]+)\s+2[*][*… 63 foreach my $line (@_) { 64 chomp($line); 65 if ($line =~ /([0-9a-f]+)\s([a-zA-Z])\s(\S+)/
|
D | profile2linkerlist.pl | 13 my $line = $_; 18 unless ($line =~ /unknown/) || ($line =~ /total/);
|
D | extract-cert.c | 40 int e, line; in display_openssl_errors() local 46 while ((e = ERR_get_error_line(&file, &line))) { in display_openssl_errors() 48 fprintf(stderr, "- SSL %s: %s:%d\n", buf, file, line); in display_openssl_errors() 55 int line; in drain_openssl_errors() local 59 while (ERR_get_error_line(&file, &line)) {} in drain_openssl_errors()
|
D | kernel-doc-xml-ref | 77 foreach my $line (<FILE>) { 79 print $line; 104 my $line = $_[1]; 112 if (!has_key_defined($key) || $line =~ m/\s+<funcdef/i) {
|
D | analyze_suspend.py | 354 for line in cg.list: 355 line.time = self.trimTimeVal(line.time, t0, dT, left) 386 for line in cg.list: 387 line.time -= tZero 713 def setDepth(self, line): argument 714 if(line.fcall and not line.freturn): 715 line.depth = self.depth 717 elif(line.freturn and not line.fcall): 719 line.depth = self.depth 721 line.depth = self.depth [all …]
|
/linux-4.4.14/scripts/genksyms/ |
D | keywords.hash.c_shipped | 2 /* Command-line: gperf -t --output-file scripts/genksyms/keywords.hash.c_shipped -a -C -E -g -k '1,… 31 #line 4 "scripts/genksyms/keywords.gperf" 35 #line 8 "scripts/genksyms/keywords.gperf" 102 #line 35 "scripts/genksyms/keywords.gperf" 105 #line 15 "scripts/genksyms/keywords.gperf" 108 #line 16 "scripts/genksyms/keywords.gperf" 111 #line 27 "scripts/genksyms/keywords.gperf" 114 #line 19 "scripts/genksyms/keywords.gperf" 116 #line 18 "scripts/genksyms/keywords.gperf" 118 #line 20 "scripts/genksyms/keywords.gperf" [all …]
|
/linux-4.4.14/Documentation/arm/Samsung/ |
D | clksrc-change-registers.awk | 69 while (getline line < ARGV[1] > 0) { 70 if (line ~ /\#define.*_MASK/ && 71 !(line ~ /USB_SIG_MASK/)) { 72 splitdefine(line, fields) 75 printf "MASK " line "\n" > "/dev/stderr" 98 if ((getline line) <= 0) { 103 if (line ~ /\.shift/) { 104 shift = extract_value(line) 105 } else if (line ~ /\.mask/) { 106 mask = extract_value(line) [all …]
|
/linux-4.4.14/drivers/zorro/ |
D | gen-devlist.c | 31 char line[1024], *c, *bra, manuf[8]; in main() local 44 while (fgets(line, sizeof(line)-1, stdin)) { in main() 46 if ((c = strchr(line, '\n'))) in main() 48 if (!line[0] || line[0] == '#') in main() 50 if (line[0] == '\t') { in main() 53 if (strlen(line) > 5 && line[5] == ' ') { in main() 54 c = line + 5; in main() 67 fprintf(devf, "\tPRODUCT(%s,%s,\"", manuf, line+1); in main() 75 } else if (strlen(line) > 4 && line[4] == ' ') { in main() 76 c = line + 4; in main() [all …]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ |
D | nv50.c | 28 pwm_info(struct nvkm_therm *therm, int *line, int *ctrl, int *indx) in pwm_info() argument 32 if (*line == 0x04) { in pwm_info() 34 *line = 4; in pwm_info() 37 if (*line == 0x09) { in pwm_info() 39 *line = 9; in pwm_info() 42 if (*line == 0x10) { in pwm_info() 44 *line = 0; in pwm_info() 47 nvkm_error(subdev, "unknown pwm ctrl for gpio %d\n", *line); in pwm_info() 55 nv50_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in nv50_fan_pwm_ctrl() argument 59 int ctrl, id, ret = pwm_info(therm, &line, &ctrl, &id); in nv50_fan_pwm_ctrl() [all …]
|
D | gf119.c | 27 pwm_info(struct nvkm_therm *therm, int line) in pwm_info() argument 31 u32 gpio = nvkm_rd32(device, 0x00d610 + (line * 0x04)); in pwm_info() 48 nvkm_error(subdev, "GPIO %d unknown PWM: %08x\n", line, gpio); in pwm_info() 53 gf119_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in gf119_fan_pwm_ctrl() argument 57 int indx = pwm_info(therm, line); in gf119_fan_pwm_ctrl() 61 nvkm_mask(device, 0x00d610 + (line * 0x04), 0x000000c0, data); in gf119_fan_pwm_ctrl() 67 gf119_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty) in gf119_fan_pwm_get() argument 70 int indx = pwm_info(therm, line); in gf119_fan_pwm_get() 74 if (nvkm_rd32(device, 0x00d610 + (line * 0x04)) & 0x00000040) { in gf119_fan_pwm_get() 89 gf119_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty) in gf119_fan_pwm_set() argument [all …]
|
D | nv40.c | 106 nv40_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in nv40_fan_pwm_ctrl() argument 111 if (line == 2) nvkm_mask(device, 0x0010f0, 0x80000000, mask); in nv40_fan_pwm_ctrl() 112 else if (line == 9) nvkm_mask(device, 0x0015f4, 0x80000000, mask); in nv40_fan_pwm_ctrl() 114 nvkm_error(subdev, "unknown pwm ctrl for gpio %d\n", line); in nv40_fan_pwm_ctrl() 121 nv40_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty) in nv40_fan_pwm_get() argument 125 if (line == 2) { in nv40_fan_pwm_get() 133 if (line == 9) { in nv40_fan_pwm_get() 141 nvkm_error(subdev, "unknown pwm ctrl for gpio %d\n", line); in nv40_fan_pwm_get() 149 nv40_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty) in nv40_fan_pwm_set() argument 153 if (line == 2) { in nv40_fan_pwm_set() [all …]
|
D | fanpwm.c | 47 ret = therm->func->pwm_get(therm, fan->func.line, &divs, &duty); in nvkm_fanpwm_get() 55 return nvkm_gpio_get(gpio, 0, fan->func.func, fan->func.line) * 100; in nvkm_fanpwm_get() 70 divs = therm->func->pwm_clock(therm, fan->func.line); in nvkm_fanpwm_set() 78 ret = therm->func->pwm_set(therm, fan->func.line, divs, duty); in nvkm_fanpwm_set() 80 ret = therm->func->pwm_ctrl(therm, fan->func.line, true); in nvkm_fanpwm_set() 97 therm->func->pwm_get(therm, func->line, &divs, &duty) == -ENODEV) in nvkm_fanpwm_create()
|
D | gm107.c | 27 gm107_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in gm107_fan_pwm_ctrl() argument 34 gm107_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty) in gm107_fan_pwm_get() argument 43 gm107_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty) in gm107_fan_pwm_set() argument 52 gm107_fan_pwm_clock(struct nvkm_therm *therm, int line) in gm107_fan_pwm_clock() argument
|
D | priv.h | 89 int (*pwm_ctrl)(struct nvkm_therm *, int line, bool); 90 int (*pwm_get)(struct nvkm_therm *, int line, u32 *, u32 *); 91 int (*pwm_set)(struct nvkm_therm *, int line, u32, u32); 92 int (*pwm_clock)(struct nvkm_therm *, int line);
|
/linux-4.4.14/drivers/fmc/ |
D | fmc-dump.c | 24 static const uint8_t *dump_line(int addr, const uint8_t *line, in dump_line() argument 29 if (!prev || memcmp(line, prev, LINELEN)) { in dump_line() 32 printk(KERN_CONT "%02x", line[i]); in dump_line() 36 return line; in dump_line() 39 if (line == prev + LINELEN) in dump_line() 46 const uint8_t *line, *prev; in fmc_dump_eeprom() local 57 line = fmc->eeprom; in fmc_dump_eeprom() 59 for (i = 0; i < fmc->eeprom_len; i += LINELEN, line += LINELEN) in fmc_dump_eeprom() 60 prev = dump_line(i, line, prev); in fmc_dump_eeprom() 65 const uint8_t *line, *prev; in fmc_dump_sdb() local [all …]
|
/linux-4.4.14/fs/gfs2/ |
D | util.c | 88 const char *function, char *file, unsigned int line) in gfs2_assert_withdraw_i() argument 94 assertion, function, file, line); in gfs2_assert_withdraw_i() 106 const char *function, char *file, unsigned int line) in gfs2_assert_warn_i() argument 115 assertion, function, file, line); in gfs2_assert_warn_i() 126 sdp->sd_fsname, function, file, line); in gfs2_assert_warn_i() 140 char *file, unsigned int line) in gfs2_consist_i() argument 145 function, file, line); in gfs2_consist_i() 156 const char *function, char *file, unsigned int line) in gfs2_consist_inode_i() argument 166 function, file, line); in gfs2_consist_inode_i() 177 const char *function, char *file, unsigned int line) in gfs2_consist_rgrpd_i() argument [all …]
|
D | util.h | 43 const char *function, char *file, unsigned int line); 51 const char *function, char *file, unsigned int line); 59 const char *function, char *file, unsigned int line); 66 const char *function, char *file, unsigned int line); 73 const char *function, char *file, unsigned int line); 81 char *file, unsigned int line); 99 char *file, unsigned int line); 105 char *file, unsigned int line) in gfs2_metatype_check_i() argument 112 file, line); in gfs2_metatype_check_i() 115 file, line); in gfs2_metatype_check_i() [all …]
|
/linux-4.4.14/usr/ |
D | gen_init_cpio.c | 29 int (*handler)(const char *line); 133 static int cpio_mkslink_line(const char *line) in cpio_mkslink_line() argument 142 …if (5 != sscanf(line, "%" str(PATH_MAX) "s %" str(PATH_MAX) "s %o %d %d", name, target, &mode, &ui… in cpio_mkslink_line() 143 fprintf(stderr, "Unrecognized dir format '%s'", line); in cpio_mkslink_line() 205 static int cpio_mkgeneric_line(const char *line, enum generic_types gt) in cpio_mkgeneric_line() argument 213 if (4 != sscanf(line, "%" str(PATH_MAX) "s %o %d %d", name, &mode, &uid, &gid)) { in cpio_mkgeneric_line() 215 line, generic_type_table[gt].type); in cpio_mkgeneric_line() 224 static int cpio_mkdir_line(const char *line) in cpio_mkdir_line() argument 226 return cpio_mkgeneric_line(line, GT_DIR); in cpio_mkdir_line() 229 static int cpio_mkpipe_line(const char *line) in cpio_mkpipe_line() argument [all …]
|
/linux-4.4.14/drivers/media/pci/ivtv/ |
D | ivtv-vbi.c | 35 data.line = enabled ? 16 : 0; in ivtv_set_vps() 52 data.line = (mode & 1) ? 21 : 0; in ivtv_set_cc() 57 data.line = (mode & 2) ? 21 : 0; in ivtv_set_cc() 80 data.line = enabled ? 23 : 0; in ivtv_set_wss() 101 if (d->id == V4L2_SLICED_CAPTION_525 && d->line == 21) { in ivtv_write_vbi_line() 110 } else if (d->id == V4L2_SLICED_VPS && d->line == 16 && d->field == 0) { in ivtv_write_vbi_line() 123 d->line == 23 && d->field == 0) { in ivtv_write_vbi_line() 188 int line = 0; in copy_vbi_data() local 208 l = itv->vbi.sliced_data[i].line - 6; in copy_vbi_data() 216 dst[sd + 12 + line * 43] = in copy_vbi_data() [all …]
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | isdn_v110.c | 192 int line = 0; in DecodeMatrix() local 199 while (line < len) { /* Are we done with all lines of the matrix? */ in DecodeMatrix() 200 if ((line % 10) == 0) { /* the 0. line of the matrix is always 0 ! */ in DecodeMatrix() 201 if (m[line] != 0x00) { /* not 0 ? -> error! */ in DecodeMatrix() 207 line++; /* next line of matrix */ in DecodeMatrix() 209 } else if ((line % 10) == 5) { /* in line 5 there's only e-bits ! */ in DecodeMatrix() 210 if ((m[line] & 0x70) != 0x30) { /* 011 has to be at the beginning! */ in DecodeMatrix() 216 line++; /* next line */ in DecodeMatrix() 219 introducer = (m[line] & mbit) ? 0 : 1; /* current bit of the matrix */ in DecodeMatrix() 226 line++; in DecodeMatrix() [all …]
|
/linux-4.4.14/drivers/crypto/vmx/ |
D | ppc-xlate.pl | 67 my $line = join(",",@_); 68 if ($line =~ /^"(.*)"$/) 181 while($line=<>) { 183 $line =~ s|[#!;].*$||; # get rid of asm-style comments... 184 $line =~ s|/\*.*\*/||; # ... and C-style comments... 185 $line =~ s|^\s+||; # ... and skip white spaces in beginning... 186 $line =~ s|\s+$||; # ... and at the end 189 $line =~ s|\b\.L(\w+)|L$1|g; # common denominator for Locallabel 190 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels); 194 $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||; [all …]
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | time.c | 32 static void _dump_tm(const struct rtc_time *tm, const char* func, int line) in _dump_tm() argument 34 pr_debug("%s:%d tm_sec %d\n", func, line, tm->tm_sec); in _dump_tm() 35 pr_debug("%s:%d tm_min %d\n", func, line, tm->tm_min); in _dump_tm() 36 pr_debug("%s:%d tm_hour %d\n", func, line, tm->tm_hour); in _dump_tm() 37 pr_debug("%s:%d tm_mday %d\n", func, line, tm->tm_mday); in _dump_tm() 38 pr_debug("%s:%d tm_mon %d\n", func, line, tm->tm_mon); in _dump_tm() 39 pr_debug("%s:%d tm_year %d\n", func, line, tm->tm_year); in _dump_tm() 40 pr_debug("%s:%d tm_wday %d\n", func, line, tm->tm_wday); in _dump_tm() 45 int line) in _dump_time() argument 51 pr_debug("%s:%d time %d\n", func, line, time); in _dump_time() [all …]
|
D | os-area.c | 319 int line) in _dump_header() argument 324 pr_debug("%s:%d: h.magic_num: '%s'\n", func, line, in _dump_header() 326 pr_debug("%s:%d: h.hdr_version: %u\n", func, line, in _dump_header() 328 pr_debug("%s:%d: h.db_area_offset: %u\n", func, line, in _dump_header() 330 pr_debug("%s:%d: h.ldr_area_offset: %u\n", func, line, in _dump_header() 332 pr_debug("%s:%d: h.ldr_format: %u\n", func, line, in _dump_header() 334 pr_debug("%s:%d: h.ldr_size: %xh\n", func, line, in _dump_header() 340 int line) in _dump_params() argument 342 pr_debug("%s:%d: p.boot_flag: %u\n", func, line, p->boot_flag); in _dump_params() 343 pr_debug("%s:%d: p.num_params: %u\n", func, line, p->num_params); in _dump_params() [all …]
|
D | mm.c | 119 const char *func, int line) in _debug_dump_map() argument 121 DBG("%s:%d: map.total = %llxh\n", func, line, m->total); in _debug_dump_map() 122 DBG("%s:%d: map.rm.size = %llxh\n", func, line, m->rm.size); in _debug_dump_map() 123 DBG("%s:%d: map.vas_id = %llu\n", func, line, m->vas_id); in _debug_dump_map() 124 DBG("%s:%d: map.htab_size = %llxh\n", func, line, m->htab_size); in _debug_dump_map() 125 DBG("%s:%d: map.r1.base = %llxh\n", func, line, m->r1.base); in _debug_dump_map() 126 DBG("%s:%d: map.r1.offset = %lxh\n", func, line, m->r1.offset); in _debug_dump_map() 127 DBG("%s:%d: map.r1.size = %llxh\n", func, line, m->r1.size); in _debug_dump_map() 357 const char *func, int line) in _dma_dump_region() argument 359 DBG("%s:%d: dev %llu:%llu\n", func, line, r->dev->bus_id, in _dma_dump_region() [all …]
|
D | interrupt.c | 630 const char* func, int line) in _dump_64_bmp() argument 633 func, line, header, cpu, in _dump_64_bmp() 639 const u64 *p, unsigned cpu, const char* func, int line) in _dump_256_bmp() argument 642 func, line, header, cpu, p[0], p[1], p[2], p[3]); in _dump_256_bmp() 646 static void _dump_bmp(struct ps3_private* pd, const char* func, int line) in _dump_bmp() argument 651 _dump_64_bmp("stat", &pd->bmp.status, pd->thread_id, func, line); in _dump_bmp() 652 _dump_64_bmp("mask", (u64*)&pd->bmp.mask, pd->thread_id, func, line); in _dump_bmp() 658 const char* func, int line) in _dump_mask() argument 663 _dump_64_bmp("mask", (u64*)&pd->bmp.mask, pd->thread_id, func, line); in _dump_mask()
|
/linux-4.4.14/drivers/tty/serial/ |
D | crisv10.c | 110 #define DEBUG_LOG(line, string, value) argument 131 void debug_log_func(int line, const char *string, int value) in debug_log_func() argument 465 #define E100_STRUCT_PORT(line, pinname) \ argument 466 ((CONFIG_ETRAX_SER##line##_##pinname##_ON_PA_BIT >= 0)? \ 468 (CONFIG_ETRAX_SER##line##_##pinname##_ON_PB_BIT >= 0)? \ 469 (R_PORT_PB_DATA):&dummy_ser[line])) 471 #define E100_STRUCT_SHADOW(line, pinname) \ argument 472 ((CONFIG_ETRAX_SER##line##_##pinname##_ON_PA_BIT >= 0)? \ 474 (CONFIG_ETRAX_SER##line##_##pinname##_ON_PB_BIT >= 0)? \ 475 (&port_pb_data_shadow):&dummy_ser[line])) [all …]
|
D | sb1250-duart.c | 57 #define SBD_CHANREGS(line) A_BCM1480_DUART_CHANREG((line), 0) argument 58 #define SBD_CTRLREGS(line) A_BCM1480_DUART_CTRLREG((line), 0) argument 59 #define SBD_INT(line) (K_BCM1480_INT_UART_0 + (line)) argument 63 #define R_DUART_IMRREG(line) R_BCM1480_DUART_IMRREG(line) argument 64 #define R_DUART_INCHREG(line) R_BCM1480_DUART_INCHREG(line) argument 65 #define R_DUART_ISRREG(line) R_BCM1480_DUART_ISRREG(line) argument 71 #define SBD_CHANREGS(line) A_DUART_CHANREG((line), 0) argument 72 #define SBD_CTRLREGS(line) A_DUART_CTRLREG(0) argument 73 #define SBD_INT(line) (K_INT_UART_0 + (line)) argument 254 status >>= (uport->line) % 2; in sbd_get_mctrl() [all …]
|
D | of_serial.c | 33 int line; member 116 port->line = ret; in of_platform_serial_setup() 232 info->line = ret; in of_platform_serial_probe() 250 serial8250_unregister_port(info->line); in of_platform_serial_remove() 255 nwpserial_unregister_port(info->line); in of_platform_serial_remove() 273 struct uart_8250_port *port8250 = serial8250_get_port(info->line); in of_serial_suspend_8250() 276 serial8250_suspend_port(info->line); in of_serial_suspend_8250() 283 struct uart_8250_port *port8250 = serial8250_get_port(info->line); in of_serial_resume_8250() 289 serial8250_resume_port(info->line); in of_serial_resume_8250()
|
D | dz.c | 129 u16 tmp, mask = 1 << dport->port.line; in dz_stop_tx() 139 u16 tmp, mask = 1 << dport->port.line; in dz_start_tx() 318 if (dport->port.line != DZ_MODEM) in check_modem_status() 368 if (dport->port.line == DZ_MODEM) { in dz_get_mctrl() 384 if (dport->port.line == DZ_MODEM) { in dz_set_mctrl() 480 unsigned short tmp, mask = 1 << dport->port.line; in dz_tx_empty() 496 unsigned short tmp, mask = 1 << dport->port.line; in dz_break_ctl() 572 cflag = dport->port.line; in dz_set_termios() 765 int line; in dz_init_ports() local 776 for (line = 0; line < DZ_NB_PORT; line++) { in dz_init_ports() [all …]
|
D | 68328serial.c | 118 int line; member 197 unsigned short int baud = uart_addr[ss->line].ubaud; in get_baud() 215 m68328_uart *uart = &uart_addr[info->line]; in rs_stop() 247 m68328_uart *uart = &uart_addr[info->line]; in rs_start() 266 m68328_uart *uart = &uart_addr[info->line]; in receive_chars() 313 m68328_uart *uart = &uart_addr[info->line]; in transmit_chars() 355 uart = &uart_addr[info->line]; in rs_interrupt() 375 m68328_uart *uart = &uart_addr[info->line]; in startup() 429 m68328_uart *uart = &uart_addr[info->line]; in shutdown() 504 m68328_uart *uart = &uart_addr[info->line]; in change_speed() [all …]
|
D | efm32-uart.c | 694 efm_port->port.line = ret; in efm32_uart_probe_dt() 704 unsigned int line; in efm32_uart_probe() local 753 efm_port->port.line = pdev->id; in efm32_uart_probe() 760 line = efm_port->port.line; in efm32_uart_probe() 762 if (line >= 0 && line < ARRAY_SIZE(efm32_uart_ports)) in efm32_uart_probe() 763 efm32_uart_ports[line] = efm_port; in efm32_uart_probe() 769 if (line >= 0 && line < ARRAY_SIZE(efm32_uart_ports)) in efm32_uart_probe() 770 efm32_uart_ports[line] = NULL; in efm32_uart_probe() 787 unsigned int line = efm_port->port.line; in efm32_uart_remove() local 791 if (line >= 0 && line < ARRAY_SIZE(efm32_uart_ports)) in efm32_uart_remove() [all …]
|
D | mpsc.c | 408 pi->port.line, burst_size); in mpsc_sdma_burstsize() 427 pr_debug("mpsc_sdma_init[%d]: burst_size: %d\n", pi->port.line, in mpsc_sdma_init() 439 pr_debug("mpsc_sdma_intr_mask[%d]: mask: 0x%x\n", pi->port.line, mask); in mpsc_sdma_intr_mask() 445 if (pi->port.line) in mpsc_sdma_intr_mask() 453 if (pi->port.line) in mpsc_sdma_intr_mask() 462 pr_debug("mpsc_sdma_intr_unmask[%d]: mask: 0x%x\n", pi->port.line,mask); in mpsc_sdma_intr_unmask() 468 if (pi->port.line) in mpsc_sdma_intr_unmask() 479 pr_debug("mpsc_sdma_intr_ack[%d]: Acknowledging IRQ\n", pi->port.line); in mpsc_sdma_intr_ack() 484 + pi->port.line); in mpsc_sdma_intr_ack() 491 pi->port.line, (u32)rxre_p); in mpsc_sdma_set_rx_ring() [all …]
|
D | apbuart.c | 598 int line = 0; in grlib_apbuart_configure() local 617 grlib_apbuart_nodes[line] = np; in grlib_apbuart_configure() 621 port = &grlib_apbuart_ports[line]; in grlib_apbuart_configure() 629 port->line = line; in grlib_apbuart_configure() 631 port->fifosize = apbuart_scan_fifo_size((struct uart_port *) port, line); in grlib_apbuart_configure() 632 line++; in grlib_apbuart_configure() 635 if (line == UART_NR) in grlib_apbuart_configure() 639 grlib_apbuart_driver.nr = grlib_apbuart_port_nr = line; in grlib_apbuart_configure() 640 return line ? 0 : -ENODEV; in grlib_apbuart_configure()
|
D | suncore.c | 55 struct uart_driver *drv, int line, bool ignore_line) in sunserial_console_match() argument 72 if ((line & 1) != off) in sunserial_console_match() 77 con->index = line; in sunserial_console_match() 78 add_preferred_console(con->name, line, NULL); in sunserial_console_match()
|
D | m32r_sio.h | 30 void m32r_sio_suspend_port(int line); 31 void m32r_sio_resume_port(int line);
|
D | serial_txx9.c | 610 if (up->port.cons && up->port.line == up->port.cons->index) { in serial_txx9_shutdown() 836 if (up->port.line == up->port.cons->index) in serial_txx9_config_port() 880 up->port.line = i; in serial_txx9_register_ports() 997 if (port->line >= ARRAY_SIZE(serial_txx9_ports)) in early_serial_txx9_setup() 1000 serial_txx9_ports[port->line].port = *port; in early_serial_txx9_setup() 1001 serial_txx9_ports[port->line].port.ops = &serial_txx9_pops; in early_serial_txx9_setup() 1002 serial_txx9_ports[port->line].port.flags |= in early_serial_txx9_setup() 1055 ret = uart->port.line; in serial_txx9_register_port() 1068 static void serial_txx9_unregister_port(int line) in serial_txx9_unregister_port() argument 1070 struct uart_txx9_port *uart = &serial_txx9_ports[line]; in serial_txx9_unregister_port() [all …]
|
D | sccnxp.c | 227 return sccnxp_read(port, (port->line << 3) + reg); in sccnxp_port_read() 232 sccnxp_write(port, (port->line << 3) + reg, v); in sccnxp_port_write() 327 s->imr |= mask << (port->line * 4); in sccnxp_enable_irq() 335 s->imr &= ~(mask << (port->line * 4)); in sccnxp_disable_irq() 344 if (s->pdata.mctrl_cfg[port->line] & MCTRL_MASK(sig)) { in sccnxp_set_bit() 345 bitmask = 1 << MCTRL_OBIT(s->pdata.mctrl_cfg[port->line], sig); in sccnxp_set_bit() 566 if (s->pdata.mctrl_cfg[port->line] & MCTRL_MASK(DSR_IP)) { in sccnxp_get_mctrl() 567 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl() 572 if (s->pdata.mctrl_cfg[port->line] & MCTRL_MASK(CTS_IP)) { in sccnxp_get_mctrl() 573 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl() [all …]
|
D | sc16is7xx.c | 318 u8 line; member 353 return one->line; in sc16is7xx_line() 360 const u8 line = sc16is7xx_line(port); in sc16is7xx_port_read() local 362 regmap_read(s->regmap, (reg << SC16IS7XX_REG_SHIFT) | line, &val); in sc16is7xx_port_read() 370 const u8 line = sc16is7xx_line(port); in sc16is7xx_port_write() local 372 regmap_write(s->regmap, (reg << SC16IS7XX_REG_SHIFT) | line, val); in sc16is7xx_port_write() 378 const u8 line = sc16is7xx_line(port); in sc16is7xx_fifo_read() local 379 u8 addr = (SC16IS7XX_RHR_REG << SC16IS7XX_REG_SHIFT) | line; in sc16is7xx_fifo_read() 389 const u8 line = sc16is7xx_line(port); in sc16is7xx_fifo_write() local 390 u8 addr = (SC16IS7XX_THR_REG << SC16IS7XX_REG_SHIFT) | line; in sc16is7xx_fifo_write() [all …]
|
/linux-4.4.14/fs/ext4/ |
D | ext4_jbd2.c | 62 handle_t *__ext4_journal_start_sb(struct super_block *sb, unsigned int line, in __ext4_journal_start_sb() argument 77 type, line); in __ext4_journal_start_sb() 80 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle) in __ext4_journal_stop() argument 103 __ext4_std_error(sb, where, line, err); in __ext4_journal_stop() 107 handle_t *__ext4_journal_start_reserved(handle_t *handle, unsigned int line, in __ext4_journal_start_reserved() argument 125 err = jbd2_journal_start_reserved(handle, type, line); in __ext4_journal_start_reserved() 131 static void ext4_journal_abort_handle(const char *caller, unsigned int line, in ext4_journal_abort_handle() argument 151 caller, line, errstr, err_fn); in ext4_journal_abort_handle() 156 int __ext4_journal_get_write_access(const char *where, unsigned int line, in __ext4_journal_get_write_access() argument 166 ext4_journal_abort_handle(where, line, __func__, bh, in __ext4_journal_get_write_access() [all …]
|
D | ext4_jbd2.h | 232 int __ext4_journal_get_write_access(const char *where, unsigned int line, 235 int __ext4_forget(const char *where, unsigned int line, handle_t *handle, 239 int __ext4_journal_get_create_access(const char *where, unsigned int line, 242 int __ext4_handle_dirty_metadata(const char *where, unsigned int line, 246 int __ext4_handle_dirty_super(const char *where, unsigned int line, 262 handle_t *__ext4_journal_start_sb(struct super_block *sb, unsigned int line, 264 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle); 307 unsigned int line, int type, in __ext4_journal_start() argument 310 return __ext4_journal_start_sb(inode->i_sb, line, type, blocks, in __ext4_journal_start() 320 handle_t *__ext4_journal_start_reserved(handle_t *handle, unsigned int line,
|
/linux-4.4.14/drivers/gpio/ |
D | gpio-ts5500.c | 210 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_input() local 213 if (line.no_input) in ts5500_gpio_input() 216 if (line.no_output) in ts5500_gpio_input() 220 ts5500_clear_mask(line.control_mask, line.control_addr); in ts5500_gpio_input() 229 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_get() local 231 return !!(inb(line.value_addr) & line.value_mask); in ts5500_gpio_get() 237 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_output() local 240 if (line.no_output) in ts5500_gpio_output() 244 if (!line.no_input) in ts5500_gpio_output() 245 ts5500_set_mask(line.control_mask, line.control_addr); in ts5500_gpio_output() [all …]
|
D | gpio-iop.c | 38 static void gpio_line_config(int line, int direction) in gpio_line_config() argument 46 val |= BIT(line); in gpio_line_config() 48 val &= ~BIT(line); in gpio_line_config() 54 static int gpio_line_get(int line) in gpio_line_get() argument 56 return !!(readl(IOP3XX_GPID) & BIT(line)); in gpio_line_get() 59 static void gpio_line_set(int line, int value) in gpio_line_set() argument 67 val &= ~BIT(line); in gpio_line_set() 69 val |= BIT(line); in gpio_line_set()
|
D | gpio-ep93xx.c | 68 int line = irq_to_gpio(irq); in ep93xx_gpio_int_debounce() local 69 int port = line >> 3; in ep93xx_gpio_int_debounce() 70 int port_mask = 1 << (line & 7); in ep93xx_gpio_int_debounce() 119 int line = irq_to_gpio(d->irq); in ep93xx_gpio_irq_ack() local 120 int port = line >> 3; in ep93xx_gpio_irq_ack() 121 int port_mask = 1 << (line & 7); in ep93xx_gpio_irq_ack() 133 int line = irq_to_gpio(d->irq); in ep93xx_gpio_irq_mask_ack() local 134 int port = line >> 3; in ep93xx_gpio_irq_mask_ack() 135 int port_mask = 1 << (line & 7); in ep93xx_gpio_irq_mask_ack() 148 int line = irq_to_gpio(d->irq); in ep93xx_gpio_irq_mask() local [all …]
|
/linux-4.4.14/drivers/media/pci/cx18/ |
D | cx18-vbi.c | 41 int line = 0; in copy_vbi_data() local 69 l = sdata->line - 6; in copy_vbi_data() 77 dst[sd + 12 + line * 43] = cx18_service2vbi(sdata->id); in copy_vbi_data() 78 memcpy(dst + sd + 12 + line * 43 + 1, sdata->data, 42); in copy_vbi_data() 79 line++; in copy_vbi_data() 82 if (line == 36) { in copy_vbi_data() 87 memmove(dst + sd + 4, dst + sd + 12, line * 43); in copy_vbi_data() 88 size = 4 + ((43 * line + 3) & ~3); in copy_vbi_data() 94 size = 12 + ((43 * line + 3) & ~3); in copy_vbi_data() 147 u32 line = 0; in compress_sliced_buf() local [all …]
|
/linux-4.4.14/drivers/tty/serial/8250/ |
D | 8250_pnp.c | 441 int ret, line, flags = dev_id->driver_data; in serial_pnp_probe() local 481 line = serial8250_register_8250_port(&uart); in serial_pnp_probe() 482 if (line < 0 || (flags & CIR_PORT)) in serial_pnp_probe() 485 port = serial8250_get_port(line); in serial_pnp_probe() 489 pnp_set_drvdata(dev, (void *)((long)line + 1)); in serial_pnp_probe() 495 long line = (long)pnp_get_drvdata(dev); in serial_pnp_remove() local 498 if (line) in serial_pnp_remove() 499 serial8250_unregister_port(line - 1); in serial_pnp_remove() 505 long line = (long)pnp_get_drvdata(dev); in serial_pnp_suspend() local 507 if (!line) in serial_pnp_suspend() [all …]
|
D | 8250_hp300.c | 30 int line; /* line (tty) number */ member 120 add_preferred_console("ttyS", port.line, "9600n8"); in hp300_setup_serial_console() 143 add_preferred_console("ttyS", port.line, "9600n8"); in hp300_setup_serial_console() 161 int line; in hpdca_init_one() local 180 line = serial8250_register_8250_port(&uart); in hpdca_init_one() 182 if (line < 0) { in hpdca_init_one() 190 dio_set_drvdata(d, (void *)line); in hpdca_init_one() 206 int line; in hp300_8250_init() local 261 line = serial8250_register_8250_port(&uart); in hp300_8250_init() 263 if (line < 0) { in hp300_8250_init() [all …]
|
D | 8250_ingenic.c | 41 int line; member 208 int err, line; in ingenic_uart_probe() local 241 line = of_alias_get_id(pdev->dev.of_node, "serial"); in ingenic_uart_probe() 242 if (line >= 0) in ingenic_uart_probe() 243 uart.port.line = line; in ingenic_uart_probe() 281 data->line = serial8250_register_8250_port(&uart); in ingenic_uart_probe() 282 if (data->line < 0) { in ingenic_uart_probe() 283 err = data->line; in ingenic_uart_probe() 302 serial8250_unregister_port(data->line); in ingenic_uart_remove()
|
D | 8250_mtk.c | 35 int line; member 241 data->line = serial8250_register_8250_port(&uart); in mtk8250_probe() 242 if (data->line < 0) in mtk8250_probe() 243 return data->line; in mtk8250_probe() 254 serial8250_unregister_port(data->line); in mtk8250_remove() 270 serial8250_suspend_port(data->line); in mtk8250_suspend() 279 serial8250_resume_port(data->line); in mtk8250_resume()
|
D | 8250_fintek.c | 47 long line; member 221 pdata->line = serial8250_register_8250_port(&uart); in fintek_8250_probe() 222 if (pdata->line < 0) in fintek_8250_probe() 234 serial8250_unregister_port(pdata->line); in fintek_8250_remove() 244 serial8250_suspend_port(pdata->line); in fintek_8250_suspend() 254 serial8250_resume_port(pdata->line); in fintek_8250_resume()
|
/linux-4.4.14/scripts/coccinelle/misc/ |
D | doubleinit.cocci | 39 if int(ps[0].line) < int(pr[0].line) or (int(ps[0].line) == int(pr[0].line) and int(ps[0].column) <… 51 if int(ps[0].line) < int(pr[0].line) or (int(ps[0].line) == int(pr[0].line) and int(ps[0].column) <… 52 msg = "%s: first occurrence line %s, second occurrence line %s" % (fld,ps[0].line,pr[0].line)
|
/linux-4.4.14/tools/lib/symbol/ |
D | kallsyms.c | 15 char *line = NULL; in kallsyms__parse() local 31 line_len = getline(&line, &n, file); in kallsyms__parse() 32 if (line_len < 0 || !line) in kallsyms__parse() 35 line[--line_len] = '\0'; /* \n */ in kallsyms__parse() 37 len = hex2u64(line, &start); in kallsyms__parse() 43 symbol_type = line[len]; in kallsyms__parse() 45 symbol_name = line + len; in kallsyms__parse() 58 free(line); in kallsyms__parse()
|
/linux-4.4.14/arch/arm/mach-footbridge/ |
D | personal-pci.c | 24 unsigned char line; in personal_server_map_irq() local 26 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &line); in personal_server_map_irq() 28 if (line > 0x40 && line <= 0x5f) { in personal_server_map_irq() 33 return irqmap_personal_server[(line & 0x1f) - 8]; in personal_server_map_irq() 34 } else if (line == 0) { in personal_server_map_irq() 38 return irqmap_personal_server[(line - 1) & 3]; in personal_server_map_irq()
|
/linux-4.4.14/tools/testing/selftests/vm/ |
D | mlock2-tests.c | 41 char line[1024] = {0}; in get_vm_area() local 58 while(fgets(line, 1024, file)) { in get_vm_area() 59 end_addr = strchr(line, '-'); in get_vm_area() 73 sscanf(line, "%lx", &start); in get_vm_area() 144 char *line = NULL; in seek_to_smaps_entry() local 159 while (getline(&line, &size, file) > 0) { in seek_to_smaps_entry() 160 if (sscanf(line, "%lx-%lx %s %lx %s %lu %s\n", in seek_to_smaps_entry() 168 free(line); in seek_to_smaps_entry() 169 line = NULL; in seek_to_smaps_entry() 177 free(line); in seek_to_smaps_entry() [all …]
|
D | thuge-gen.c | 77 char *line = NULL; in default_huge_page_size() local 82 while (getline(&line, &linelen, f) > 0) { in default_huge_page_size() 83 if (sscanf(line, "Hugepagesize: %lu kB", &hps) == 1) { in default_huge_page_size() 88 free(line); in default_huge_page_size() 107 char *line = NULL; in read_sysfs() local 124 if (getline(&line, &linelen, f) > 0) { in read_sysfs() 125 sscanf(line, "%lu", &val); in read_sysfs() 128 free(line); in read_sysfs()
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | uttrack.c | 72 u32 component, const char *module, u32 line); 76 u32 component, const char *module, u32 line); 128 u32 component, const char *module, u32 line) in acpi_ut_allocate_and_track() argument 136 ACPI_WARNING((module, line, in acpi_ut_allocate_and_track() 147 ACPI_WARNING((module, line, in acpi_ut_allocate_and_track() 155 line); in acpi_ut_allocate_and_track() 190 const char *module, u32 line) in acpi_ut_allocate_zeroed_and_track() argument 198 ACPI_WARNING((module, line, in acpi_ut_allocate_zeroed_and_track() 210 ACPI_ERROR((module, line, in acpi_ut_allocate_zeroed_and_track() 217 line); in acpi_ut_allocate_zeroed_and_track() [all …]
|
/linux-4.4.14/drivers/s390/char/ |
D | tty3270.c | 137 struct string *line; in tty3270_update_prompt() local 140 line = tp->prompt; in tty3270_update_prompt() 142 line->string[5] = TF_INMDT; in tty3270_update_prompt() 144 line->string[5] = tp->inattr; in tty3270_update_prompt() 147 memcpy(line->string + 6, input, count); in tty3270_update_prompt() 148 line->string[6 + count] = TO_IC; in tty3270_update_prompt() 151 line->string[7 + count] = TO_RA; in tty3270_update_prompt() 152 line->string[10 + count] = 0; in tty3270_update_prompt() 154 raw3270_buffer_address(tp->view.dev, line->string+count+8, off); in tty3270_update_prompt() 155 line->len = 11 + count; in tty3270_update_prompt() [all …]
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | vivid-vbi-gen.c | 129 unsigned line = data->line; in vivid_vbi_gen_raw() local 134 line += start_2nd_field; in vivid_vbi_gen_raw() 135 line -= vbi_fmt->start[data->field]; in vivid_vbi_gen_raw() 138 linebuf += (line * 2 + data->field) * in vivid_vbi_gen_raw() 141 linebuf += (line + data->field * vbi_fmt->count[0]) * in vivid_vbi_gen_raw() 228 static void vivid_vbi_gen_teletext(u8 *packet, unsigned line, unsigned frame) in vivid_vbi_gen_teletext() argument 233 packet[0] = hamming[1 + ((line & 1) << 3)]; in vivid_vbi_gen_teletext() 234 packet[1] = hamming[line >> 1]; in vivid_vbi_gen_teletext() 236 if (line == 0) { in vivid_vbi_gen_teletext() 252 packet[15] = '0' + line / 10; in vivid_vbi_gen_teletext() [all …]
|
/linux-4.4.14/arch/x86/tools/ |
D | test_get_len.c | 53 static void malformed_line(const char *line, int line_nr) in malformed_line() argument 55 fprintf(stderr, "%s: malformed line %d:\n%s", prog, line_nr, line); in malformed_line() 113 char line[BUFSIZE], sym[BUFSIZE] = "<unknown>"; in main() local 121 while (fgets(line, BUFSIZE, stdin)) { in main() 126 if (line[0] == '<') { in main() 128 strcpy(sym, line); in main() 134 strcpy(copy, line); in main() 137 malformed_line(line, insns); in main() 142 malformed_line(line, insns); in main() 158 fprintf(stderr, "Warning: %s", line); in main()
|
/linux-4.4.14/scripts/coccinelle/free/ |
D | pci_free_consistent.cocci | 42 …free_consistent; pci_alloc_consistent on line %s and return without freeing on line %s" % (p1[0].l… 50 …free_consistent; pci_alloc_consistent on line %s and return without freeing on line %s" % (p1[0].l…
|
D | clk_put.cocci | 66 … = "ERROR: missing clk_put; clk_get on line %s and execution via conditional on line %s" % (p1[0].…
|
D | iounmap.cocci | 66 … = "ERROR: missing iounmap; ioremap on line %s and execution via conditional on line %s" % (p1[0].…
|
/linux-4.4.14/arch/arm/mach-ixp4xx/ |
D | common.c | 111 static void gpio_line_config(u8 line, u32 direction) in gpio_line_config() argument 114 *IXP4XX_GPIO_GPOER |= (1 << line); in gpio_line_config() 116 *IXP4XX_GPIO_GPOER &= ~(1 << line); in gpio_line_config() 119 static void gpio_line_get(u8 line, int *value) in gpio_line_get() argument 121 *value = (*IXP4XX_GPIO_GPINR >> line) & 0x1; in gpio_line_get() 124 static void gpio_line_set(u8 line, int value) in gpio_line_set() argument 127 *IXP4XX_GPIO_GPOUTR |= (1 << line); in gpio_line_set() 129 *IXP4XX_GPIO_GPOUTR &= ~(1 << line); in gpio_line_set() 169 int line = irq2gpio[d->irq]; in ixp4xx_set_irq_type() local 177 if (line < 0) in ixp4xx_set_irq_type() [all …]
|
/linux-4.4.14/arch/powerpc/xmon/ |
D | nonstdio.c | 96 static char line[256]; variable 105 lineptr = line; in xmon_getchar() 118 if (lineptr > line) { in xmon_getchar() 126 while (lineptr > line) { in xmon_getchar() 134 if (lineptr >= &line[sizeof(line) - 1]) in xmon_getchar() 142 lineleft = lineptr - line; in xmon_getchar() 143 lineptr = line; in xmon_getchar()
|
/linux-4.4.14/fs/nfs/ |
D | nfsroot.c | 130 static int __init nfs_root_setup(char *line) in nfs_root_setup() argument 134 if (line[0] == '/' || line[0] == ',' || (line[0] >= '0' && line[0] <= '9')) { in nfs_root_setup() 135 strlcpy(nfs_root_parms, line, sizeof(nfs_root_parms)); in nfs_root_setup() 137 size_t n = strlen(line) + sizeof(NFS_ROOT) - 1; in nfs_root_setup() 139 line[sizeof(nfs_root_parms) - sizeof(NFS_ROOT) - 2] = '\0'; in nfs_root_setup() 140 sprintf(nfs_root_parms, NFS_ROOT, line); in nfs_root_setup()
|
/linux-4.4.14/scripts/dtc/ |
D | dtc-parser.tab.c_shipped | 65 #line 20 "dtc-parser.y" /* yacc.c:339 */ 83 #line 84 "dtc-parser.tab.c" /* yacc.c:339 */ 147 #line 38 "dtc-parser.y" /* yacc.c:355 */ 166 #line 167 "dtc-parser.tab.c" /* yacc.c:355 */ 195 #line 196 "dtc-parser.tab.c" /* yacc.c:358 */ 493 /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ 902 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", 1453 Otherwise, the following line sets YYVAL to garbage. 1466 #line 105 "dtc-parser.y" /* yacc.c:1646 */ 1471 #line 1472 "dtc-parser.tab.c" /* yacc.c:1646 */ [all …]
|
D | dtc-lexer.lex.c_shipped | 1 #line 2 "dtc-lexer.lex.c" 3 #line 4 "dtc-lexer.lex.c" 229 /* Whether we're considered to be at the beginning of a line. 235 int yy_bs_lineno; /**< The line count. */ 611 #line 1 "dtc-lexer.l" 635 #line 37 "dtc-lexer.l" 665 #line 666 "dtc-lexer.lex.c" 883 #line 68 "dtc-lexer.l" 885 #line 886 "dtc-lexer.lex.c" 942 #line 69 "dtc-lexer.l" [all …]
|
/linux-4.4.14/tools/perf/util/ |
D | find-vdso-map.c | 4 char line[128]; in find_vdso_map() local 13 while (!found && fgets(line, sizeof(line), maps)) { in find_vdso_map() 17 if (2 != sscanf(line, "%p-%p r-xp %*x %*x:%*x %*u %n", in find_vdso_map() 23 if (!strncmp(&line[m], VDSO__MAP_NAME, in find_vdso_map()
|
D | srcline.c | 30 unsigned line; member 105 &a2l->line); in find_address_in_section() 155 char **file, unsigned int *line, struct dso *dso, in addr2line() argument 180 &a2l->funcname, &a2l->line) && in addr2line() 187 *line = a2l->line; in addr2line() 274 unsigned line = 0; in __get_srcline() local 292 if (!addr2line(dso_name, addr, &file, &line, dso, unwind_inlines)) in __get_srcline() 297 line) < 0) { in __get_srcline()
|
D | trace-event-parse.c | 143 char *line; in parse_ftrace_printk() local 148 line = strtok_r(file, "\n", &next); in parse_ftrace_printk() 149 while (line) { in parse_ftrace_printk() 150 addr_str = strtok_r(line, ":", &fmt); in parse_ftrace_printk() 158 line = strtok_r(NULL, "\n", &next); in parse_ftrace_printk()
|
D | annotate.c | 29 static int disasm_line__parse(char *line, char **namep, char **rawp); 681 static int disasm_line__parse(char *line, char **namep, char **rawp) in disasm_line__parse() argument 683 char *name = line, tmp; in disasm_line__parse() 718 static struct disasm_line *disasm_line__new(s64 offset, char *line, in disasm_line__new() argument 725 dl->line = strdup(line); in disasm_line__new() 727 if (dl->line == NULL) in disasm_line__new() 731 if (disasm_line__parse(dl->line, &dl->name, &dl->ops.raw) < 0) in disasm_line__new() 741 zfree(&dl->line); in disasm_line__new() 749 zfree(&dl->line); in disasm_line__free() 766 static void disasm__add(struct list_head *head, struct disasm_line *line) in disasm__add() argument [all …]
|
D | dwarf-aux.c | 84 Dwarf_Line *line; in cu_find_lineinfo() local 87 line = dwarf_getsrc_die(cu_die, (Dwarf_Addr)addr); in cu_find_lineinfo() 88 if (line && dwarf_lineaddr(line, &laddr) == 0 && in cu_find_lineinfo() 89 addr == (unsigned long)laddr && dwarf_lineno(line, lineno) == 0) { in cu_find_lineinfo() 90 *fname = dwarf_linesrc(line, NULL, NULL); in cu_find_lineinfo() 735 Dwarf_Line *line; in die_walk_lines() local 764 line = dwarf_onesrcline(lines, i); in die_walk_lines() 765 if (line == NULL || in die_walk_lines() 766 dwarf_lineno(line, &lineno) != 0 || in die_walk_lines() 767 dwarf_lineaddr(line, &addr) != 0) { in die_walk_lines() [all …]
|
/linux-4.4.14/arch/um/kernel/ |
D | kmsg_dump.c | 10 static char line[1024]; in kmsg_dumper_stdout() local 28 while (kmsg_dump_get_line(dumper, true, line, sizeof(line), &len)) { in kmsg_dumper_stdout() 29 line[len] = '\0'; in kmsg_dumper_stdout() 30 printf("%s", line); in kmsg_dumper_stdout()
|
D | um_arch.c | 125 static int __init uml_version_setup(char *line, int *add) in uml_version_setup() argument 138 static int __init uml_root_setup(char *line, int *add) in uml_root_setup() argument 153 static int __init no_skas_debug_setup(char *line, int *add) in no_skas_debug_setup() argument 166 static int __init Usage(char *line, int *add) in Usage() argument 185 static void __init uml_checksetup(char *line, int *add) in uml_checksetup() argument 194 if (!strncmp(line, p->str, n) && p->setup_func(line + n, add)) in uml_checksetup()
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | bug.h | 27 #define _BUGVERBOSE_LOCATION(file, line) __BUGVERBOSE_LOCATION(file, line) argument 28 #define __BUGVERBOSE_LOCATION(file, line) \ argument 34 ".short " #line "\n\t" 36 #define _BUGVERBOSE_LOCATION(file, line) argument
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | scripts.c | 22 char line[AVERAGE_LINE_LEN]; member 84 ui_browser__write_nstring(browser, sline->line, browser->width); in script_browser__write() 110 char *line = NULL; in script_browse() local 155 while ((retlen = getline(&line, &len, fp)) != -1) { in script_browse() 156 strncpy(sline->line, line, AVERAGE_LINE_LEN); in script_browse() 160 sline->line[AVERAGE_LINE_LEN - 1] = '\0'; in script_browse() 161 sline->line[AVERAGE_LINE_LEN - 2] = '\n'; in script_browse() 176 free(line); in script_browse()
|
/linux-4.4.14/arch/mips/cavium-octeon/ |
D | octeon-irq.c | 40 u8 line; member 59 static int octeon_irq_set_ciu_mapping(int irq, int line, int bit, int gpio_line, in octeon_irq_set_ciu_mapping() argument 71 cd->line = line; in octeon_irq_set_ciu_mapping() 76 octeon_irq_ciu_to_irq[line][bit] = irq; in octeon_irq_set_ciu_mapping() 90 int irq, int line, int bit) in octeon_irq_force_ciu_mapping() argument 92 return irq_domain_associate(domain, irq, line << 6 | bit); in octeon_irq_force_ciu_mapping() 267 if (cd->line == 0) { in octeon_irq_ciu_enable() 299 if (cd->line == 0) { in octeon_irq_ciu_enable_local() 331 if (cd->line == 0) { in octeon_irq_ciu_disable_local() 366 if (cd->line == 0) in octeon_irq_ciu_disable_all() [all …]
|
/linux-4.4.14/scripts/tracing/ |
D | draw_functrace.py | 102 def parseLine(line): argument 103 line = line.strip() 104 if line.startswith("#"): 106 m = re.match("[^]]+?\\] +([0-9.]+): (\\w+) <-(\\w+)", line) 116 for line in sys.stdin: 118 calltime, callee, caller = parseLine(line)
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | README.hm12 | 13 and from top to bottom. Each block is transmitted in turn, line-by-line. 15 So the first 16 bytes are the first line of the top-left block, the 16 second 16 bytes are the second line of the top-left block, etc. After 17 transmitting this block the first line of the block on the right to the 21 to right, top to bottom. Each block is transmitted in turn, line-by-line. 23 So the first 16 bytes are the first line of the top-left block and 25 second line of 8 UV pairs of the top-left block, etc. After transmitting 26 this block the first line of the block on the right to the first block is 57 // Each block in transmitted in turn, line-by-line. 76 // Each block in transmitted in turn, line-by-line.
|
/linux-4.4.14/drivers/usb/storage/ |
D | freecom.c | 479 static char line[80]; in pdump() local 489 offset += sprintf (line+offset, " - "); in pdump() 492 line[offset++] = buffer[j]; in pdump() 494 line[offset++] = '.'; in pdump() 496 line[offset] = 0; in pdump() 497 usb_stor_dbg(us, "%s\n", line); in pdump() 500 offset += sprintf (line+offset, "%08x:", i); in pdump() 502 offset += sprintf (line+offset, " -"); in pdump() 504 offset += sprintf (line+offset, " %02x", buffer[i] & 0xff); in pdump() 512 offset += sprintf (line+offset, " "); in pdump() [all …]
|
/linux-4.4.14/arch/arm/mm/ |
D | cache-v6.S | 137 USER( mcr p15, 0, r0, c7, c10, 1 ) @ clean D line 180 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line 182 mcr p15, 0, r0, c7, c15, 1 @ clean & invalidate unified line 212 mcrne p15, 0, r0, c7, c10, 1 @ clean D line 214 mcrne p15, 0, r0, c7, c11, 1 @ clean unified line 223 mcrne p15, 0, r1, c7, c14, 1 @ clean & invalidate D line 225 mcrne p15, 0, r1, c7, c15, 1 @ clean & invalidate unified line 229 mcr p15, 0, r0, c7, c6, 1 @ invalidate D line 231 mcr p15, 0, r0, c7, c7, 1 @ invalidate unified line 256 mcr p15, 0, r0, c7, c10, 1 @ clean D line [all …]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | gpio.c | 86 .line = (info & 0x001f) >> 0, in dcb_gpio_parse() 96 .line = (info & 0x0000001f) >> 0, in dcb_gpio_parse() 106 .line = (info & 0x0000003f) >> 0, in dcb_gpio_parse() 119 dcb_gpio_match(struct nvkm_bios *bios, int idx, u8 func, u8 line, in dcb_gpio_match() argument 126 if ((line == 0xff || line == gpio->line) && in dcb_gpio_match() 139 .line = addr >> 4, in dcb_gpio_match()
|
/linux-4.4.14/Documentation/ |
D | dynamic-debug-howto.txt | 27 - line number (including ranges of line numbers) 43 printing from source file 'svcsock.c', line 1603 you simply do: 45 nullarbor:~ # echo 'file svcsock.c line 1603 +p' > 94 nullarbor:~ # echo -c 'file svcsock.c line 1603 +p' > 96 nullarbor:~ # echo -c ' file svcsock.c line 1603 +p ' > 98 nullarbor:~ # echo -n 'file svcsock.c line 1603 +p' > 135 'line' line-range 137 line-range ::= lineno | 141 // Note: line-range cannot contain space, e.g. 188 line [all …]
|
/linux-4.4.14/drivers/media/pci/cx23885/ |
D | cx23885-f300.c | 35 static void f300_set_line(struct cx23885_dev *dev, u32 line, u8 lvl) in f300_set_line() argument 37 cx23885_gpio_enable(dev, line, 1); in f300_set_line() 39 cx23885_gpio_set(dev, line); in f300_set_line() 41 cx23885_gpio_clear(dev, line); in f300_set_line() 44 static u8 f300_get_line(struct cx23885_dev *dev, u32 line) in f300_get_line() argument 46 cx23885_gpio_enable(dev, line, 0); in f300_get_line() 48 return cx23885_gpio_get(dev, line); in f300_get_line()
|
/linux-4.4.14/Documentation/trace/ |
D | function-graph-fold.vim | 4 " -S option to load from the command-line together with a trace. You can then 7 " as would normally appear on the line with the closing brace. Folded 15 let line = getline(a:lnum) 16 if line[-1:] == '{' 17 if line =~ 'finish_task_switch() {$' 21 elseif line[-1:] == '}'
|
/linux-4.4.14/drivers/staging/rts5208/ |
D | trace.c | 9 int line) in _rtsx_trace() argument 14 dev_dbg(rtsx_dev(chip), "[%s][%s]:[%d]\n", file, func, line); in _rtsx_trace() 18 msg->line = (u16)line; in _rtsx_trace()
|
/linux-4.4.14/drivers/media/usb/pwc/ |
D | pwc-uncompress.c | 38 int n, line, col; in pwc_decompress() local 78 for (line = 0; line < pdev->height; line++) { in pwc_decompress() 82 if (line & 1) in pwc_decompress()
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/linux/ |
D | obd.h | 66 int line; member 70 const char *func, int line) in __client_obd_list_lock() argument 79 lock->line = line; in __client_obd_list_lock() 94 lock->func, lock->line, in __client_obd_list_lock()
|
/linux-4.4.14/lib/ |
D | bug.c | 145 unsigned line, warning; in report_bug() local 153 line = 0; in report_bug() 163 line = bug->line; in report_bug() 173 pr_warn("WARNING: at %s:%u\n", file, line); in report_bug() 189 pr_crit("kernel BUG at %s:%u!\n", file, line); in report_bug()
|
/linux-4.4.14/tools/power/cpupower/bench/ |
D | parse.c | 161 char opt[16], val[32], *line = NULL; in prepare_config() local 177 while (getline(&line, &len, configfile) != -1) { in prepare_config() 178 if (line[0] == '#' || line[0] == ' ' || line[0] == '\n') in prepare_config() 181 if (sscanf(line, "%14s = %30s", opt, val) < 2) in prepare_config() 225 free(line); in prepare_config()
|
/linux-4.4.14/arch/nios2/mm/ |
D | tlb.c | 157 void dump_tlb_line(unsigned long line) in dump_tlb_line() argument 162 pr_debug("dump tlb-entries for line=%#lx (addr %08lx)\n", line, in dump_tlb_line() 163 line << (PAGE_SHIFT + cpuinfo.tlb_num_ways_log2)); in dump_tlb_line() 168 WRCTL(CTL_PTEADDR, line << 2); in dump_tlb_line() 208 unsigned int line; in flush_tlb_pid() local 215 for (line = 0; line < cpuinfo.tlb_num_lines; line++) { in flush_tlb_pid() 216 WRCTL(CTL_PTEADDR, line << 2); in flush_tlb_pid()
|
/linux-4.4.14/drivers/net/wireless/brcm80211/include/ |
D | defs.h | 100 #define _PADLINE(line) pad ## line argument 101 #define _XSTR(line) _PADLINE(line) argument
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
D | gpio.h | 14 u8 line; member 29 int nvkm_gpio_find(struct nvkm_gpio *, int idx, u8 tag, u8 line, 31 int nvkm_gpio_set(struct nvkm_gpio *, int idx, u8 tag, u8 line, int state); 32 int nvkm_gpio_get(struct nvkm_gpio *, int idx, u8 tag, u8 line);
|
/linux-4.4.14/tools/perf/tests/ |
D | code-reading.c | 36 static size_t read_objdump_line(const char *line, size_t line_len, void *buf, in read_objdump_line() argument 43 p = strchr(line, ':'); in read_objdump_line() 46 i = p + 1 - line; in read_objdump_line() 54 if (!isspace(line[i])) in read_objdump_line() 58 if (i >= line_len || !isxdigit(line[i])) in read_objdump_line() 60 c1 = line[i++]; in read_objdump_line() 61 if (i >= line_len || !isxdigit(line[i])) in read_objdump_line() 63 c2 = line[i++]; in read_objdump_line() 65 if (i < line_len && line[i] && !isspace(line[i])) in read_objdump_line() 78 char *line = NULL; in read_objdump_output() local [all …]
|
/linux-4.4.14/drivers/video/fbdev/mb862xx/ |
D | mb862xxfb_accel.c | 81 unsigned const char *line; in mb86290fb_imageblit1() local 96 line = image->data; in mb86290fb_imageblit1() 106 memcpy(&cmd[9 + i * step], line, step << 2); in mb86290fb_imageblit1() 115 line += bytes; in mb86290fb_imageblit1() 130 unsigned const char *line, *ptr; in mb86290fb_imageblit8() local 139 line = ptr = image->data; in mb86290fb_imageblit8() 143 ptr = line; in mb86290fb_imageblit8() 154 line += bytes; in mb86290fb_imageblit8() 169 unsigned const char *line; in mb86290fb_imageblit16() local 173 line = image->data; in mb86290fb_imageblit16() [all …]
|
/linux-4.4.14/sound/pci/ca0106/ |
D | ca0106_proc.c | 299 char line[64]; in snd_ca0106_proc_reg_write32() local 301 while (!snd_info_get_line(buffer, line, sizeof(line))) { in snd_ca0106_proc_reg_write32() 302 if (sscanf(line, "%x %x", ®, &val) != 2) in snd_ca0106_proc_reg_write32() 400 char line[64]; in snd_ca0106_proc_reg_write() local 402 while (!snd_info_get_line(buffer, line, sizeof(line))) { in snd_ca0106_proc_reg_write() 403 if (sscanf(line, "%x %x %x", ®, &channel_id, &val) != 3) in snd_ca0106_proc_reg_write() 414 char line[64]; in snd_ca0106_proc_i2c_write() local 416 while (!snd_info_get_line(buffer, line, sizeof(line))) { in snd_ca0106_proc_i2c_write() 417 if (sscanf(line, "%x %x", ®, &val) != 2) in snd_ca0106_proc_i2c_write()
|
/linux-4.4.14/scripts/kconfig/lxdialog/ |
D | textbox.c | 343 char *line; in print_line() local 345 line = get_line(); in print_line() 346 line += MIN(strlen(line), hscroll); /* Scroll horizontally */ in print_line() 349 waddnstr(win, line, MIN(strlen(line), width - 2)); in print_line() 372 static char line[MAX_LEN + 1]; in get_line() local 380 line[i++] = *(page++); in get_line() 384 line[i++] = '\0'; in get_line() 389 line[i] = '\0'; in get_line() 393 return line; in get_line()
|
/linux-4.4.14/drivers/staging/speakup/ |
D | DefaultKeyAssignments | 13 KeyPad-7 Say Previous Line (UP one line) 14 KeyPad-9 Say Next Line (down one line) 18 InsKeyPad-4 say from left edge of line to reading cursor. 20 InsKeyPad-6 Say from reading cursor to right edge of line. 26 InsKeyPad-plus Say from reading cursor line to bottom of screen. 29 KeyPad-period Say Position (current line, position and console) 35 ControlKeyPad-1 Move reading cursor to last character on current line. 38 InsKeyPad-star n<x|y> go to line (y) or column (x). Where 'n' is any
|
/linux-4.4.14/firmware/ |
D | ihex2fw.c | 138 int line = 1; in process_ihex() local 145 if (data[i] == '\n') line++; in process_ihex() 151 fprintf(stderr, "Can't find valid record at line %d\n", line); in process_ihex() 171 line); in process_ihex() 186 line, crcbyte, (unsigned char)(crcbyte-crc)); in process_ihex() 204 line); in process_ihex() 213 type, line); in process_ihex() 227 type, line); in process_ihex()
|
/linux-4.4.14/tools/lib/api/fs/ |
D | fs.c | 270 char line[64]; in filename__read_int() local 276 if (read(fd, line, sizeof(line)) > 0) { in filename__read_int() 277 *value = atoi(line); in filename__read_int() 287 char line[64]; in filename__read_ull() local 293 if (read(fd, line, sizeof(line)) > 0) { in filename__read_ull() 294 *value = strtoull(line, NULL, 10); in filename__read_ull()
|
/linux-4.4.14/tools/cgroup/ |
D | cgroup_event_listener.c | 27 char line[LINE_MAX]; in main() local 50 ret = snprintf(line, LINE_MAX, "%d %d %s", efd, cfd, argv[2]); in main() 54 ret = write(event_control, line, strlen(line) + 1); in main()
|
/linux-4.4.14/drivers/scsi/snic/ |
D | snic_io.c | 411 char line[LINE_BUFSZ] = { '\0' }; in snic_dump_desc() local 423 snprintf(line, LINE_BUFSZ, "SNIC_REQ_REPORT_TGTS :"); in snic_dump_desc() 428 snprintf(line, LINE_BUFSZ, "SNIC_REQ_ICMND : 0x%x :", in snic_dump_desc() 434 snprintf(line, LINE_BUFSZ, "SNIC_REQ_ITMF :"); in snic_dump_desc() 439 snprintf(line, LINE_BUFSZ, "SNIC_REQ_HBA_RESET :"); in snic_dump_desc() 444 snprintf(line, LINE_BUFSZ, "SNIC_REQ_EXCH_VER :"); in snic_dump_desc() 453 snprintf(line, LINE_BUFSZ, "SNIC_RSP_REPORT_TGTS_CMPL :"); in snic_dump_desc() 458 snprintf(line, LINE_BUFSZ, "SNIC_RSP_ICMND_CMPL : 0x%x :", in snic_dump_desc() 464 snprintf(line, LINE_BUFSZ, "SNIC_RSP_ITMF_CMPL :"); in snic_dump_desc() 469 snprintf(line, LINE_BUFSZ, "SNIC_RSP_HBA_RESET_CMPL :"); in snic_dump_desc() [all …]
|
/linux-4.4.14/kernel/ |
D | panic.c | 435 static void warn_slowpath_common(const char *file, int line, void *caller, in warn_slowpath_common() argument 442 raw_smp_processor_id(), current->pid, file, line, caller); in warn_slowpath_common() 465 void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...) in warn_slowpath_fmt() argument 471 warn_slowpath_common(file, line, __builtin_return_address(0), in warn_slowpath_fmt() 477 void warn_slowpath_fmt_taint(const char *file, int line, in warn_slowpath_fmt_taint() argument 484 warn_slowpath_common(file, line, __builtin_return_address(0), in warn_slowpath_fmt_taint() 490 void warn_slowpath_null(const char *file, int line) in warn_slowpath_null() argument 492 warn_slowpath_common(file, line, __builtin_return_address(0), in warn_slowpath_null()
|
/linux-4.4.14/drivers/media/pci/zoran/ |
D | zoran_procfs.c | 142 char *line, *ldelim, *varname, *svar, *tdelim; in zoran_write() local 164 line = strpbrk(sp, ldelim); in zoran_write() 165 while (line) { in zoran_write() 166 *line = 0; in zoran_write() 174 sp = line + 1; in zoran_write() 175 line = strpbrk(sp, ldelim); in zoran_write()
|
/linux-4.4.14/sound/core/seq/ |
D | seq_lock.c | 29 void snd_use_lock_sync_helper(snd_use_lock_t *lockp, const char *file, int line) in snd_use_lock_sync_helper() argument 34 pr_warn("ALSA: seq_lock: lock trouble [counter = %d] in %s:%d\n", atomic_read(lockp), file, line); in snd_use_lock_sync_helper() 39 pr_warn("ALSA: seq_lock: timeout [%d left] in %s:%d\n", atomic_read(lockp), file, line); in snd_use_lock_sync_helper()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | twl6030_omap4.dtsi | 11 * On most OMAP4 platforms, the twl6030 IRQ line is connected 12 * to the SYS_NIRQ1 line on OMAP and the twl6030 MSECURE line is 13 * connected to the fref_clk0_out.sys_drm_msecure line.
|
D | ste-nomadik-nhk15.dts | 39 pins = "GPIO76_B20"; // IRQ line 43 pins = "GPIO77_B8"; // reset line 51 pins = "GPIO78_A8"; // IRQ line 55 pins = "GPIO79_C9"; // reset line 157 line-name = "SATA EN";
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | iss4xx-mpic.dts | 40 i-cache-line-size = <32>; 41 d-cache-line-size = <32>; 54 i-cache-line-size = <32>; 55 d-cache-line-size = <32>; 70 i-cache-line-size = <32>; 71 d-cache-line-size = <32>; 86 i-cache-line-size = <32>; 87 d-cache-line-size = <32>;
|
/linux-4.4.14/arch/sparc/boot/ |
D | piggyback.c | 82 static int start_line(const char *line) in start_line() argument 84 if (strcmp(line + 10, " _start\n") == 0) in start_line() 86 else if (strcmp(line + 18, " _start\n") == 0) in start_line() 91 static int end_line(const char *line) in end_line() argument 93 if (strcmp(line + 10, " _end\n") == 0) in end_line() 95 else if (strcmp (line + 18, " _end\n") == 0) in end_line()
|
/linux-4.4.14/include/linux/ |
D | kmsg_dump.h | 59 char *line, size_t size, size_t *len); 62 char *line, size_t size, size_t *len); 80 bool syslog, const char *line, in kmsg_dump_get_line_nolock() argument 87 const char *line, size_t size, size_t *len) in kmsg_dump_get_line() argument
|
D | tty_driver.h | 289 int (*poll_init)(struct tty_driver *driver, int line, char *options); 290 int (*poll_get_char)(struct tty_driver *driver, int line); 291 void (*poll_put_char)(struct tty_driver *driver, int line, char ch); 337 extern struct tty_driver *tty_find_polling_driver(char *name, int *line);
|
D | isicom.h | 59 #define BOARD(line) (((line) >> 4) & 0x3) argument
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-probe.txt | 19 'perf probe' [options] --line='LINE' 28 without debuginfo, or by C expressions (C line numbers, C function names, 73 --line=:: 139 2) Define event based on source file with line number 147 …m function entry address in bytes, ':RLN' is the relative-line number from function entry line, an… 148 …by the source line number or lazy matching by using 'SRC:ALN' or 'SRC;PTN' syntax, where 'SRC' is … 169 FUNC specifies the function name of showing lines. 'RLN' is the start line 170 number from function entry line, and 'RLN2' is the end line number. As same as 171 probe syntax, 'SRC' means the source file path, 'ALN' is start line number, 172 and 'ALN2' is end line number in the file. It is also possible to specify how [all …]
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | bug.h | 20 .macro EMIT_BUG_ENTRY addr,file,line,flags 23 .short \line, \flags 31 .macro EMIT_BUG_ENTRY addr,file,line,flags 120 .macro EMIT_BUG_ENTRY addr,file,line,flags
|
/linux-4.4.14/drivers/media/pci/mantis/ |
D | mantis_dma.c | 153 u32 line, step; in mantis_risc_program() local 162 for (line = 0; line < MANTIS_BLOCK_COUNT; line++) { in mantis_risc_program() 164 dprintk(MANTIS_DEBUG, 1, "RISC PROG line=[%d], step=[%d]", line, step); in mantis_risc_program() 168 RISC_STATUS(line) | in mantis_risc_program()
|
/linux-4.4.14/net/ceph/ |
D | armor.c | 39 int line = 0; in ceph_armor() local 64 line += 4; in ceph_armor() 65 if (line == 64) { in ceph_armor() 66 line = 0; in ceph_armor()
|
/linux-4.4.14/arch/sh/mm/ |
D | cache-debugfs.c | 68 unsigned int line; in cache_seq_show() local 74 for (addr = addrstart, line = 0; in cache_seq_show() 76 addr += cache->linesz, line++) { in cache_seq_show() 85 line, data & 2 ? 'U' : ' ', in cache_seq_show()
|
/linux-4.4.14/drivers/pinctrl/ |
D | pinctrl-at91-pio4.c | 90 unsigned line; member 167 BIT(pin->line)); in atmel_gpio_irq_set_type() 208 BIT(pin->line)); in atmel_gpio_irq_mask() 217 BIT(pin->line)); in atmel_gpio_irq_unmask() 226 int line = ATMEL_PIO_LINE(d->hwirq); in atmel_gpio_irq_set_wake() local 232 atmel_pioctrl->pm_wakeup_sources[bank] |= BIT(line); in atmel_gpio_irq_set_wake() 234 atmel_pioctrl->pm_wakeup_sources[bank] &= ~(BIT(line)); in atmel_gpio_irq_set_wake() 298 BIT(pin->line)); in atmel_gpio_direction_input() 314 return !!(reg & BIT(pin->line)); in atmel_gpio_get() 326 BIT(pin->line)); in atmel_gpio_direction_output() [all …]
|
/linux-4.4.14/Documentation/networking/ |
D | cxacru.txt | 93 Changes in adsl/line state are reported via kernel log messages: 95 [4942243.663766] ATM dev 0: ADSL line: down 96 [4942249.665075] ATM dev 0: ADSL line: attempting to activate 97 [4942253.654954] ATM dev 0: ADSL line: training 98 [4942255.666387] ATM dev 0: ADSL line: channel analysis 99 [4942259.656262] ATM dev 0: ADSL line: exchange 100 [2635357.696901] ATM dev 0: ADSL line: up (8128 kb/s down | 832 kb/s up)
|
/linux-4.4.14/fs/xfs/ |
D | xfs_message.c | 101 asswarn(char *expr, char *file, int line) in asswarn() argument 104 expr, file, line); in asswarn() 109 assfail(char *expr, char *file, int line) in assfail() argument 112 expr, file, line); in assfail()
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | HD-Audio-Controls.txt | 15 headphone and line-out jacks. If built-in speakers and headphone 16 and/or line-out jacks are available on a machine, this controls 18 When there are only either headphones or line-out jacks, it gives 22 When both headphone and line-out jacks are present, it gives 24 speaker-only is chosen, plugging into a headphone or a line-out jack 25 mutes the speakers, but not line-outs. When line-out+speaker is 27 line-outs. 46 When this control is ON, treat the headphone jacks as line-out 47 jacks. That is, the headphone won't auto-mute the other line-outs, 62 When it's ON, the corresponding input jacks (usually a line-in and a
|
/linux-4.4.14/Documentation/devicetree/bindings/nios2/ |
D | nios2.txt | 17 - dcache-line-size: Contains data cache line size. 18 - icache-line-size: Contains instruction line size. 46 dcache-line-size = <32>; 47 icache-line-size = <32>;
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qed/ |
D | qed_cxt.c | 316 u32 lines, line, sz_left; in qed_ilt_blk_alloc() local 323 line = p_blk->start_line + start_line_offset - in qed_ilt_blk_alloc() 341 ilt_shadow[line].p_phys = p_phys; in qed_ilt_blk_alloc() 342 ilt_shadow[line].p_virt = p_virt; in qed_ilt_blk_alloc() 343 ilt_shadow[line].size = size; in qed_ilt_blk_alloc() 347 line, (u64)p_phys, p_virt, size); in qed_ilt_blk_alloc() 350 line++; in qed_ilt_blk_alloc() 661 u32 line, rt_offst, i; in qed_ilt_init_pf() local 676 line = clients[i].first.val - p_mngr->pf_start_line; in qed_ilt_init_pf() 680 for (; line <= clients[i].last.val - p_mngr->pf_start_line; in qed_ilt_init_pf() [all …]
|
/linux-4.4.14/arch/mips/ |
D | Kconfig.debug | 36 bool "Built-in kernel command line" 40 by default specifies the kernel command line options. However, 42 default kernel command line or add a few extra options to it. 44 command line options directly into the kernel. For that, you 49 line if CMDLINE_OVERRIDE is set to 'N'. Otherwise, the default 50 command line will be ignored and replaced by the built-in string. 53 the command line from the firmware or the second-stage bootloader. 62 when you want to add some extra options to the command line or ignore 63 the default command line, you can supply some command-line options at 72 bool "Built-in command line overrides firmware arguments" [all …]
|
/linux-4.4.14/Documentation/gpio/ |
D | drivers-on-gpio.txt | 13 i.e. a LED will turn on/off in response to a GPIO line going high or low 16 - gpio-keys: drivers/input/keyboard/gpio_keys.c is used when your GPIO line 20 GPIO line cannot generate interrupts, so it needs to be periodically polled 29 an external speaker connected to a GPIO line. 37 external connector status, such as a headset line for an audio driver or an 41 system by pulling a GPIO line and will register a restart handler so 45 by pulling a GPIO line and will register a pm_power_off() callback so that 64 a GPIO line, integrating with the W1 subsystem and handling devices on 68 system, connected to a GPIO line (and optionally a GPIO alarm line), 73 regulator providing a certain voltage by pulling a GPIO line, integrating [all …]
|
/linux-4.4.14/tools/testing/ktest/ |
D | ktest.pl | 908 my $line; 925 $line = $2; 1525 my $line; 1537 $line = wait_for_input($monitor_fp, $time); 1538 last if (!defined($line)); 1539 print "$line"; 1540 $full_line .= $line; 1569 if ($line =~ /\n/) { 1844 my $line; 1869 $line = ""; [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | gpio-pcf857x.txt | 5 the direction and output level into a single bit per line, which can't be read 6 back. We can't actually know at initialization time whether a line is configured 9 of reset (if any). The only reliable solution for setting up line direction is 40 line. When a bit is set to zero, the corresponding line will be initialized to 41 the input (pulled-up) state. When the bit is set to one, the line will be 46 an interrupt controller. When the expander interrupt line is connected all the
|
D | gpio-poweroff.txt | 1 Driver a GPIO line that can be used to turn the power off. 4 At driver load time, the driver will request the given gpio line and 6 not found, the GPIO line will be driven in the inactive 26 - input : Initially configure the GPIO line as an input. Only reconfigure
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_cs.h | 50 u16 line; member 52 u16 line; 111 __bfa_trc(struct bfa_trc_mod_s *trcm, int fileno, int line, u64 data) in __bfa_trc() argument 120 trc->line = (u16) line; in __bfa_trc() 131 __bfa_trc32(struct bfa_trc_mod_s *trcm, int fileno, int line, u32 data) in __bfa_trc32() argument 140 trc->line = (u16) line; in __bfa_trc32()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/uniphier/ |
D | cache-uniphier.txt | 15 - cache-line-size: specifies the line size in bytes 34 cache-line-size = <128>; 46 cache-line-size = <128>; 58 cache-line-size = <256>;
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | bttv-risc.c | 53 u32 instructions,line,todo; in bttv_risc_packed() local 81 for (line = 0; line < store_lines; line++) { in bttv_risc_packed() 83 (line >= (store_lines - VCR_HACK_LINES))) in bttv_risc_packed() 134 unsigned int instructions,line,todo,ylen,chroma; in bttv_risc_planar() local 161 for (line = 0; line < ylines; line++) { in bttv_risc_planar() 163 (line >= (ylines - VCR_HACK_LINES))) in bttv_risc_planar() 171 chroma = ((line & 1) == 0); in bttv_risc_planar() 173 chroma = ((line & 1) == 1); in bttv_risc_planar() 177 chroma = ((line & 3) == 0); in bttv_risc_planar() 179 chroma = ((line & 3) == 2); in bttv_risc_planar() [all …]
|
/linux-4.4.14/arch/ia64/scripts/ |
D | unwcheck.py | 39 for line in os.popen("%s -u %s" % (readelf, sys.argv[1])): 40 m = start_pattern.match(line) 51 m = rlen_pattern.match(line)
|
/linux-4.4.14/arch/unicore32/kernel/ |
D | traps.c | 269 void __pte_error(const char *file, int line, unsigned long val) in __pte_error() argument 271 printk(KERN_DEFAULT "%s:%d: bad pte %08lx.\n", file, line, val); in __pte_error() 274 void __pmd_error(const char *file, int line, unsigned long val) in __pmd_error() argument 276 printk(KERN_DEFAULT "%s:%d: bad pmd %08lx.\n", file, line, val); in __pmd_error() 279 void __pgd_error(const char *file, int line, unsigned long val) in __pgd_error() argument 281 printk(KERN_DEFAULT "%s:%d: bad pgd %08lx.\n", file, line, val); in __pgd_error()
|
/linux-4.4.14/net/irda/ircomm/ |
D | ircomm_lmp.c | 135 int line; in ircomm_lmp_flow_control() local 141 line = cb->line; in ircomm_lmp_flow_control() 143 self = (struct ircomm_cb *) hashbin_lock_find(ircomm, line, NULL); in ircomm_lmp_flow_control() 180 cb->line = self->line; in ircomm_lmp_data_request()
|
D | ircomm_core.c | 107 struct ircomm_cb *ircomm_open(notify_t *notify, __u8 service_type, int line) in ircomm_open() argument 137 self->line = line; in ircomm_open() 139 hashbin_insert(ircomm, (irda_queue_t *) self, line, NULL); in ircomm_open() 190 entry = hashbin_remove(ircomm, self->line, NULL); in ircomm_close() 522 if(self->line < 0x10) in ircomm_seq_show() 523 seq_printf(seq, "ircomm%d", self->line); in ircomm_seq_show() 525 seq_printf(seq, "irlpt%d", self->line - 0x10); in ircomm_seq_show()
|
/linux-4.4.14/arch/x86/kernel/cpu/mtrr/ |
D | if.c | 100 char line[LINE_SIZE]; in mtrr_write() local 107 memset(line, 0, LINE_SIZE); in mtrr_write() 118 if (copy_from_user(line, buf, length)) in mtrr_write() 121 linelen = strlen(line); in mtrr_write() 122 ptr = line + linelen - 1; in mtrr_write() 126 if (!strncmp(line, "disable=", 8)) { in mtrr_write() 127 reg = simple_strtoul(line + 8, &ptr, 0); in mtrr_write() 134 if (strncmp(line, "base=", 5)) in mtrr_write() 137 base = simple_strtoull(line + 5, &ptr, 0); in mtrr_write()
|
/linux-4.4.14/tools/perf/scripts/python/ |
D | net_dropmonitor.py | 24 for line in f: 25 loc = int(line.split()[0], 16) 26 name = line.split()[2]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | conn.c | 38 const struct nvkm_gpio_ntfy_rep *line = notify->data; in nvkm_connector_hpd() local 42 CONN_DBG(conn, "HPD: %d", line->mask); in nvkm_connector_hpd() 111 .line = func.line, in nvkm_connector_ctor()
|
D | rootnv04.c | 47 u32 line; in nv04_disp_scanoutpos() local 71 line = nvkm_rd32(device, 0x600868 + hoff); in nv04_disp_scanoutpos() 73 args->v0.hline = (line & 0xffff0000) >> 16; in nv04_disp_scanoutpos() 74 args->v0.vline = (line & 0x0000ffff); in nv04_disp_scanoutpos()
|
D | outpdp.c | 138 const struct nvkm_i2c_ntfy_rep *line = notify->data; in nvkm_output_dp_hpd() local 144 OUTP_DBG(&outp->base, "HPD: %d", line->mask); in nvkm_output_dp_hpd() 147 if (line->mask & NVKM_I2C_UNPLUG) in nvkm_output_dp_hpd() 149 if (line->mask & NVKM_I2C_PLUG) in nvkm_output_dp_hpd() 159 const struct nvkm_i2c_ntfy_rep *line = notify->data; in nvkm_output_dp_irq() local 167 OUTP_DBG(&outp->base, "IRQ: %d", line->mask); in nvkm_output_dp_irq()
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | spi-gpio.txt | 8 - gpio-sck: GPIO spec for the SCK line to use 9 - gpio-miso: GPIO spec for the MISO line to use 10 - gpio-mosi: GPIO spec for the MOSI line to use
|
/linux-4.4.14/arch/mips/lasat/ |
D | picvue.c | 110 void pvc_write_string(const unsigned char *str, u8 addr, int line) in pvc_write_string() argument 114 if (line > 0 && (PVC_NLINES > 1)) in pvc_write_string() 115 addr += 0x40 * line; in pvc_write_string() 124 void pvc_write_string_centered(const unsigned char *str, int line) in pvc_write_string_centered() argument 134 pvc_write_string(str, addr, line); in pvc_write_string_centered()
|
/linux-4.4.14/drivers/mtd/tests/ |
D | readtest.c | 94 char line[128]; in dump_eraseblock() local 100 char *p = line; in dump_eraseblock() 105 printk(KERN_CRIT "%s\n", line); in dump_eraseblock() 114 char *p = line; in dump_eraseblock() 120 printk(KERN_CRIT "%s\n", line); in dump_eraseblock()
|
/linux-4.4.14/drivers/media/i2c/ |
D | tvp5150.c | 593 int line; in tvp5150_g_sliced_vbi_cap() local 599 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) { in tvp5150_g_sliced_vbi_cap() 600 cap->service_lines[0][line] |= regs->type.vbi_type; in tvp5150_g_sliced_vbi_cap() 624 unsigned int type,u8 flags, int line, in tvp5150_set_vbi() argument 637 line += 3; in tvp5150_set_vbi() 640 if (line<6||line>27) in tvp5150_set_vbi() 645 (line>=regs->type.ini_line) && in tvp5150_set_vbi() 646 (line<=regs->type.end_line)) { in tvp5150_set_vbi() 658 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI; in tvp5150_set_vbi() 672 const struct i2c_vbi_ram_value *regs, int line) in tvp5150_get_vbi() argument [all …]
|
/linux-4.4.14/scripts/gdb/linux/ |
D | dmesg.py | 56 for line in memoryview(text).tobytes().splitlines(): 59 line=line))
|
/linux-4.4.14/drivers/isdn/hysdn/ |
D | hysdn_sched.c | 150 hysdn_tx_cfgline(hysdn_card *card, unsigned char *line, unsigned short chan) in hysdn_tx_cfgline() argument 156 hysdn_addlog(card, "async tx-cfg chan=%d len=%d", chan, strlen(line) + 1); in hysdn_tx_cfgline() 169 strcpy(card->async_data, line); in hysdn_tx_cfgline() 170 card->async_len = strlen(line) + 1; in hysdn_tx_cfgline()
|
/linux-4.4.14/include/asm-generic/ |
D | bug.h | 30 unsigned short line; member 66 void warn_slowpath_fmt(const char *file, const int line, 69 void warn_slowpath_fmt_taint(const char *file, const int line, unsigned taint, 71 extern void warn_slowpath_null(const char *file, const int line);
|
/linux-4.4.14/Documentation/devicetree/bindings/dma/ |
D | zxdma.txt | 10 have specific request line 27 Use specific request line passing from dmax 28 For example, spdif0 tx channel request line is 4
|
D | k3dma.txt | 12 have specific request line 30 Use specific request line passing from dmax 31 For example, i2c0 read channel request line is 18, while write channel use 19
|
D | moxa,moxart-dma.txt | 11 - #dma-cells : Should be 1, a single cell holding a line request number 34 Use specific request line passing from dma 35 For example, MMC request line is 5
|
D | sirfsoc-dma.txt | 27 Fill the specific dma request line in dmas. In the below example, spi0 read 28 channel request line is 9 of the 2nd dma controller, while write channel uses 29 4 of the 2nd dma controller; spi1 read channel request line is 12 of the 1st
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/ |
D | iwl-devtrace-iwlwifi.h | 124 u32 data1, u32 data2, u32 line, u32 blink1, 128 TP_ARGS(dev, desc, tsf_low, data1, data2, line, 137 __field(u32, line) 157 __entry->line = line; 177 __entry->data2, __entry->line, __entry->blink1,
|
/linux-4.4.14/drivers/net/wireless/rt2x00/ |
D | rt2x00debug.c | 445 char line[16]; \ 464 size = sprintf(line, __format, value); \ 466 if (copy_to_user(buf, line, size)) \ 481 char line[16]; \ 492 if (length > sizeof(line)) \ 495 if (copy_from_user(line, buf, length)) \ 498 size = strlen(line); \ 499 value = simple_strtoul(line, NULL, 0); \ 538 char line[16]; in rt2x00debug_read_dev_flags() local 544 size = sprintf(line, "0x%.8x\n", (unsigned int)intf->rt2x00dev->flags); in rt2x00debug_read_dev_flags() [all …]
|
/linux-4.4.14/scripts/mod/ |
D | sumversion.c | 307 char *cmd, *file, *line, *dir; in parse_source_files() local 341 while ((line = get_next_line(&pos, file, flen)) != NULL) { in parse_source_files() 342 char* p = line; in parse_source_files() 344 if (strncmp(line, "source_", sizeof("source_")-1) == 0) { in parse_source_files() 345 p = strrchr(line, ' '); in parse_source_files() 347 warn("malformed line: %s\n", line); in parse_source_files() 358 if (strncmp(line, "deps_", sizeof("deps_")-1) == 0) { in parse_source_files() 378 if ((strstr(line, dir)+strlen(dir)-1) == strrchr(line, '/')) { in parse_source_files() 379 if (!parse_file(line, md)) { in parse_source_files() 381 line, strerror(errno)); in parse_source_files()
|
/linux-4.4.14/arch/arm64/kernel/ |
D | traps.c | 457 void __pte_error(const char *file, int line, unsigned long val) in __pte_error() argument 459 pr_crit("%s:%d: bad pte %016lx.\n", file, line, val); in __pte_error() 462 void __pmd_error(const char *file, int line, unsigned long val) in __pmd_error() argument 464 pr_crit("%s:%d: bad pmd %016lx.\n", file, line, val); in __pmd_error() 467 void __pud_error(const char *file, int line, unsigned long val) in __pud_error() argument 469 pr_crit("%s:%d: bad pud %016lx.\n", file, line, val); in __pud_error() 472 void __pgd_error(const char *file, int line, unsigned long val) in __pgd_error() argument 474 pr_crit("%s:%d: bad pgd %016lx.\n", file, line, val); in __pgd_error()
|
/linux-4.4.14/Documentation/devicetree/bindings/power/reset/ |
D | ltc2952-poweroff.txt | 11 chip's watchdog line 13 chip's kill line 17 chip's trigger line. If this property is not set, the
|
/linux-4.4.14/Documentation/devicetree/bindings/pci/ |
D | ti-pci.txt | 16 main interrupt line and the second for MSI interrupt line. 27 - gpios : Should be added if a gpio line is required to drive PERST# line
|
/linux-4.4.14/scripts/coccinelle/locks/ |
D | call_kern.cocci | 104 msg = "ERROR: function %s called on line %s inside lock on line %s but uses GFP_KERNEL" % (fn,p2[0]…
|
/linux-4.4.14/Documentation/target/ |
D | tcm_mod_builder.py | 350 line = p.readline() 351 while line: 352 if process_fo == 0 and re.search('struct target_core_fabric_ops {', line): 353 line = p.readline() 358 line = p.readline() 360 if not re.search('\(\*', line): 363 fabric_ops.append(line.rstrip()) 366 line = p.readline() 368 if not re.search('\(\*', line): 371 fabric_ops.append(line.rstrip())
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | mmc.txt | 20 - cd-inverted: when present, polarity on the CD line is inverted. See the note 21 below for the case, when a GPIO is used for the CD line 22 - wp-inverted: when present, polarity on the WP line is inverted. See the note 23 below for the case, when a GPIO is used for the WP line 24 - disable-wp: When set no physical WP line is present. This property should 28 line. 52 *NOTE* on CD and WP polarity. To use common for all SD/MMC host controllers line 54 line levels. We choose to follow the SDHCI standard, which specifies both those 56 the CD line is active high, i.e. it is high, when a card is inserted. Similar 66 property results in a double-inversion and actually means the "normal" line
|
/linux-4.4.14/drivers/media/pci/cx25821/ |
D | cx25821-video-upstream.c | 102 unsigned int line, i; in cx25821_update_riscprogram() local 113 for (line = 0; line < lines; line++) { in cx25821_update_riscprogram() 119 || (line < (NTSC_FIELD_HEIGHT - 1)) || !(out->is_60hz)) { in cx25821_update_riscprogram() 134 unsigned int line, i; in cx25821_risc_field_upstream() local 148 for (line = 0; line < lines; line++) { in cx25821_risc_field_upstream() 154 || (line < (NTSC_FIELD_HEIGHT - 1)) || !(out->is_60hz)) in cx25821_risc_field_upstream() 161 if (fifo_enable && line == 3) { in cx25821_risc_field_upstream()
|
/linux-4.4.14/drivers/tty/ |
D | cyclades.c | 826 int channel = info->line - card->first_line; in cyy_change_rts_dtr() 998 info->line])) in cyz_handle_rx() 999 mod_timer(&cyz_rx_full_timer[info->line], in cyz_handle_rx() 1207 __u32 channel = info->line - card->first_line; in cyz_rx_restart() 1214 info->line, retval); in cyz_rx_restart() 1274 channel = info->line - card->first_line; in cy_startup() 1350 "%x\n", info->line, retval); in cy_startup() 1357 "%x\n", info->line, retval); in cy_startup() 1394 int channel = info->line - card->first_line; in start_xmit() 1409 "%x\n", info->line, retval); in start_xmit() [all …]
|
/linux-4.4.14/drivers/dma/ipu/ |
D | ipu_irq.c | 273 int i, line; in ipu_irq_handler() local 287 while ((line = ffs(status))) { in ipu_irq_handler() 291 line--; in ipu_irq_handler() 292 status &= ~(1UL << line); in ipu_irq_handler() 295 map = src2map(32 * i + line); in ipu_irq_handler() 302 line, i); in ipu_irq_handler()
|
/linux-4.4.14/include/linux/platform_data/ |
D | serial-sccnxp.h | 52 #define MCTRL_SIG(sig, line) ((line) << (sig)) argument
|
/linux-4.4.14/arch/mn10300/unit-asb2305/ |
D | pci-irq.c | 30 u8 line, pin; in pcibios_fixup_irqs() local 39 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &line); in pcibios_fixup_irqs()
|
/linux-4.4.14/Documentation/serial/ |
D | tty.txt | 18 copy of the structure. You must not re-register over the top of the line 22 In order to remove a line discipline call tty_unregister_ldisc(). 39 open() - Called when the line discipline is attached to 40 the terminal. No other call into the line 45 the line discipline is willing to accept from the 50 close() - This is called on a terminal when the line 55 hangup() - Called when the tty line is hung up. 56 The line discipline should cease I/O to the tty. 61 the line. Multiple read calls may occur in parallel 67 line. Multiple write calls are serialized by the [all …]
|
/linux-4.4.14/drivers/tty/serial/cpm_uart/ |
D | cpm_uart_core.c | 99 pr_debug("CPM uart[%d]:tx_empty: %d\n", port->line, ret); in cpm_uart_tx_empty() 155 pr_debug("CPM uart[%d]:stop tx\n", port->line); in cpm_uart_stop_tx() 173 pr_debug("CPM uart[%d]:start tx\n", port->line); in cpm_uart_start_tx() 202 pr_debug("CPM uart[%d]:stop rx\n", port->line); in cpm_uart_stop_rx() 218 pr_debug("CPM uart[%d]:break ctrl, break_state: %d\n", port->line, in cpm_uart_break_ctl() 232 pr_debug("CPM uart[%d]:TX INT\n", port->line); in cpm_uart_int_tx() 256 pr_debug("CPM uart[%d]:RX INT\n", port->line); in cpm_uart_int_rx() 381 pr_debug("CPM uart[%d]:IRQ\n", port->line); in cpm_uart_int() 411 pr_debug("CPM uart[%d]:startup\n", port->line); in cpm_uart_startup() 457 pr_debug("CPM uart[%d]:shutdown\n", port->line); in cpm_uart_shutdown() [all …]
|
/linux-4.4.14/drivers/media/pci/tw68/ |
D | tw68-risc.c | 47 unsigned int line, todo, done; in tw68_risc_field() local 63 for (line = 0; line < lines; line++) { in tw68_risc_field()
|
/linux-4.4.14/arch/frv/mm/ |
D | tlb-flush.S | 69 # now, we assume that the TLB line step is page size in size 110 # now, we assume that the TLB line step is page size in size 142 # zap the matching TLB line and AMR values 170 # round the start down to beginning of TLB line and end up to beginning of next TLB line
|