Lines Matching refs:x
30 expression x;
35 * x = (T)kmalloc(E1,E2);
36 if ((x==NULL) || ...) S
37 * memset((T2)x,0,E1);
45 expression x;
50 - x = (T)kmalloc(E1,E2);
51 + x = kzalloc(E1,E2);
52 if ((x==NULL) || ...) S
53 - memset((T2)x,0,E1);
61 expression x;
67 x = (T)kmalloc@p(E1,E2);
68 if ((x==NULL) || ...) S
69 memset((T2)x,0,E1);
73 x << r.x;
76 msg="%s" % (x)
82 x << r.x;
85 msg="WARNING: kzalloc should be used for %s, instead of kmalloc/memset" % (x)