Lines Matching refs:E4
49 expression E1,E2,E3,E4;
72 - x = dma_alloc_coherent(E2,E1,E3,E4);
73 + x = dma_zalloc_coherent(E2,E1,E3,E4);
75 - x = (T *)dma_alloc_coherent(E2,E1,E3,E4);
76 + x = dma_zalloc_coherent(E2,E1,E3,E4);
78 - x = (T)dma_alloc_coherent(E2,E1,E3,E4);
79 + x = (T)dma_zalloc_coherent(E2,E1,E3,E4);
90 - x = kmem_cache_alloc(E3,E4);
91 + x = kmem_cache_zalloc(E3,E4);
93 - x = (T *)kmem_cache_alloc(E3,E4);
94 + x = kmem_cache_zalloc(E3,E4);
96 - x = (T)kmem_cache_alloc(E3,E4);
97 + x = (T)kmem_cache_zalloc(E3,E4);
205 expression E1,E2,E3,E4;
210 x = (T)dma_alloc_coherent@p(E2,E1,E3,E4);