Lines Matching defs:tmp
921 __u32 tmp;
930 len = hex32_arg(&buffer[i], max, &tmp);
935 if (len == 0 || tmp == 0)
938 pkt_dev->labels[n] = htonl(tmp);
2473 __u32 tmp;
2484 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2485 pkt_dev->hh[11] = tmp;
2486 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2487 pkt_dev->hh[10] = tmp;
2488 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2489 pkt_dev->hh[9] = tmp;
2490 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2491 pkt_dev->hh[8] = tmp;
2492 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2493 pkt_dev->hh[7] = tmp;
2499 __u32 tmp;
2512 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2513 pkt_dev->hh[5] = tmp;
2514 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2515 pkt_dev->hh[4] = tmp;
2516 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2517 pkt_dev->hh[3] = tmp;
2518 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2519 pkt_dev->hh[2] = tmp;
2520 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2521 pkt_dev->hh[1] = tmp;