Home
last modified time | relevance | path

Searched refs:literals (Results 1 – 25 of 242) sorted by relevance

12345678910

/openbsd/src/gnu/usr.bin/perl/cpan/bignum/t/
Dconst-bigrat.t3 # Binary, octal, and hexadecimal floating point literals were introduced in
7 # literals were converted to the correct value on perls compiled with quadmath
10 # - It wasn't until v5.34.0 that binary and octal floating point literals worked
16 # - Octal floating point literals using the "0o" prefix were introduced in
19 # Note that all numeric literals that should not be overloaded must be quoted.
42 # Hexadecimal literals using the "0X" prefix require v5.14.0.
43 skip "perl v5.14.0 required for hexadecimal integer literals"
56 # Octal literals using the "0o" prefix were introduced in v5.34.0.
57 skip "perl v5.34.0 required for octal floating point literals"
72 # Binary literals using the "0B" prefix require v5.14.0.
[all …]
Dconst-bigfloat.t3 # Binary, octal, and hexadecimal floating point literals were introduced in
7 # literals were converted to the correct value on perls compiled with quadmath
10 # - It wasn't until v5.32.0 that binary and octal floating point literals worked
16 # - Octal floating point literals using the "0o" prefix were introduced in
19 # Note that all numeric literals that should not be overloaded must be quoted.
43 # Hexadecimal literals using the "0X" prefix require v5.14.0.
44 skip "perl v5.14.0 required for hexadecimal integer literals"
58 # Octal literals using the "0o" prefix require v5.34.0.
59 skip "perl v5.34.0 required for octal floating point literals"
76 # Binary literals using the "0B" prefix require v5.14.0.
[all …]
Dconst-bignum.t3 # Binary, octal, and hexadecimal floating point literals were introduced in
7 # literals were converted to the correct value on perls compiled with quadmath
10 # - It wasn't until v5.32.0 that binary and octal floating point literals worked
16 # - Octal floating point literals using the "0o" prefix were introduced in
19 # Note that all numeric literals that should not be overloaded must be quoted.
43 # Hexadecimal literals using the "0X" prefix require v5.14.0.
44 skip "perl v5.14.0 required for hexadecimal integer literals"
59 # Octal literals using the "0o" prefix require v5.34.0.
60 skip "perl v5.34.0 required for octal floating point literals"
77 # Binary literals using the "0B" prefix require v5.14.0.
[all …]
Dconst-bigint.t3 # Binary, octal, and hexadecimal floating point literals were introduced in
7 # literals were converted to the correct value on perls compiled with quadmath
10 # - It wasn't until v5.34.0 that binary and octal floating point literals worked
16 # - Octal floating point literals using the "0o" prefix were introduced in
19 # Note that all numeric literals that should not be overloaded must be quoted.
42 # Hexadecimal literals using the "0X" prefix require v5.14.0.
43 skip "perl v5.14.0 required for hexadecimal integer literals"
56 # Octal literals using the "0o" prefix were introduced in v5.34.0.
57 skip "perl v5.34.0 required for octal floating point literals"
72 # Binary literals using the "0B" prefix require v5.14.0.
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/config/
Dtc-i370.c1205 literalT literals[MAX_LITERAL_POOL_SIZE]; variable
1275 && literals[lit_count].exp.X_op == exx->X_op in add_to_lit_pool()
1276 && literals[lit_count].exp.X_add_number == exx->X_add_number in add_to_lit_pool()
1277 && literals[lit_count].exp.X_unsigned == exx->X_unsigned in add_to_lit_pool()
1278 && literals[lit_count].size == sz) in add_to_lit_pool()
1280 else if (literals[lit_count].sym_name in add_to_lit_pool()
1282 && !strcmp (name, literals[lit_count].sym_name)) in add_to_lit_pool()
1284 if (sz == literals[lit_count].size) in add_to_lit_pool()
1294 literals[next_literal_pool_place].exp = *exx; in add_to_lit_pool()
1295 literals[next_literal_pool_place].size = sz; in add_to_lit_pool()
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/doc/
Dc-xtensa.texi36 @item --text-section-literals | --no-text-section-literals
37 @kindex --text-section-literals
38 @kindex --no-text-section-literals
40 @samp{--no-@-text-@-section-@-literals}, which places literals in a
42 placed in a data RAM/ROM. With @samp{--text-@-section-@-literals}, the
43 literals are interspersed in the text section in order to keep them as
45 assembly files, where the literals would otherwise be out of range of the
47 literals referenced via PC-relative @code{L32R} instructions; literals
50 @item --absolute-literals | --no-absolute-literals
51 @kindex --absolute-literals
[all …]
Dc-i370.texi82 Many of the usual forms of address constants / address literals
158 the base register that is used for non-label address literals.
/openbsd/src/gnu/usr.bin/binutils/gas/config/
Dtc-i370.c1302 literalT literals[MAX_LITERAL_POOL_SIZE]; variable
1346 && literals[lit_count].exp.X_op == exx->X_op in add_to_lit_pool()
1347 && literals[lit_count].exp.X_add_number == exx->X_add_number in add_to_lit_pool()
1348 && literals[lit_count].exp.X_unsigned == exx->X_unsigned in add_to_lit_pool()
1349 && literals[lit_count].size == sz) in add_to_lit_pool()
1351 else if (literals[lit_count].sym_name in add_to_lit_pool()
1353 && !strcmp (name, literals[lit_count].sym_name)) in add_to_lit_pool()
1355 if (sz == literals[lit_count].size) in add_to_lit_pool()
1367 literals[next_literal_pool_place].exp = *exx; in add_to_lit_pool()
1368 literals[next_literal_pool_place].size = sz; in add_to_lit_pool()
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/Tooling/Syntax/
DNodes.td59 Expression for literals. C++ [lex.literal]
64 Expression for integer literals. C++ [lex.icon]
76 Expression for character literals. C++ [lex.ccon]
84 Expression for floating-point literals. C++ [lex.fcon]
96 Expression for string-literals. C++ [lex.string]
98 // FIXME: string literals may consist of multiple tokens.
107 Expression for boolean literals. C++ [lex.bool]
/openbsd/src/gnu/llvm/clang/docs/
DObjectiveCLiterals.rst36 control the size of numeric literals.
41 The following program illustrates the rules for ``NSNumber`` literals:
46 // character literals.
49 // integral literals.
55 // floating point literals.
59 // BOOL literals.
72 NSNumber literals only support literal scalar values after the ``'@'``.
108 ``BOOL`` and integer literals.
150 boxed literals (this avoids conflicts with future ``'@'``-prefixed
294 pointer typed, as in array literals. Key sub-expressions must be of an
[all …]
/openbsd/src/gnu/usr.bin/binutils/gas/doc/
Dc-xtensa.texi72 @item --text-section-literals | --no-text-section-literals
73 @kindex --text-section-literals
74 @kindex --no-text-section-literals
76 @samp{--no-@-text-@-section-@-literals}, which places literals in a
79 pools from separate object files to remove redundant literals and
80 improve code size. With @samp{--text-@-section-@-literals}, the
81 literals are interspersed in the text section in order to keep them as
593 identical literals. For example, the code:
607 using the @samp{--text-@-section-@-literals} option (@pxref{Xtensa
622 When using @samp{--text-@-section-@-literals} to place literals inline
[all …]
Dc-i370.texi82 Many of the usual forms of address constants / address literals
158 the base register that is used for non-label address literals.
/openbsd/src/gnu/llvm/lld/MachO/
DConfig.h92 llvm::DenseSet<llvm::CachedHashStringRef> literals;
95 bool empty() const { return literals.empty() && globs.empty(); } in empty()
/openbsd/src/gnu/usr.bin/gcc/gcc/config/i370/
DREADME43 This is because the compiler currently places address literals in
45 USING that will place address literals in the data section, this forces
54 of using =A() and =F'' to denote address literals, as opposed to more
/openbsd/src/gnu/llvm/llvm/cmake/modules/
DTableGen.cmake56 # MSVC can't support long string literals ("long" > 65534 bytes)[1], so if there's
58 # char literals, instead. If we're cross-compiling, then conservatively assume
62 list(APPEND LLVM_TABLEGEN_FLAGS "--long-string-literals=0")
/openbsd/src/gnu/llvm/clang/include/clang/Basic/
DDiagnosticLexKinds.td108 "raw string literals are incompatible with C++98">,
227 "%select{wide|Unicode}0 character literals may not contain multiple characters">;
235 "hexadecimal floating literals are a C++17 feature">, InGroup<CXX17>;
237 "hexadecimal floating literals are incompatible with "
241 "binary integer literals are a GNU extension">, InGroup<GNUBinaryLiteral>;
243 "binary integer literals are a C++14 extension">, InGroup<CXX14BinaryLiteral>;
245 "binary integer literals are incompatible with C++ standards before C++14">,
256 "unicode literals are incompatible with C99">,
259 "unicode literals are incompatible with C++98">,
262 "unicode literals are incompatible with C++ standards before C++17">,
[all …]
DDiagnosticCommonKinds.td204 "'size_t' suffix for literals is a C++2b extension">,
207 "'size_t' suffix for literals is incompatible with C++ standards before "
210 "'size_t' suffix for literals is a C++2b feature">;
215 "'_BitInt' suffix for literals is a C2x extension">,
218 "'_BitInt' suffix for literals is incompatible with C standards before C2x">,
/openbsd/src/gnu/gcc/gcc/config/xtensa/
Dxtensa.opt38 mtext-section-literals
/openbsd/src/gnu/llvm/libcxx/
D.clang-tidy55 # modernize-use-bool-literals,
/openbsd/src/gnu/llvm/compiler-rt/lib/ubsan/
Dubsan_checks.inc17 // SummaryKind and FSanitizeFlagName should be string literals.
/openbsd/src/gnu/gcc/gcc/config/ia64/
Dt-ia6451 # genattrtab generates very long string literals.
/openbsd/src/gnu/usr.bin/binutils-2.17/cpu/
Dm32c.opc113 /* Don't successfully parse literals beginning with '['. */ \
126 /* Don't successfully parse literals beginning with '['. */ \
320 /* Don't successfully parse literals beginning with '['. */
420 /* Don't successfully parse literals beginning with '['. */
446 /* Don't successfully parse literals beginning with '['. */
/openbsd/src/gnu/usr.bin/perl/cpan/Encode/bin/
Dunidump162 -p prints in perl literals that you can copy and paste directly
/openbsd/src/gnu/usr.bin/binutils/ld/emultempl/
Dxtensaelf.em39 /* To force a page break between literals and text, change
135 that the literals can be separated later. */
149 asection *tgt; /* Contains literals. */
1146 spot to place other literals. Continue walking (and counting
1458 fprintf (file, _(" --no-relax\t\tDo not relax branches or coalesce literals\n"));
/openbsd/src/gnu/usr.bin/perl/pod/
Dperlunicook.pod26 use utf8; # so literals and identifiers can be in UTF-8
60 =head2 ℞ 3: Declare source in utf8 for identifiers and literals
63 literals and identifiers won’t work right. If you used the standard
99 =head2 ℞ 5: Unicode literals by character number
127 by that name for use in interpolated literals (double-quoted

12345678910