Lines Matching defs:temp
226 union smc_host_cursor temp, old;
231 temp.count = ntohl(net.count);
232 temp.wrap = ntohs(net.wrap);
233 if ((old.wrap > temp.wrap) && temp.wrap)
235 if ((old.wrap == temp.wrap) &&
236 (old.count > temp.count))
238 smc_curs_copy(local, &temp, conn);
259 union smc_host_cursor temp;
261 temp.wrap = peer->prod.wrap;
262 temp.count = peer->prod.count;
263 smc_curs_copy(&local->prod, &temp, conn);
265 temp.wrap = peer->cons.wrap;
266 temp.count = peer->cons.count;
267 smc_curs_copy(&local->cons, &temp, conn);