Lines Matching defs:temp
44 uint8_t temp[32], iv[16];
51 av_camellia_crypt(cs, temp, rpt, 1, NULL, 0);
53 if (rct[j][i] != temp[i]) {
54 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[j][i], temp[i]);
58 av_camellia_crypt(cs, temp, rct[j], 1, NULL, 1);
60 if (rpt[i] != temp[i]) {
61 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
68 av_camellia_crypt(cs, temp, rpt, 2, iv, 0);
70 av_camellia_crypt(cs, temp, temp, 2, iv, 1);
72 if (rpt[i] != temp[i]) {
73 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);