/glibc-2.36/sysdeps/x86/ |
D | tst-memrchr-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 29 memset (string1, 'a', STRING_SIZE); in prepare() 31 string1[STRING_SIZE - 100] = 'c'; in prepare() 32 char *p = memrchr (string1, 'c', STRING_SIZE); in prepare() 33 if (p == &string1[STRING_SIZE - 100]) in prepare() 43 char *p = memrchr (string1, 'c', STRING_SIZE); in function() 44 if (p == &string1[STRING_SIZE - 100]) in function()
|
D | tst-memmove-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 24 char string2[STRING_SIZE]; 30 memset (string1, 'a', STRING_SIZE); in prepare() 31 if (memmove (string2, string1, STRING_SIZE) == string2 in prepare() 32 && memcmp (string2, string1, STRING_SIZE) == 0) in prepare() 42 if (memmove (string2, string1, STRING_SIZE) == string2 in function() 43 && memcmp (string2, string1, STRING_SIZE) == 0) in function()
|
D | tst-memcmp-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 24 char string2[STRING_SIZE]; 30 memset (string1, 'a', STRING_SIZE); in prepare() 31 memset (string2, 'a', STRING_SIZE); in prepare() 32 if (memcmp (string1, string2, STRING_SIZE) == 0) in prepare() 42 if (memcmp (string1, string2, STRING_SIZE) == 0) in function()
|
D | tst-strncmp-rtm.c | 39 #define STRING_SIZE 1024 macro 40 CHAR string1[STRING_SIZE]; 41 CHAR string2[STRING_SIZE]; 47 MEMSET (string1, 'a', STRING_SIZE - 1); in prepare() 48 MEMSET (string2, 'a', STRING_SIZE - 1); in prepare() 49 if (STRNCMP (string1, string2, STRING_SIZE) == 0) in prepare() 59 if (STRNCMP (string1, string2, STRING_SIZE) == 0) in function()
|
D | tst-strlen-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 29 memset (string1, 'a', STRING_SIZE - 1); in prepare() 30 string1[STRING_SIZE - 100] = '\0'; in prepare() 32 if (len == STRING_SIZE - 100) in prepare() 43 if (len == STRING_SIZE - 100) in function()
|
D | tst-strrchr-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 29 memset (string1, 'a', STRING_SIZE - 1); in prepare() 30 string1[STRING_SIZE - 100] = 'c'; in prepare() 32 if (p == &string1[STRING_SIZE - 100]) in prepare() 43 if (p == &string1[STRING_SIZE - 100]) in function()
|
D | tst-memchr-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 29 memset (string1, 'a', STRING_SIZE); in prepare() 31 string1[STRING_SIZE - 100] = 'c'; in prepare() 32 char *p = memchr (string1, 'c', STRING_SIZE); in prepare() 43 char *p = memchr (string1, 'c', STRING_SIZE); in function()
|
D | tst-strcmp-rtm.c | 39 #define STRING_SIZE 1024 macro 40 CHAR string1[STRING_SIZE]; 41 CHAR string2[STRING_SIZE]; 47 MEMSET (string1, 'a', STRING_SIZE - 1); in prepare() 48 MEMSET (string2, 'a', STRING_SIZE - 1); in prepare()
|
D | tst-memset-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 29 memset (string1, 'a', STRING_SIZE); in prepare() 37 memset (string1, 'a', STRING_SIZE); in function()
|
D | tst-strchr-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 29 memset (string1, 'a', STRING_SIZE - 1); in prepare() 31 string1[STRING_SIZE - 100] = 'c'; in prepare()
|
D | tst-strcpy-rtm.c | 22 #define STRING_SIZE 1024 macro 23 char string1[STRING_SIZE]; 24 char string2[STRING_SIZE]; 30 memset (string1, 'a', STRING_SIZE - 1); in prepare()
|
/glibc-2.36/math/ |
D | test-nan-overflow.c | 26 #define STRING_SIZE (2 * STACK_LIM) macro 36 char *nanstr = malloc (STRING_SIZE); in do_test() 42 memset (nanstr, '0', STRING_SIZE - 1); in do_test() 43 nanstr[STRING_SIZE - 1] = 0; in do_test()
|
/glibc-2.36/libio/ |
D | tst-ftell-partial-wide.c | 34 #define STRING_SIZE (1400) macro 62 inputs[i] = malloc (STRING_SIZE * sizeof (wchar_t)); in do_test() 68 wmemset (inputs[i], seed, STRING_SIZE - 1); in do_test() 69 inputs[i][STRING_SIZE - 1] = L'\0'; in do_test()
|