Lines Matching defs:tmp
114 uint32_t tmp;
116 tmp = multiswap_step(keys, a);
117 b += tmp;
118 c = (key >> 32) + tmp;
119 tmp = multiswap_step(keys + 6, b);
120 c += tmp;
121 return ((uint64_t)c << 32) | tmp;
138 uint32_t tmp = data;
139 c -= tmp;
140 b = multiswap_inv_step(keys + 6, tmp);
141 tmp = c - (key >> 32);
142 b -= tmp;
143 a = multiswap_inv_step(keys, tmp);