summaryrefslogtreecommitdiff
path: root/string
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-12-17 14:27:26 -0500
committerUlrich Drepper <drepper@gmail.com>2011-12-17 14:27:26 -0500
commita2d18b64edb486825fb5946eefc2131426ccfec9 (patch)
treec28e220805773e5892b38473125fb7e91a571c4b /string
parentdf33a8fb1cc1ca9e085b92c1620f9346aef0c1c3 (diff)
WP cleanup
Diffstat (limited to 'string')
-rw-r--r--string/test-strcpy.c10
-rw-r--r--string/test-strrchr.c12
2 files changed, 11 insertions, 11 deletions
diff --git a/string/test-strcpy.c b/string/test-strcpy.c
index d6f4a0b865..01a46de3c3 100644
--- a/string/test-strcpy.c
+++ b/string/test-strcpy.c
@@ -142,17 +142,17 @@ static void
do_random_tests (void)
{
size_t i, j, n, align1, align2, len;
-
UCHAR *p1 = (UCHAR *) (buf1 + page_size) - 512;
UCHAR *p2 = (UCHAR *) (buf2 + page_size) - 512;
UCHAR *res;
for (n = 0; n < ITERATIONS; n++)
{
- /* For wcsrchr: align1 and align2 here mean align not in bytes, but in wchar_ts,
- in bytes it will equal to align * (sizeof (wchar_t)).
- For strrchr we need to check all alignments from 0 to 63 since some assembly implementations
- have separate prolog for alignments more 48. */
+ /* For wcsrchr: align1 and align2 here mean align not in bytes,
+ but in wchar_ts, in bytes it will equal to align * (sizeof
+ (wchar_t)). For strrchr we need to check all alignments from
+ 0 to 63 since some assembly implementations have separate
+ prolog for alignments more 48. */
align1 = random () & (63 / sizeof(CHAR));
if (random () & 1)
diff --git a/string/test-strrchr.c b/string/test-strrchr.c
index 6126a530c6..484c2f302a 100644
--- a/string/test-strrchr.c
+++ b/string/test-strrchr.c
@@ -93,12 +93,12 @@ static void
do_test (size_t align, size_t pos, size_t len, int seek_char, int max_char)
/* For wcsrchr: align here means align not in bytes,
but in wchar_ts, in bytes it will equal to align * (sizeof (wchar_t))
- len for wcschr here isn't in bytes but it's number of wchar_t symbols. */
+ len for wcschr here isn't in bytes but it's number of wchar_t symbols. */
{
size_t i;
CHAR *result;
CHAR *buf = (CHAR *) buf1;
-
+
align &= 7;
if ( (align + len) * sizeof(CHAR) >= page_size)
return;
@@ -109,7 +109,7 @@ do_test (size_t align, size_t pos, size_t len, int seek_char, int max_char)
if (!buf[align + i])
buf[align + i] = (random () * random ()) & max_char;
if (!buf[align + i])
- buf[align + i] = 1;
+ buf[align + i] = 1;
if ((i > pos || pos >= len) && buf[align + i] == seek_char)
buf[align + i] = seek_char + 10 + (random () & 15);
}
@@ -160,7 +160,7 @@ do_random_tests (void)
if (pos >= len)
len = pos + (random () & 7);
if (len + align >= 512)
- len = 511 - align - (random () & 7);
+ len = 511 - align - (random () & 7);
seek_char = random () & 255;
if (seek_char && pos == len)
{
@@ -171,7 +171,7 @@ do_random_tests (void)
}
j = len + align + 64;
if (j > 512)
- j = 512;
+ j = 512;
for (i = 0; i < j; i++)
{
@@ -197,7 +197,7 @@ do_random_tests (void)
if (pos <= len)
result = (CHAR *) (p + pos + align);
else if (seek_char == 0)
- result = (CHAR *) (p + len + align);
+ result = (CHAR *) (p + len + align);
else
result = NULL;