Lines Matching +full:256 +full:b
25 p = kunit_kzalloc(test, 256 * 2 * 2, GFP_KERNEL); in string_test_memset16()
28 for (i = 0; i < 256; i++) { in string_test_memset16()
29 for (j = 0; j < 256; j++) { in string_test_memset16()
30 memset(p, 0xa1, 256 * 2 * sizeof(v)); in string_test_memset16()
54 p = kunit_kzalloc(test, 256 * 2 * 4, GFP_KERNEL); in string_test_memset32()
57 for (i = 0; i < 256; i++) { in string_test_memset32()
58 for (j = 0; j < 256; j++) { in string_test_memset32()
59 memset(p, 0xa1, 256 * 2 * sizeof(v)); in string_test_memset32()
83 p = kunit_kzalloc(test, 256 * 2 * 8, GFP_KERNEL); in string_test_memset64()
86 for (i = 0; i < 256; i++) { in string_test_memset64()
87 for (j = 0; j < 256; j++) { in string_test_memset64()
88 memset(p, 0xa1, 256 * 2 * sizeof(v)); in string_test_memset64()
174 { "abba", "a", "b", 1, 1 }, in string_test_strspn()
219 strcmp_fill_buffers('B', 'B'); in string_test_strcmp_long_strings()
254 strcmp_fill_buffers('B', 'B'); in string_test_strncmp_long_strings()
278 /* Despite ascii code for 'a' is larger than ascii code for 'B', 'a' < 'B' */ in string_test_strcasecmp()
279 STRCMP_TEST_EXPECT_LOWER(test, strcasecmp, "a", "B"); in string_test_strcasecmp()
280 STRCMP_TEST_EXPECT_GREATER(test, strcasecmp, "B", "a"); in string_test_strcasecmp()
287 strcmp_fill_buffers('b', 'B'); in string_test_strcasecmp_long_strings()
303 STRCMP_TEST_EXPECT_LOWER(test, strncasecmp, "a", "B", 1); in string_test_strncasecmp()
304 STRCMP_TEST_EXPECT_GREATER(test, strncasecmp, "B", "a", 1); in string_test_strncasecmp()
311 strcmp_fill_buffers('b', 'B'); in string_test_strncasecmp_long_strings()
582 char nonstring[7] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g' }; in string_test_memtostr()
583 char nonstring_small[3] = { 'a', 'b', 'c' }; in string_test_memtostr()