Home
last modified time | relevance | path

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

1234567

/linux/arch/xtensa/kernel/
H A 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/lib/xz/
H A 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/tools/lib/perf/Documentation/
H A 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/tools/perf/Documentation/
H A 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/tools/perf/util/
H A 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); }
H A Dexpr.c396 double expr__get_literal(const char *literal, const struct expr_scanner_ctx *ctx) in expr__get_literal() argument
399 enum tool_pmu_event ev = tool_pmu__str_to_event(literal + 1); in expr__get_literal()
407 pr_err("Failure to read '%s'", literal); in expr__get_literal()
409 } else if (!strcmp("#core_wide", literal)) { in expr__get_literal()
413 pr_err("Unrecognized literal '%s'", literal); in expr__get_literal()
416 pr_debug2("literal: %s = %f\n", literal, result); in expr__get_literal()
/linux/Documentation/usb/
H A Dtext_files.rst5 :literal:
11 :literal:
23 :literal:
/linux/Documentation/staging/
H A 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/Documentation/sphinx-static/
H A 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/scripts/dtc/
H A Ddtc-lexer.l162 /* Treat it as a literal which often generates further
171 DPRINT("Integer Literal: '%s'\n", yytext);
177 lexical_error("Bad integer literal '%s'",
182 lexical_error("Integer literal '%s' out of range",
193 DPRINT("Character literal: %s\n", yytext);
197 lexical_error("Empty character literal");
203 lexical_error("Character literal has %d"
/linux/lib/
H A 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()
H A 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/lib/zlib_inflate/
H A 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
H A 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
H A 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/tools/verification/rvgen/rvgen/
H A Dltl2ba.py41 'LITERAL',
124 if isinstance(self.op, Literal):
311 return UntilOp(ASTNode(Literal(True)), self.child)
323 new = ASTNode(Literal(False))
402 class Literal: class
462 | LITERAL
466 p[0] = ASTNode(Literal(True))
468 p[0] = ASTNode(Literal(False))
/linux/tools/lib/bpf/
H A 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/rust/macros/
H A Dhelpers.rs14 if let Some(TokenTree::Literal(literal)) = it.next() { in try_literal()
15 Some(literal.to_string()) in try_literal()
/linux/arch/xtensa/boot/boot-redboot/
H A Dboot.ld11 *(.literal .text.literal .text)
/linux/rust/kernel/
H A Dstatic_assert.rs10 /// Currently only a string literal without formatting is supported
36 ($condition:expr $(,$arg:literal)?) => {
/linux/arch/arm64/kernel/
H A 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()
371 unsigned long literal = ALIGN_DOWN(rec->ip - 12, 8); in ftrace_rec_set_ops() local
372 return aarch64_insn_write_literal_u64((void *)literal, in ftrace_rec_set_ops()
H A Dentry-ftrace.S41 * The literal pointer to the ops is at an 8-byte aligned boundary
45 * Therefore here the LR points at `literal + 16` or `literal + 20`,
46 * and we can find the address of the literal in either case by
/linux/Documentation/driver-api/
H A Dfirewire.rst23 :literal:
32 :literal:
/linux/include/linux/
H A Dstring_choices.h8 * corresponding literal strings. These helpers can be used in the printing
12 * through these simple literal-meaning helpers.
/linux/drivers/gpio/
H A Dgpiolib-legacy.c28 * @label: a literal description string of this GPIO
93 * @label: a literal description string of this GPIO

1234567