Searched refs:STRING_SIZE (Results 1 – 10 of 10) sorted by relevance
/sysdeps/x86/ |
A 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()
|
A 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()
|
A 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()
|
A D | tst-strncmp-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() 31 memset (string2, 'a', STRING_SIZE - 1); in prepare() 32 if (strncmp (string1, string2, STRING_SIZE) == 0) in prepare() 42 if (strncmp (string1, string2, STRING_SIZE) == 0) in function()
|
A 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()
|
A 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()
|
A 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()
|
A 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()
|
A 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()
|
A 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()
|
Completed in 12 milliseconds