Searched refs:c (Results 1 – 15 of 15) sorted by relevance
/stdlib/ |
A D | stdint.h | 106 # 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 D | tst-strtod-underflow.c | 59 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 D | strtol_l.c | 145 # 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 D | testmb.c | 8 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 D | tst-qsort.c | 5 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 D | tst-tininess.c | 26 volatile float c; variable 43 c = a * b; in do_test()
|
A D | tst-strtod.c | 81 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 D | strtod_l.c | 535 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 D | Makefile | 114 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 D | tst-strtoll.c | 310 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 D | tst-strtol.c | 535 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 D | tst-setcontext.c | 78 volatile int c, volatile int d) in test_stack() argument 100 if (c != 3) in test_stack()
|
A D | qsort.c | 238 char c = *trav; in _quicksort() local 243 *hi = c; in _quicksort()
|
A D | Versions | 23 # c*
|
A D | longlong.h | 1563 UHItype c; \ 1565 c = __clzhi2 ((x) >> (size - 16)); \ 1566 (count) += c; \ 1567 if (c != 16) \
|
Completed in 61 milliseconds