t_new 168 net/ipv6/seg6.c struct in6_addr *val, *t_old, *t_new; t_new 177 net/ipv6/seg6.c t_new = kmemdup(val, sizeof(*val), GFP_KERNEL); t_new 178 net/ipv6/seg6.c if (!t_new) t_new 184 net/ipv6/seg6.c rcu_assign_pointer(sdata->tun_src, t_new); t_new 207 samples/bpf/hbm.c struct timeval t0, t_last, t_new; t_new 227 samples/bpf/hbm.c if (gettimeofday(&t_new, NULL) < 0) t_new 229 samples/bpf/hbm.c delta_ms = (t_new.tv_sec - t0.tv_sec) * 1000 + t_new 230 samples/bpf/hbm.c (t_new.tv_usec - t0.tv_usec)/1000; t_new 233 samples/bpf/hbm.c delta_time = (t_new.tv_sec - t_last.tv_sec) * 1000000 + t_new 234 samples/bpf/hbm.c (t_new.tv_usec - t_last.tv_usec); t_new 237 samples/bpf/hbm.c t_last = t_new;