Home
last modified time | relevance | path

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

/glibc-2.36/sysdeps/x86/
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()
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()
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()
Dtst-strncmp-rtm.c39 #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()
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()
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()
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()
Dtst-strcmp-rtm.c39 #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()
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()
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()
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()
/glibc-2.36/math/
Dtest-nan-overflow.c26 #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/
Dtst-ftell-partial-wide.c34 #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()