Lines Matching +full:- +full:j
113 size_t j; in test_hash_alloc() local
128 for (j = 0; j < resultlen; j++) { in test_hash_alloc()
129 g_assert(expected_outputs[i][j * 2] == hex[(result[j] >> 4) & 0xf]); in test_hash_alloc()
130 g_assert(expected_outputs[i][j * 2 + 1] == hex[result[j] & 0xf]); in test_hash_alloc()
145 size_t j; in test_hash_prealloc() local
161 /* Validate that our pre-allocated pointer was not replaced */ in test_hash_prealloc()
164 for (j = 0; j < resultlen; j++) { in test_hash_prealloc()
165 g_assert(expected_outputs[i][j * 2] == hex[(result[j] >> 4) & 0xf]); in test_hash_prealloc()
166 g_assert(expected_outputs[i][j * 2 + 1] == hex[result[j] & 0xf]); in test_hash_prealloc()
187 size_t j; in test_hash_iov() local
200 for (j = 0; j < resultlen; j++) { in test_hash_iov()
201 g_assert(expected_outputs[i][j * 2] == hex[(result[j] >> 4) & 0xf]); in test_hash_iov()
202 g_assert(expected_outputs[i][j * 2 + 1] == hex[result[j] & 0xf]); in test_hash_iov()
276 size_t j; in test_hash_accumulate() local
286 for (j = 0; j < G_N_ELEMENTS(iov); j++) { in test_hash_accumulate()
288 &iov[j], 1, in test_hash_accumulate()
299 for (j = 0; j < resultlen; j++) { in test_hash_accumulate()
300 g_assert(expected_outputs[i][j * 2] == hex[(result[j] >> 4) & 0xf]); in test_hash_accumulate()
301 g_assert(expected_outputs[i][j * 2 + 1] == hex[result[j] & 0xf]); in test_hash_accumulate()