Home
last modified time | relevance | path

Searched refs:C99 (Results 1 – 25 of 168) sorted by relevance

1234567

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangStandards.def52 // C99-ish modes
55 LineComment | C99 | Digraphs | HexFloat)
62 LineComment | C99 | Digraphs | GNUMode | HexFloat)
68 LineComment | C99 | C11 | Digraphs | HexFloat)
75 LineComment | C99 | C11 | Digraphs | GNUMode | HexFloat)
81 LineComment | C99 | C11 | C17 | Digraphs | HexFloat)
87 LineComment | C99 | C11 | C17 | Digraphs | GNUMode | HexFloat)
93 LineComment | C99 | C11 | C17 | C23 | Digraphs | HexFloat)
97 LineComment | C99 | C11 | C17 | C23 | Digraphs | GNUMode | HexFloat)
105 LineComment | C99 | C11 | C17 | C23 | C2y | Digraphs | HexFloat)
[all …]
H A DLangStandard.h51 C99 = (1 << 1), enumerator
99 bool isC99() const { return Flags & C99; } in isC99()
H A DTokenKinds.def105 // C99 6.10.1 - Conditional Inclusion.
116 // C99 6.10.2 - Source File Inclusion.
120 // C99 6.10.3 - Macro Replacement.
124 // C99 6.10.4 - Line Control.
127 // C99 6.10.5 - Error Directive.
130 // C99 6.10.6 - Pragma Directive.
161 // C99 6.4.9: Comments.
164 // C99 6.4.2: Identifiers.
168 // C99 6.4.4.1: Integer Constants
169 // C99 6.4.4.2: Floating Constants
[all …]
H A DDiagnosticLexKinds.td83 def warn_c99_keyword : Warning<"'%0' is a keyword in C99">,
202 "this character}0 is incompatible with C99">,
220 "universal character names are only valid in C99 or C++; "
223 "universal character names are only valid in C99 or C++">, InGroup<Unicode>;
252 "hexadecimal floating constants are a C99 feature">, InGroup<C99>;
273 "maximum length %1 that %select{C90|ISO C99|C++}2 compilers are required to "
278 "unicode literals are incompatible with C99">,
354 "ISO C99 requires whitespace after the macro name">, InGroup<C99>;
453 "__VA_ARGS__ can only appear in the expansion of a C99 variadic macro">;
472 def ext_variadic_macro : Extension<"variadic macros are a C99 feature">,
[all …]
/freebsd/share/i18n/esdb/MISC/
H A DC99.src1 # $NetBSD: C99.src,v 1.1 2006/11/13 15:16:30 tnozaki Exp $
3 NAME "C99"
5 VARIABLE "C99"
H A DMISC.part4 C99
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcstdlib32 lldiv_t // C99
37 long long atoll(const char* nptr); // C99
39 float strtof (const char* restrict nptr, char** restrict endptr); // C99
40 long double strtold (const char* restrict nptr, char** restrict endptr); // C99
42 long long strtoll (const char* restrict nptr, char** restrict endptr, int base); // C99
44 unsigned long long strtoull(const char* restrict nptr, char** restrict endptr, int base); // C99
65 long long llabs(long long j); // C99
70 lldiv_t lldiv(long long numer, long long denom); // C99
H A Dclimits34 LLONG_MIN // C99
35 LLONG_MAX // C99
36 ULLONG_MAX // C99
H A Dcmath19 HUGE_VALF // C99
20 HUGE_VALL // C99
21 INFINITY // C99
22 NAN // C99
23 FP_INFINITE // C99
24 FP_NAN // C99
25 FP_NORMAL // C99
26 FP_SUBNORMAL // C99
27 FP_ZERO // C99
28 FP_FAST_FMA // C99
[all …]
H A Dcstdio59 int snprintf(char* restrict s, size_t n, const char* restrict format, ...); // C99
63 int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg); // C99
65 int vscanf(const char* restrict format, va_list arg); // C99
66 int vsnprintf(char* restrict s, size_t n, const char* restrict format, // C99
69 int vsscanf(const char* restrict s, const char* restrict format, va_list arg); // C99
H A Dcwchar38 int vfwscanf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); // C99
40 int vswscanf(const wchar_t* restrict s, const wchar_t* restrict format, va_list arg); // C99
42 int vwscanf(const wchar_t* restrict format, va_list arg); // C99
56 float wcstof(const wchar_t* restrict nptr, wchar_t** restrict endptr); // C99
57 long double wcstold(const wchar_t* restrict nptr, wchar_t** restrict endptr); // C99
59 long long wcstoll(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); // C99
61 …gned long long wcstoull(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); // C99
H A Dcfloat19 FLT_EVAL_METHOD // C99
30 DECIMAL_DIG // C99
H A Dcstdarg19 void va_copy(va_list dest, va_list src); // C99
H A Dcerrno19 EILSEQ // C99
H A Dcfenv16 This entire header is C99 / C++0X
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def378 // [C99 6.5.5] Multiplicative operators.
382 // [C99 6.5.6] Additive operators.
385 // [C99 6.5.7] Bitwise shift operators.
390 // [C99 6.5.8] Relational operators.
395 // [C99 6.5.9] Equality operators.
398 // [C99 6.5.10] Bitwise AND operator.
400 // [C99 6.5.11] Bitwise XOR operator.
402 // [C99 6.5.12] Bitwise OR operator.
404 // [C99 6.5.13] Logical AND operator.
406 // [C99 6.5.14] Logical OR operator.
[all …]
H A DPrettyPrinter.h70 Restrict(LO.C99), Alignof(LO.CPlusPlus11), UnderscoreAlignof(LO.C11), in PrintingPolicy()
/freebsd/contrib/ntp/sntp/m4/
H A Dsnprintf.m414 # C99-compliant implementations.
51 # (C99: 7.15.1, 1) Therefore, the presence of va_copy(3) cannot simply "be
115 [AC_CACHE_CHECK([whether vsnprintf is C99 compliant],
142 [Define if C99-compliant `vsnprintf' is available.])
143 AC_MSG_CHECKING([if C99-snprintf replacement vsnprintf will be used])
184 [AC_CACHE_CHECK([whether snprintf is C99 compliant],
198 [Define if C99-compliant `snprintf' is available.])
199 AC_MSG_CHECKING([if C99-snprintf replacement snprintf will be used])
228 AC_MSG_CHECKING([if C99-snprintf replacement vasprintf will be used])
261 AC_MSG_CHECKING([if C99-snprintf replacement asprintf will be used])
H A Dax_c99_struct_init.m412 # supports the C99 tagged structure initialization.
41 AC_MSG_CHECKING([whether the compiler supports C99 structure initialization])
55 [Define to 1 if the compiler does not support C99's structure initialization.]),
/freebsd/bin/sh/tests/parser/
H A Ddollar-quote9.02 # POSIX and C99 say D800-DFFF are undefined in a universal character name.
/freebsd/contrib/lua/src/
H A Dluaconf.h.dist41 ** Define it if you want Lua to avoid the use of a few C99 features
97 ** compliant with C99, which may not have support for 'long long').
533 /* use presence of macro LLONG_MAX as proxy for C99 compliance */
535 /* use ISO C99 stuff */
574 ** Dependencies with C99 and other C details
591 ** In C99, 'strtod' does that conversion. Otherwise, you can
609 ** In C99, 'sprintf' (with format specifiers '%a'/'%A') does that.
644 #if defined(INTPTR_MAX) /* even in C99 this type is optional */
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dvelintrin.h28 #error need C++ or C99 to use vector intrinsics for VE
/freebsd/contrib/libcbor/doc/source/
H A Dindex.rst13 - Robust C99 implementation
H A Drfc_conformance.rst
/freebsd/contrib/gdtoa/
H A DREADME60 mode on IEEE-arithmetic systems that provide the C99 fegetround()
162 C99's hexadecimal floating-point constants are recognized by the
166 When compiled with -DINFNAN_CHECK, the strto* routines recognize C99's
168 strto* routines also recognize C99's NaN(...) syntax: they accept
196 On IEEE-arithmetic systems that provide the C99 fegetround() function,
343 FLT_ROUNDS and fegetround() as specified in the C99 standard), they
345 (Linux) systems -- not reflecting calls on fesetround(), as the C99

1234567