Home
last modified time | relevance | path

Searched full:literal (Results 1 – 25 of 181) sorted by relevance

12345678

/linux-6.12.1/arch/xtensa/kernel/
DMakefile26 # Therefore, the .text and .literal section must be combined in parenthesis
27 # in the linker script, such as: *(.literal .text).
30 # *(xxx.text) to *(xxx.literal xxx.text) for the following text sections:
35 sed-y = -e ':a; s/\*(\([^)]*\)\.text\.unlikely/*(\1.literal.unlikely .{text}.unlikely/; ta; ' \
36 -e ':b; s/\*(\([^)]*\)\.text\(\.[a-z]*\)/*(\1.{text}\2.literal .{text}\2/; tb; ' \
37 -e ':c; s/\*(\([^)]*\)\(\.[a-z]*it\|\.ref\)\.text/*(\1\2.literal \2.{text}/; tc; ' \
38 -e ':d; s/\*(\([^)]\+ \|\)\.text/*(\1.literal .{text}/; td; ' \
/linux-6.12.1/tools/perf/util/
Dexpr.c417 double expr__get_literal(const char *literal, const struct expr_scanner_ctx *ctx) in expr__get_literal() argument
422 if (!strcmp("#num_cpus", literal)) { in expr__get_literal()
426 if (!strcmp("#num_cpus_online", literal)) { in expr__get_literal()
434 if (!strcasecmp("#system_tsc_freq", literal)) { in expr__get_literal()
445 if (!strcasecmp("#smt_on", literal)) { in expr__get_literal()
449 if (!strcmp("#core_wide", literal)) { in expr__get_literal()
454 if (!strcmp("#num_packages", literal)) { in expr__get_literal()
459 if (!strcmp("#num_dies", literal)) { in expr__get_literal()
464 if (!strcmp("#num_cores", literal)) { in expr__get_literal()
469 if (!strcmp("#slots", literal)) { in expr__get_literal()
[all …]
Dexpr.l85 static int literal(yyscan_t scanner, const struct expr_scanner_ctx *sctx) in literal() function
95 return LITERAL; in literal()
113 literal #[0-9a-zA-Z_\.\-]+
127 {literal} { return literal(yyscanner, sctx); }
/linux-6.12.1/lib/xz/
Dxz_lzma2.h33 * - Literal: One 8-bit byte
39 * either short or long repeated match, and NONLIT means any non-literal.
59 /* The lowest 7 states indicate that the previous state was a literal. */
62 /* Indicate that the latest symbol was a literal. */
91 /* Test if the previous symbol was a literal. */
97 /* Each literal coder is divided in three sections:
103 * a literal (that is, it was some kind of match).
107 /* Maximum number of literal coders */
/linux-6.12.1/tools/lib/perf/Documentation/
Dmanpage-bold-literal.xsl1 <!-- manpage-bold-literal.xsl:
6 <!-- render literal text as bold (instead of plain or monospace);
7 this makes literal text easier to distinguish in manpages
9 <xsl:template match="literal">
/linux-6.12.1/tools/perf/Documentation/
Dmanpage-bold-literal.xsl1 <!-- manpage-bold-literal.xsl:
6 <!-- render literal text as bold (instead of plain or monospace);
7 this makes literal text easier to distinguish in manpages
9 <xsl:template match="literal">
/linux-6.12.1/Documentation/usb/
Dtext_files.rst5 :literal:
11 :literal:
23 :literal:
/linux-6.12.1/lib/
Dinflate.c29 the end of each deflated block is a special end-of-block (EOB) literal/
30 length code. The decoding process is basically: get a literal/length
31 code; if EOB then done; if a literal, emit the decoded byte; if a
45 an encoding of the literal/length and distance Huffman codes that are
79 6. There are up to 286 literal/length codes. Code 256 represents the
89 literal codes sent minus 257.
101 13. The literal/length and distance code bit lengths are read as a
135 means that v is a literal, 16 < e < 32 means that v is a pointer to
143 ush n; /* literal, length base, or distance base */
176 static const ush cplens[] = { /* Copy lengths for literal codes 257..285 */
[all …]
Dglob.c86 goto literal; in glob_match()
92 goto literal; in glob_match()
108 default: /* Literal character */ in glob_match()
109 literal: in glob_match()
Ddecompress_bunzip2.c231 for symTotal literal symbols, plus two run symbols (RUNA, in get_next_block()
407 either a new literal byte, or a repeated run of the in get_next_block()
408 most recent literal byte. First, check if nextSym in get_next_block()
410 how many times to repeat the last literal. */ in get_next_block()
436 literal, so append that many copies to our buffer in get_next_block()
437 of decoded symbols (dbuf) now. (The last literal in get_next_block()
453 /* At this point, nextSym indicates a new literal in get_next_block()
455 MTF array at which this literal is currently to be in get_next_block()
461 non-literal nextSym values equals -1.) */ in get_next_block()
476 /* We have our literal byte. Save it into dbuf. */ in get_next_block()
/linux-6.12.1/Documentation/sphinx-static/
Dtheme_overrides.css107 /* inline literal: drop the borderbox, padding and red color */
117 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
/linux-6.12.1/Documentation/staging/
Dlzo.rst33 encoded on larger values), or a literal to be copied to the output buffer.
36 seems to be optimized for literal use only, since there is no dictionary yet
59 After any instruction except the large literal copy, 0, 1, 2 or 3 literals
115 22..255 : copy literal string
124 If last instruction did not copy any literal (state == 0), this
125 encoding will be a copy of 4 or more literal, and must be interpreted
128 0 0 0 0 L L L L (0..15) : copy long literal string
/linux-6.12.1/scripts/dtc/
Ddtc-lexer.l156 DPRINT("Integer Literal: '%s'\n", yytext);
162 lexical_error("Bad integer literal '%s'",
167 lexical_error("Integer literal '%s' out of range",
178 DPRINT("Character literal: %s\n", yytext);
182 lexical_error("Empty character literal");
188 lexical_error("Character literal has %d"
/linux-6.12.1/lib/zlib_inflate/
Dinftrees.h18 the entry is a pointer to another table, a literal, a length or
25 of a literal, the base length or distance, or the offset from
34 00000000 - literal
Dinffast.c31 Decode literal, length, and distance codes and write out the resulting
32 literal and match bytes until either not enough input or output is
131 if (op == 0) { /* literal */ in inflate_fast()
304 strm->msg = (char *)"invalid literal/length code"; in inflate_fast()
335 - Swapping literal/length else
Dinflate.h41 LIT, /* o: waiting for output space to write literal */
94 unsigned length; /* literal or length of data to copy */
99 code const *lencode; /* starting table for length/literal codes */
/linux-6.12.1/tools/lib/bpf/
Dlibbpf_common.h54 * followed by assignment using compound literal syntax is done to preserve
57 * when copying literal, that compiler won't copy garbage in literal's padding
/linux-6.12.1/arch/xtensa/boot/boot-redboot/
Dboot.ld11 *(.literal .text.literal .text)
/linux-6.12.1/rust/kernel/
Dkunit.rs52 ($name:literal, $file:literal, $diff:expr, $condition:expr $(,)?) => {
158 ($name:literal, $file:literal, $diff:expr, $left:expr, $right:expr $(,)?) => {{
/linux-6.12.1/Documentation/sphinx/
Dautomarkup.py157 lit_text = nodes.literal(classes=['xref', 'c', 'c-func'])
217 lit_text = nodes.literal(classes=['xref', 'c', class_str[match.re]])
297 # The nodes.literal test catches ``literal text``, its purpose is to
300 if not isinstance(node, nodes.Text) or isinstance(node.parent, nodes.literal):
/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dbpf_misc.h63 * To override this behaviour use literal "...", e.g.:
82 * - literal INT_MIN
83 * - literal POINTER_VALUE (see definition below)
84 * - literal TEST_DATA_LEN (see definition below)
/linux-6.12.1/arch/arm64/kernel/
Dftrace.c101 * addr+00: NOP // Literal (first 32 bits) in ftrace_call_adjust()
102 * addr+04: NOP // Literal (last 32 bits) in ftrace_call_adjust()
108 * addr+00: NOP // Literal (first 32 bits) in ftrace_call_adjust()
109 * addr+04: NOP // Literal (last 32 bits) in ftrace_call_adjust()
302 unsigned long literal = ALIGN_DOWN(rec->ip - 12, 8); in ftrace_rec_set_ops() local
303 return aarch64_insn_write_literal_u64((void *)literal, in ftrace_rec_set_ops()
/linux-6.12.1/rust/macros/
Dlib.rs95 /// - `name`: ASCII string literal of the name of the kernel module (required).
96 /// - `author`: string literal of the author of the kernel module.
97 /// - `description`: string literal of the description of the kernel module.
98 /// - `license`: ASCII string literal of the license of the kernel module (required).
395 /// ($name:literal, $val:literal) => {
/linux-6.12.1/Documentation/driver-api/
Dfirewire.rst23 :literal:
32 :literal:
/linux-6.12.1/include/linux/
Dstring_choices.h8 * corresponding literal strings. These helpers can be used in the printing
12 * through these simple literal-meaning helpers.

12345678