Lines Matching refs:i
349 short i, j, count; in blowfish_setkey() local
353 for (i = 0, count = 0; i < 256; i++) in blowfish_setkey()
358 for (i = 0; i < 16 + 2; i++) in blowfish_setkey()
359 P[i] = bf_pbox[i]; in blowfish_setkey()
362 for (j = 0, i = 0; i < 16 + 2; i++) { in blowfish_setkey()
368 P[i] = P[i] ^ temp; in blowfish_setkey()
375 for (i = 0; i < 16 + 2; i += 2) { in blowfish_setkey()
378 P[i] = data[0]; in blowfish_setkey()
379 P[i + 1] = data[1]; in blowfish_setkey()
382 for (i = 0; i < 4; i++) { in blowfish_setkey()
383 for (j = 0, count = i * 256; j < 256; j += 2, count += 2) { in blowfish_setkey()