Searched refs:c (Results 1 – 12 of 12) sorted by relevance
/debug/ |
A D | strncat_chk.c | 26 char c; in __strncat_chk() local 34 c = *s1++; in __strncat_chk() 50 c = *s2++; in __strncat_chk() 51 *++s1 = c; in __strncat_chk() 56 c = *s2++; in __strncat_chk() 57 *++s1 = c; in __strncat_chk() 62 c = *s2++; in __strncat_chk() 63 *++s1 = c; in __strncat_chk() 68 c = *s2++; in __strncat_chk() 69 *++s1 = c; in __strncat_chk() [all …]
|
A D | wcsncat_chk.c | 25 wchar_t c; in __wcsncat_chk() local 33 c = *dest++; in __wcsncat_chk() 49 c = *src++; in __wcsncat_chk() 50 *++dest = c; in __wcsncat_chk() 55 c = *src++; in __wcsncat_chk() 56 *++dest = c; in __wcsncat_chk() 61 c = *src++; in __wcsncat_chk() 62 *++dest = c; in __wcsncat_chk() 67 c = *src++; in __wcsncat_chk() 68 *++dest = c; in __wcsncat_chk() [all …]
|
A D | strcat_chk.c | 28 char c; in __strcat_chk() local 35 c = *s1++; in __strcat_chk() 37 while (c != '\0'); in __strcat_chk() 48 c = *s2++; in __strcat_chk() 49 *++s1 = c; in __strcat_chk() 51 while (c != '\0'); in __strcat_chk()
|
A D | wcscpy_chk.c | 26 wint_t c; in __wcscpy_chk() local 39 c = *wcp++; in __wcscpy_chk() 40 wcp[off] = c; in __wcscpy_chk() 42 while (c != L'\0'); in __wcscpy_chk() 52 c = *src++; in __wcscpy_chk() 53 *wcp++ = c; in __wcscpy_chk() 55 while (c != L'\0'); in __wcscpy_chk()
|
A D | wcscat_chk.c | 27 wchar_t c; in __wcscat_chk() local 34 c = *s1++; in __wcscat_chk() 36 while (c != L'\0'); in __wcscat_chk() 47 c = *s2++; in __wcscat_chk() 48 *++s1 = c; in __wcscat_chk() 50 while (c != L'\0'); in __wcscat_chk()
|
A D | wcpcpy_chk.c | 30 wint_t c; in __wcpcpy_chk() local 37 c = wcp[off]; in __wcpcpy_chk() 38 *++wcp = c; in __wcpcpy_chk() 40 while (c != L'\0'); in __wcpcpy_chk()
|
A D | Makefile | 70 CFLAGS-sprintf_chk.c += $(libio-mtsafe) 71 CFLAGS-snprintf_chk.c += $(libio-mtsafe) 72 CFLAGS-vsprintf_chk.c += $(libio-mtsafe) 73 CFLAGS-vsnprintf_chk.c += $(libio-mtsafe) 74 CFLAGS-asprintf_chk.c += $(libio-mtsafe) 75 CFLAGS-vasprintf_chk.c += $(libio-mtsafe) 76 CFLAGS-obprintf_chk.c += $(libio-mtsafe) 88 CFLAGS-swprintf_chk.c += $(libio-mtsafe) 89 CFLAGS-vswprintf_chk.c += $(libio-mtsafe) 142 CFLAGS-tst-backtrace2.c += -funwind-tables [all …]
|
A D | memset_chk.c | 22 __memset_chk (void *dstpp, int c, size_t len, size_t dstlen) in __memset_chk() argument 27 return memset (dstpp, c, len); in __memset_chk()
|
A D | wmemset_chk.c | 22 __wmemset_chk (wchar_t *s, wchar_t c, size_t n, size_t dstlen) in __wmemset_chk() argument 27 return wmemset (s, c, n); in __wmemset_chk()
|
A D | tst-backtrace3.c | 31 fn (int c) in fn() argument 38 if (c > 0) in fn() 40 fn (c - 1); in fn()
|
A D | tst-backtrace4.c | 84 fn (int c) in fn() argument 88 if (c > 0) in fn() 90 fn (c - 1); in fn()
|
A D | tst-backtrace5.c | 107 fn (int c, int flags) in fn() argument 114 if (c > 0) in fn() 116 fn (c - 1, flags); in fn()
|
Completed in 20 milliseconds