Home
last modified time | relevance | path

Searched refs:c (Results 1 – 15 of 15) sorted by relevance

/stdlib/
A Dstdint.h106 # define __INT64_C(c) c ## L argument
107 # define __UINT64_C(c) c ## UL argument
109 # define __INT64_C(c) c ## LL argument
248 # define INT8_C(c) c argument
249 # define INT16_C(c) c argument
250 # define INT32_C(c) c argument
252 # define INT64_C(c) c ## L argument
254 # define INT64_C(c) c ## LL argument
258 # define UINT8_C(c) c argument
259 # define UINT16_C(c) c argument
[all …]
A Dtst-strtod-underflow.c59 enum underflow_case c; member
96 expect_underflow (enum underflow_case c, int rm) in expect_underflow() argument
98 if (c == UNDERFLOW_NONE) in expect_underflow()
100 if (c == UNDERFLOW_ALWAYS) in expect_underflow()
108 return (c == UNDERFLOW_EXCEPT_UPWARD in expect_underflow()
109 || c == UNDERFLOW_ONLY_DOWNWARD_ZERO); in expect_underflow()
119 return (c == UNDERFLOW_EXCEPT_DOWNWARD in expect_underflow()
120 || c == UNDERFLOW_ONLY_UPWARD_ZERO); in expect_underflow()
124 return (c == UNDERFLOW_EXCEPT_UPWARD in expect_underflow()
125 || c == UNDERFLOW_EXCEPT_DOWNWARD); in expect_underflow()
[all …]
A Dstrtol_l.c145 # define IN_CTYPE_DOMAIN(c) isascii(c) argument
346 for (c = *end; c != L_('\0'); c = *++end) in INTERNAL()
377 c = *s; in INTERNAL()
383 for (;c != L_('\0'); c = *++s) in INTERNAL()
387 if (c >= L_('0') && c <= L_('9')) in INTERNAL()
405 c = TOUPPER (c) - L_('A') + 10; in INTERNAL()
412 c = TOUPPER (c) - L_('A') + 10; in INTERNAL()
431 for (;c != L_('\0'); c = *++s) in INTERNAL()
435 if (c >= L_('0') && c <= L_('9')) in INTERNAL()
453 c = TOUPPER (c) - L_('A') + 10; in INTERNAL()
[all …]
A Dtestmb.c8 char c[10]; in main() local
20 i = wcstombs (c, w, 10); in main()
41 char c = 'x'; in main() local
45 if ((r = mbtowc (&wc, &c, MB_CUR_MAX)) <= 0) in main()
A Dtst-qsort.c5 struct big { char c[4 * 1024]; }; member
26 return b->c[0] - a->c[0]; in compare()
43 array[i].c[0] = i % 128; in main()
A Dtst-tininess.c26 volatile float c; variable
43 c = a * b; in do_test()
A Dtst-strtod.c81 static void expand (char *dst, int c);
183 expand (char *dst, int c) in expand() argument
185 if (isprint (c)) in expand()
187 dst[0] = c; in expand()
191 (void) sprintf (dst, "%#.3o", (unsigned int) c); in expand()
A Dstrtod_l.c535 CHAR_TYPE c; in ____STRTOF_INTERNAL() local
641 else if (c < L_('0') || c > L_('9')) in ____STRTOF_INTERNAL()
725 c = *++cp; in ____STRTOF_INTERNAL()
733 if (!((c >= L_('0') && c <= L_('9')) in ____STRTOF_INTERNAL()
775 if ((c >= L_('0') && c <= L_('9')) in ____STRTOF_INTERNAL()
864 while ((c >= L_('0') && c <= L_('9')) in ____STRTOF_INTERNAL()
871 c = *++cp; in ____STRTOF_INTERNAL()
890 c = *++cp; in ____STRTOF_INTERNAL()
893 c = *++cp; in ____STRTOF_INTERNAL()
895 if (c >= L_('0') && c <= L_('9')) in ____STRTOF_INTERNAL()
[all …]
A DMakefile114 CFLAGS-tst-quick_exit.o = -std=c++11
145 CFLAGS-bsearch.c += $(uses-callbacks)
146 CFLAGS-msort.c += $(uses-callbacks)
147 CFLAGS-qsort.c += $(uses-callbacks)
148 CFLAGS-system.c += -fexceptions
150 CFLAGS-fmtmsg.c += -fexceptions
152 CFLAGS-strfmon.c += $(libio-mtsafe)
157 CFLAGS-strfromd.c += $(libio-mtsafe)
158 CFLAGS-strfromf.c += $(libio-mtsafe)
159 CFLAGS-strfroml.c += $(libio-mtsafe)
[all …]
A Dtst-strtoll.c310 static void expand (char *dst, int c);
389 expand (char *dst, int c) in expand() argument
391 if (isprint (c)) in expand()
393 dst[0] = c; in expand()
397 (void) sprintf (dst, "%#.3o", (unsigned int) c); in expand()
A Dtst-strtol.c535 static void expand (char *dst, int c);
614 expand (char *dst, int c) in expand() argument
616 if (isprint (c)) in expand()
618 dst[0] = c; in expand()
622 (void) sprintf (dst, "%#.3o", (unsigned int) c); in expand()
A Dtst-setcontext.c78 volatile int c, volatile int d) in test_stack() argument
100 if (c != 3) in test_stack()
A Dqsort.c238 char c = *trav; in _quicksort() local
243 *hi = c; in _quicksort()
A DVersions23 # c*
A Dlonglong.h1563 UHItype c; \
1565 c = __clzhi2 ((x) >> (size - 16)); \
1566 (count) += c; \
1567 if (c != 16) \

Completed in 61 milliseconds