HomeSort by: relevance | last modified time | path
    Searched defs:literal (Results 1 - 25 of 55) sorted by relevancy

1 2 3

  /src/usr.bin/make/unit-tests/
make-exported.mk 8 -literal= make-exported-value-literal
17 # Before 2020-10-03, if the value of .MAKE.EXPORTED started with "-literal",
18 # make behaved like a mixture of .export-literal and a regular .export.
20 # Since 2020-10-03, the "variable" named "-literal" is not exported anymore,
22 .MAKE.EXPORTED= -literal UT_VAR
  /src/external/bsd/less/dist/lesstest/
display.c 43 int literal = 0; local
49 if (!literal) {
52 literal = 1;
72 literal = 0;
96 int literal = 0; local
99 if (!literal) {
102 literal = 1;
114 literal = 0;
  /src/external/bsd/tmux/dist/
cmd-send-keys.c 113 int literal; local
123 literal = args_has(args, 'l');
124 if (!literal) {
132 literal = 1;
134 if (literal) {
  /src/usr.sbin/lpr/filters/
lpf.c 67 static int literal; /* print control characters */ variable
104 literal++;
177 if (col >= width || (!literal && ch < ' ')) {
  /src/external/gpl3/gcc/dist/gcc/
json.h 48 class literal;
69 /* class json::literal uses these three values to identify the
70 particular literal. */
109 /* Set to literal true/false. */
193 class literal : public value class in namespace:json
196 literal (enum kind kind) : m_kind (kind) {} function in class:json::literal
198 /* Construct literal for a boolean value. */
199 literal (bool value): m_kind (value ? JSON_TRUE : JSON_FALSE) {} function in class:json::literal
  /src/external/gpl3/gcc.old/dist/gcc/
json.h 45 class literal;
66 /* class json::literal uses these three values to identify the
67 particular literal. */
174 class literal : public value class in namespace:json
177 literal (enum kind kind) : m_kind (kind) {} function in class:json::literal
179 /* Construct literal for a boolean value. */
180 literal (bool value): m_kind (value ? JSON_TRUE : JSON_FALSE) {} function in class:json::literal
  /src/external/gpl3/binutils/dist/gprof/
vax.c 49 literal, indexed, reg, regdef, autodec, autoinc, autoincdef, enumerator in enum:opermodes
90 return literal;
126 case literal:
127 return "literal";
179 case literal:
275 case literal:
  /src/external/gpl3/binutils/dist/opcodes/
xtensa-dis.c 230 unsigned literal = bfd_get_bits (litbuf, 32, local
234 (*info->print_address_func) (literal, info);
304 literal pools. */
  /src/external/gpl3/binutils.old/dist/gprof/
vax.c 49 literal, indexed, reg, regdef, autodec, autoinc, autoincdef, enumerator in enum:opermodes
90 return literal;
126 case literal:
127 return "literal";
179 case literal:
275 case literal:
  /src/external/gpl3/binutils.old/dist/opcodes/
xtensa-dis.c 230 unsigned literal = bfd_get_bits (litbuf, 32, local
234 (*info->print_address_func) (literal, info);
304 literal pools. */
  /src/external/gpl3/gdb.old/dist/opcodes/
xtensa-dis.c 230 unsigned literal = bfd_get_bits (litbuf, 32, local
234 (*info->print_address_func) (literal, info);
304 literal pools. */
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
expr.h 44 /* The piece is a literal. */
73 /* The piece's literal value, for DWARF_VALUE_STACK pieces. */
83 } literal; member in union:dwarf_expr_piece::__anon189
161 /* For DWARF_VALUE_LITERAL, the current literal value's length and
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
expr.h 45 /* The piece is a literal. */
77 /* The piece's literal value, for DWARF_VALUE_STACK pieces. */
87 } literal; member in union:dwarf_expr_piece::__anon262
165 /* For DWARF_VALUE_LITERAL, the current literal value's length and
  /src/external/gpl3/gdb/dist/opcodes/
xtensa-dis.c 230 unsigned literal = bfd_get_bits (litbuf, 32, local
234 (*info->print_address_func) (literal, info);
304 literal pools. */
  /src/external/public-domain/xz/dist/src/liblzma/lzma/
lzma_encoder.c 19 // Literal //
45 literal(lzma_lzma1_encoder *coder, lzma_mf *mf, uint32_t position) function
47 // Locate the literal byte to be encoded and the subcoder.
50 probability *subcoder = literal_subcoder(coder->literal,
55 // Previous LZMA-symbol was a literal. Encode a normal
56 // literal without a match byte.
62 // of the current literal and the match byte.
239 // Literal i.e. eight-bit byte
243 literal(coder, mf, position);
281 // always be a literal
    [all...]
lzma_encoder_private.h 106 /// byte as a literal.
121 probability literal[LITERAL_CODERS_MAX * LITERAL_CODER_SIZE]; member in struct:lzma_lzma1_encoder_s
lzma_decoder.c 112 probability literal[LITERAL_CODERS_MAX * LITERAL_CODER_SIZE]; member in struct:__anon398
114 /// If 1, it's a match. Otherwise it's a single 8-bit literal.
224 /// Matched literal decoder: 0x100 or 0 to help avoiding branches.
228 /// If decoding a literal: match byte.
350 // If the bit is a 0, then we handle it as a literal.
355 // Decode literal. //
363 probs = literal_subcoder(coder->literal,
370 // Decode literal without match byte.
375 // Decode literal with match byte.
380 // Write decoded literal to dictionar
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
template.h 66 bool literal; // this template declaration is a literal member in class:TemplateDeclaration
  /src/external/ibm-public/postfix/dist/src/util/
dict_regexp.c 148 char *literal; /* constant result, $$ -> $ */ member in struct:__anon23232
486 * Keep a copy of literal text (with $$ already replaced by $) if and
491 if (ctxt->literal) {
492 myfree(ctxt->literal);
493 ctxt->literal = 0;
509 if (ctxt->literal)
512 ctxt->literal = mystrdup(vstring_str(buf));
597 prescan_context.literal = 0;
607 if (prescan_context.literal) \
608 myfree(prescan_context.literal); \
    [all...]
dict_pcre.c 240 char *literal; /* constant result, $$ -> $ */ member in struct:__anon23224
660 * Keep a copy of literal text (with $$ already replaced by $) if and
665 if (ctxt->literal) {
666 myfree(ctxt->literal);
667 ctxt->literal = 0;
683 if (ctxt->literal)
686 ctxt->literal = mystrdup(vstring_str(buf));
800 prescan_context.literal = 0;
806 if (prescan_context.literal) \
807 myfree(prescan_context.literal); \
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
command.h 116 /* A structure describing an extra literal accepted and shown in place
120 /* The literal to define, e.g. "unlimited". */
121 const char *literal; member in struct:literal_def
123 /* The number to substitute internally for LITERAL or VAL;
127 /* An optional number accepted that stands for the literal. */
  /src/external/gpl3/gdb/dist/gdb/
command.h 118 /* A structure describing an extra literal accepted and shown in place
122 /* The literal to define, e.g. "unlimited". */
123 const char *literal; member in struct:literal_def
125 /* The number to substitute internally for LITERAL or VAL;
129 /* An optional number accepted that stands for the literal. */
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-lex.cc 557 tree literal;
561 raw literal operator, we need to add a trailing NUL. */
568 literal = build_userdef_literal (suffix_id, *value, overflow,
570 *value = literal;
663 tree literal;
668 literal = build_userdef_literal (get_identifier (suffix),
671 *value = literal;
689 tree literal, string;
693 literal = build_userdef_literal (get_identifier (suffix),
695 *value = literal;
555 tree literal; local
661 tree literal; local
687 tree literal, string; local
    [all...]
  /src/external/gpl3/gdb/dist/sim/h8300/
h8300-sim.h 94 int literal; member in struct:__anon19484
  /src/external/gpl3/gdb.old/dist/sim/h8300/
h8300-sim.h 94 int literal; member in struct:__anon22223

Completed in 34 milliseconds

1 2 3