Home | History | Annotate | Download | only in s390x

Lines Matching refs:buff

8 uint8_t buff[40];
24 tr(tran_table, buff, len);
27 printf("%c", buff[i]);
35 run_test((char *)&touppercase, &buff, 0);
36 run_test((char *)&touppercase, &buff, 0);
39 memset(buff, 'a', 1);
40 run_test((char *)&touppercase, &buff, 1);
42 memcpy(buff, "abcdefgh", 8);
43 run_test((char *)&touppercase, &buff, 3);
44 run_test((char *)&touppercase, &buff, 3);
45 run_test((char *)&touppercase, &buff, 8);
47 memcpy(buff, "ABCDEFGH", 8);
48 run_test((char *)&tolowercase, &buff, 3);
49 run_test((char *)&tolowercase, &buff, 3);
50 run_test((char *)&tolowercase, &buff, 8);
52 memcpy(buff, "0123456789", 9);
53 run_test((char *)&touppercase, &buff, 9);
54 run_test((char *)&tolowercase, &buff, 9);