Lines Matching refs:x
21 expression x;
25 * x = \(dma_pool_alloc\|pci_pool_alloc\)(...);
26 if ((x==NULL) || ...) S
27 * memset(x,0, ...);
34 expression x;
39 - x = dma_pool_alloc(a,b,c);
40 + x = dma_pool_zalloc(a,b,c);
41 if ((x==NULL) || ...) S
42 - memset(x,0,...);
45 expression x;
50 - x = pci_pool_alloc(a,b,c);
51 + x = pci_pool_zalloc(a,b,c);
52 if ((x==NULL) || ...) S
53 - memset(x,0,...);
60 expression x;
66 x = @p\(dma_pool_alloc\|pci_pool_alloc\)(a,b,c);
67 if ((x==NULL) || ...) S
68 memset(x,0, ...);
72 x << r.x;
75 msg="%s" % (x)
81 x << r.x;
84 msg="WARNING: *_pool_zalloc should be used for %s, instead of *_pool_alloc/memset" % (x)