Home | History | Annotate | Download | only in s390x

Lines Matching refs:buff

17 uint8_t buff[40];
61 printf("%c", buff[i]);
72 run_test((char *)&touppercase, &buff, 0, 0x0);
73 run_test((char *)&touppercase, &buff, 0, 'b');
76 memset(buff, 'a', 1);
77 run_test((char *)&touppercase, &buff, 1, 'a'); //cc = 1
78 run_test((char *)&touppercase, &buff, 1, 'b');
80 memcpy(buff, "abcdefgh", 8);
81 run_test((char *)&touppercase, &buff, 3, 'a'); //cc = 1
82 run_test((char *)&touppercase, &buff, 3, 'f'); //cc = 0
83 run_test((char *)&touppercase, &buff, 8, 'l'); //cc = 0
85 memcpy(buff, "ABCDEFGH", 8);
86 run_test((char *)&tolowercase, &buff, 3, 'A'); // cc = 1
87 run_test((char *)&tolowercase, &buff, 3, 'C'); // cc = 0
88 run_test((char *)&tolowercase, &buff, 8, 0x0); // cc = 0
90 memcpy(buff, "01234567", 8);
91 run_test((char *)&touppercase, &buff, 8, 'A');
92 run_test((char *)&tolowercase, &buff, 8, 'A');