Lines Matching refs:tmp
95 } tmp;
111 memcpy(tmp.c, out - 16, 16);
113 memcpy(out, tmp.c, residue);
115 memset(tmp.c, 0, sizeof(tmp));
116 memcpy(tmp.c, in, residue);
118 (*cbc) (tmp.c, out - 16, 16, key, ivec, 1);
131 } tmp;
151 memset(tmp.c, 0, sizeof(tmp));
152 memcpy(tmp.c, in, residue);
153 (*cbc) (tmp.c, out - 16 + residue, 16, key, ivec, 1);
167 } tmp;
183 (*block) (in, tmp.c + 16, key);
185 memcpy(tmp.c, tmp.c + 16, 16);
186 memcpy(tmp.c, in + 16, residue);
187 (*block) (tmp.c, tmp.c, key);
191 out[n] = tmp.c[n] ^ ivec[n];
195 out[n] = tmp.c[n] ^ in[n];
210 } tmp;
230 (*block) (in + residue, tmp.c + 16, key);
232 memcpy(tmp.c, tmp.c + 16, 16);
233 memcpy(tmp.c, in, residue);
234 (*block) (tmp.c, tmp.c, key);
238 out[n] = tmp.c[n] ^ ivec[n];
240 tmp.c[n] = c;
243 out[n] = tmp.c[n] ^ tmp.c[n - 16];
256 } tmp;
272 memset(tmp.c, 0, sizeof(tmp));
274 * this places in[16] at &tmp.c[16] and decrypted block at &tmp.c[0]
276 (*cbc) (in, tmp.c, 16, key, tmp.c + 16, 0);
278 memcpy(tmp.c, in + 16, residue);
280 (*cbc) (tmp.c, out, 16 + residue, key, ivec, 0);
282 (*cbc) (tmp.c, tmp.c, 32, key, ivec, 0);
283 memcpy(out, tmp.c, 16 + residue);
296 } tmp;
316 memset(tmp.c, 0, sizeof(tmp));
318 * this places in[16] at &tmp.c[16] and decrypted block at &tmp.c[0]
320 (*cbc) (in + residue, tmp.c, 16, key, tmp.c + 16, 0);
322 memcpy(tmp.c, in, residue);
324 (*cbc) (tmp.c, out, 16 + residue, key, ivec, 0);
326 (*cbc) (tmp.c, tmp.c, 32, key, ivec, 0);
327 memcpy(out, tmp.c, 16 + residue);