Lines Matching defs:tmp
367 tmp = (unsigned char)(src); \
368 if ((unsigned int)(tmp -= 0x20) >= 0x60) return -1; \
369 tmp = BF_atoi64[tmp]; \
370 if (tmp > 63) return -1; \
371 (dst) = tmp; \
379 unsigned int tmp, c1, c2, c3, c4;
434 BF_word tmp = *x;
435 tmp = (tmp << 16) | (tmp >> 16);
436 *x++ = ((tmp & 0x00FF00FF) << 8) | ((tmp >> 8) & 0x00FF00FF);
503 BF_word safety, sign, diff, tmp[2];
546 tmp[0] = tmp[1] = 0;
548 tmp[0] <<= 8;
549 tmp[0] |= (unsigned char)*ptr; /* correct */
550 tmp[1] <<= 8;
551 tmp[1] |= (signed char)*ptr; /* bug */
556 * extension in tmp[1] occurs. Once this flag is set, it remains set.
559 sign |= tmp[1] & 0x80;
565 diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */
567 expanded[i] = tmp[bug];
568 initial[i] = BF_init_state.s.P[i] ^ tmp[bug];