Lines Matching refs:w
129 int w = 0; in in4_pton() local
143 if (w == 0) in in4_pton()
145 *d++ = w & 0xff; in in4_pton()
146 w = 0; in in4_pton()
155 w = (w * 10) + c; in in4_pton()
156 if ((w & 0xffff) > 255) { in in4_pton()
196 int w = 0; in in6_pton() local
214 *d++ = (w >> 8) & 0xff; in in6_pton()
215 *d++ = w & 0xff; in in6_pton()
217 w = 0; in in6_pton()
259 w = (w << 4) | (0xff & c); in in6_pton()
261 if (!(w & 0xf000)) { in in6_pton()
342 static void __net_random_once_deferred(struct work_struct *w) in __net_random_once_deferred() argument
345 container_of(w, struct __net_random_once_work, work); in __net_random_once_deferred()
353 struct __net_random_once_work *w; in __net_random_once_disable_jump() local
355 w = kmalloc(sizeof(*w), GFP_ATOMIC); in __net_random_once_disable_jump()
356 if (!w) in __net_random_once_disable_jump()
359 INIT_WORK(&w->work, __net_random_once_deferred); in __net_random_once_disable_jump()
360 w->key = key; in __net_random_once_disable_jump()
361 schedule_work(&w->work); in __net_random_once_disable_jump()