Home
last modified time | relevance | path

Searched refs:STRING_SIZE (Results 1 – 10 of 10) sorted by relevance

/sysdeps/x86/
A Dtst-memrchr-rtm.c22 #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 Dtst-memmove-rtm.c22 #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 Dtst-memcmp-rtm.c22 #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 Dtst-strncmp-rtm.c22 #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 Dtst-strlen-rtm.c22 #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 Dtst-strrchr-rtm.c22 #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 Dtst-memchr-rtm.c22 #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 Dtst-memset-rtm.c22 #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 Dtst-strchr-rtm.c22 #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 Dtst-strcpy-rtm.c22 #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