• Home
  • Raw
  • Download

Lines Matching refs:i

75 	size_t i;  local
101 for (i = 0; i < len; i++) {
119 for (i = 0; i < len; i++)
150 int i; local
153 for (i = 0; i < 8; i++)
216 int i; local
218 for (i = 0; i < 31; i++) {
243 int i; local
246 for (i = 0; i < 8 * (int)(len & 3); i++)
295 int i; local
298 for (i = 0; i < 8; i++)
979 int i; local
990 for (i = 0; i < 100; i++) {
991 bytes += 2*test[i].length;
993 crc ^= __crc32c_le(test[i].crc, test_buf +
994 test[i].start, test[i].length);
1002 for (i = 0; i < 100; i++) {
1003 if (test[i].crc32c_le != __crc32c_le(test[i].crc, test_buf +
1004 test[i].start, test[i].length))
1026 int i, j; local
1029 for (i = 0; i < 10; i++) {
1032 crc_full = __crc32c_le(test[i].crc, test_buf + test[i].start,
1033 test[i].length);
1034 for (j = 0; j <= test[i].length; ++j) {
1036 u32 len1 = j, len2 = test[i].length - j;
1038 crc1 = __crc32c_le(test[i].crc, test_buf +
1039 test[i].start, len1);
1040 crc2 = __crc32c_le(0, test_buf + test[i].start +
1044 crc_full == test[i].crc32c_le))
1061 int i; local
1072 for (i = 0; i < 100; i++) {
1073 bytes += 2*test[i].length;
1075 crc ^= crc32_le(test[i].crc, test_buf +
1076 test[i].start, test[i].length);
1078 crc ^= crc32_be(test[i].crc, test_buf +
1079 test[i].start, test[i].length);
1087 for (i = 0; i < 100; i++) {
1088 if (test[i].crc_le != crc32_le(test[i].crc, test_buf +
1089 test[i].start, test[i].length))
1092 if (test[i].crc_be != crc32_be(test[i].crc, test_buf +
1093 test[i].start, test[i].length))
1116 int i, j; local
1119 for (i = 0; i < 10; i++) {
1122 crc_full = crc32_le(test[i].crc, test_buf + test[i].start,
1123 test[i].length);
1124 for (j = 0; j <= test[i].length; ++j) {
1126 u32 len1 = j, len2 = test[i].length - j;
1128 crc1 = crc32_le(test[i].crc, test_buf +
1129 test[i].start, len1);
1130 crc2 = crc32_le(0, test_buf + test[i].start +
1134 crc_full == test[i].crc_le))