Searched refs:spaces (Results 1 - 25 of 40) sorted by last modified time

12

/linux-master/sound/pci/emu10k1/
H A Demuproc.c342 static const char spaces[] = " "; local
343 const int nspaces = sizeof(spaces) - 1;
370 buf, &spaces[nspaces - clamp(65 - len, 0, nspaces)],
/linux-master/
H A DMakefile201 $(error source directory cannot contain spaces or colons)
/linux-master/tools/testing/selftests/mm/
H A Drun_vmtests.sh29 separated by spaces:
/linux-master/lib/
H A Dstackdepot.c758 int spaces)
765 spaces) : 0;
757 stack_depot_snprint(depot_stack_handle_t handle, char *buf, size_t size, int spaces) argument
H A Dmaple_tree.c7096 static const char spaces[] = " "; local
7101 pr_info("%.*s%lx: ", depth * 2, spaces, min);
7103 pr_info("%.*s%lx-%lx: ", depth * 2, spaces, min, max);
7107 pr_info("%.*s%lu: ", depth * 2, spaces, min);
7109 pr_info("%.*s%lu-%lu: ", depth * 2, spaces, min, max);
H A Dvsprintf.c591 static void move_right(char *buf, char *end, unsigned len, unsigned spaces) argument
597 if (size <= spaces) {
602 if (len > size - spaces)
603 len = size - spaces;
604 memmove(buf + spaces, buf, len);
606 memset(buf, ' ', spaces);
620 unsigned spaces; local
625 spaces = spec.field_width - n;
627 move_right(buf - n, end, n, spaces);
628 return buf + spaces;
[all...]
/linux-master/include/linux/
H A Dstackdepot.h215 * @spaces: Number of leading spaces to print
220 int spaces);
/linux-master/arch/mips/include/asm/
H A Daddrspace.h13 #include <spaces.h>
35 * 32-bit MIPS address spaces
H A Dpage.h12 #include <spaces.h>
/linux-master/mm/
H A Dswap_state.c708 struct address_space *spaces, *space; local
712 spaces = kvcalloc(nr, sizeof(struct address_space), GFP_KERNEL);
713 if (!spaces)
716 space = spaces + i;
724 swapper_spaces[type] = spaces;
732 struct address_space *spaces = swapper_spaces[type]; local
735 VM_WARN_ON_ONCE(!mapping_empty(&spaces[i]));
736 kvfree(spaces);
/linux-master/include/uapi/linux/
H A Dbtrfs.h687 struct btrfs_ioctl_space_info spaces[]; member in struct:btrfs_ioctl_space_args
/linux-master/drivers/block/
H A Drbd.c6217 static const char spaces[] = " \f\n\r\t\v"; local
6219 *buf += strspn(*buf, spaces); /* Find start of token */
6221 return strcspn(*buf, spaces); /* Return token length */
/linux-master/fs/bcachefs/
H A Dprintbuf.c128 * bch2_printbuf_tabstop_set() - add a tabstop, n spaces from the previous tabstop
131 * @spaces: number of spaces from previous tabpstop
134 * PRINTBUF_INLINE_TABSTOPS or setting tabstops more than 255 spaces from start
137 int bch2_printbuf_tabstop_push(struct printbuf *buf, unsigned spaces) argument
146 buf->_tabstops[buf->nr_tabstops++] = prev_tabstop + spaces;
155 * @spaces: number of spaces to add to the current indent level
158 * of the current line, will be indented by @spaces more spaces
160 bch2_printbuf_indent_add(struct printbuf *buf, unsigned spaces) argument
180 bch2_printbuf_indent_sub(struct printbuf *buf, unsigned spaces) argument
226 int spaces = max_t(int, 0, cur_tabstop(out) - printbuf_linelen(out)); local
[all...]
/linux-master/scripts/
H A Dcheckpatch.pl115 --tab-size=n set the number of spaces for tab (default $tabsize)
1413 # If there's a name left after stripping spaces and
2563 #convert leading spaces to tabs
2565 #Remove spaces before a tab
2785 $sline =~ s/$;/ /g; #with comments as spaces
4132 # check for spaces at the beginning of a line.
4140 "please, no spaces at the start of a line\n" . $herevet) &&
4780 # '*'s should not have spaces between.
4805 # '*'s should not have spaces between.
4808 # Modifiers should have spaces
[all...]
H A Dget_abi.pl212 # Preserve initial spaces for the first line
242 # Preserve initial spaces for the first line
310 # Boundaries are punct characters, spaces and end-of-line
416 my $spaces = length($indent);
419 if ($spaces > $literal_indent) {
427 $literal_indent = $spaces;
876 # Remove duplicated spaces
H A Dget_maintainer.pl2026 by either commas or spaces.
/linux-master/kernel/trace/
H A Dtrace_events_hist.c5323 unsigned int spaces = 8; local
5330 seq_printf(m, "%*c", 1 + spaces, ' ');
H A Dtrace_functions_graph.c354 int spaces = 0; local
366 spaces = TRACE_GRAPH_PROCINFO_LENGTH - len;
368 /* First spaces to align center */
369 for (i = 0; i < spaces / 2; i++)
374 /* Last spaces to align center */
375 for (i = 0; i < spaces - (spaces / 2); i++)
592 /* Print remaining spaces to fit the row's width */
605 /* No real adata, just filling the column with spaces */
1185 static const char spaces[] local
[all...]
/linux-master/arch/mips/include/asm/mach-malta/
H A Dspaces.h44 #include <asm/mach-generic/spaces.h>
/linux-master/kernel/
H A Dstacktrace.c22 * @spaces: Number of leading spaces to print
25 int spaces)
33 printk("%*c%pS\n", 1 + spaces, ' ', (void *)entries[i]);
43 * @spaces: Number of leading spaces to print
48 unsigned int nr_entries, int spaces)
56 generated = snprintf(buf, size, "%*c%pS\n", 1 + spaces, ' ',
24 stack_trace_print(const unsigned long *entries, unsigned int nr_entries, int spaces) argument
47 stack_trace_snprint(char *buf, size_t size, const unsigned long *entries, unsigned int nr_entries, int spaces) argument
/linux-master/kernel/locking/
H A Dlockdep.c1850 unsigned int spaces)
1852 stack_trace_print(trace->entries, trace->nr_entries, spaces);
1849 print_lock_trace(const struct lock_trace *trace, unsigned int spaces) argument
/linux-master/drivers/tty/
H A Dn_tty.c415 int spaces; local
445 spaces = 8 - (ldata->column & 7);
447 if (space < spaces)
449 ldata->column += spaces;
450 tty->ops->write(tty, " ", spaces);
451 return spaces;
453 ldata->column += spaces;
/linux-master/tools/power/x86/intel-speed-select/
H A Disst-display.c87 char *spaces = " "; local
99 "%s", spaces);
114 char *spaces = " "; local
134 "%s", spaces);
152 "%s", spaces);
/linux-master/drivers/crypto/allwinner/sun4i-ss/
H A Dsun4i-ss-hash.c191 u32 spaces, rx_cnt = SS_RX_DEFAULT, bf[32] = {0}, v, ivmode = 0; local
322 spaces = readl(ss->base + SS_FCSR);
323 rx_cnt = SS_RXFIFO_SPACES(spaces);
H A Dsun4i-ss-cipher.c26 u32 spaces; local
104 spaces = readl(ss->base + SS_FCSR);
105 rx_cnt = SS_RXFIFO_SPACES(spaces);
106 tx_cnt = SS_TXFIFO_SPACES(spaces);
193 u32 spaces; local
320 spaces = readl(ss->base + SS_FCSR);
321 rx_cnt = SS_RXFIFO_SPACES(spaces);
322 tx_cnt = SS_TXFIFO_SPACES(spaces);

Completed in 309 milliseconds

12