Lines Matching refs:code

131 @cite{The value of a @code{char} object into which has been stored any
138 @cite{Which of @code{signed char} or @code{unsigned char} has the same
139 range, representation, and behavior as ``plain'' @code{char} (C90
175 execution character set into a corresponding wide character code (C90
261 functions in @code{<math.h>} and @code{<complex.h>} that return floating-point
268 of @code{FLT_ROUNDS} @gol
275 values of @code{FLT_EVAL_METHOD} (C99 5.2.4.2.2).}
303 disallowed by the @code{FP_CONTRACT} pragma (C99 6.5).}
310 @cite{The default state for the @code{FENV_ACCESS} pragma (C99 7.6.1).}
323 @cite{The default state for the @code{FP_CONTRACT} pragma (C99 7.12.2).}
358 a target-defined @code{ptr_extend} pattern. Do not rely on sign extension.}
392 @cite{The extent to which suggestions made by using the @code{register}
395 The @code{register} specifier affects code generation only in these ways:
404 memory for all variables that do not have the @code{register}
405 storage-class specifier; if @code{register} is specified, the variable
406 may have a shorter lifespan than the code would indicate and may never
410 On some rare x86 targets, @code{setjmp} doesn't save the registers in
412 in registers unless they are marked @code{register}.
440 @cite{Whether a ``plain'' @code{int} bit-field is treated as a
441 @code{signed int} bit-field or as an @code{unsigned int} bit-field
445 By default it is treated as @code{signed int} but this may be changed
449 @cite{Allowable bit-field types other than @code{_Bool}, @code{signed int},
450 and @code{unsigned int} (C99 6.7.2.1).}
479 Normally, the type is @code{unsigned int} if there are no negative
480 values in the enumeration, otherwise @code{int}. If
482 it is the first of @code{signed char}, @code{short} and @code{int}
484 @code{unsigned char}, @code{unsigned short} and @code{unsigned int}
487 @c the code and one of the types accessed via mode attributes (which
520 larger than @code{int}.
532 is the unqualified version of its original type, i.e. @code{int}. Whether
562 @cite{The maximum number of @code{case} values in a @code{switch}
602 macro expansion) in a @code{#include} directive are combined into a header
606 @cite{The nesting limit for @code{#include} processing (C90 6.8.2, C99
615 @cite{The behavior on each recognized non-@code{STDC #pragma}
623 @cite{The definitions for @code{__DATE__} and @code{__TIME__} when
637 @cite{The null pointer constant to which the macro @code{NULL} expands
640 In @code{<stddef.h>}, @code{NULL} expands to @code{((void *)0)}. GCC
641 does not provide the other headers which define @code{NULL} and some
652 headers @code{<float.h>}, @code{<limits.h>}, and @code{<stdint.h>}
664 @cite{The value of the result of the @code{sizeof} operator (C90