Lines Matching refs:T
30 type T, T2;
36 * x = (T)\(kmalloc(E1, ...)\|vmalloc(E1)\|dma_alloc_coherent(...,E1,...)\|
47 type T, T2;
57 - x = (T *)kmalloc(E1,E2);
60 - x = (T)kmalloc(E1,E2);
61 + x = (T)kzalloc(E1,E2);
66 - x = (T *)vmalloc(E1);
69 - x = (T)vmalloc(E1);
70 + x = (T)vzalloc(E1);
75 - x = (T *)dma_alloc_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);
84 - x = (T *)kmalloc_node(E1,E2,E3);
87 - x = (T)kmalloc_node(E1,E2,E3);
88 + x = (T)kzalloc_node(E1,E2,E3);
93 - x = (T *)kmem_cache_alloc(E3,E4);
96 - x = (T)kmem_cache_alloc(E3,E4);
97 + x = (T)kmem_cache_zalloc(E3,E4);
102 - x = (T *)kmem_alloc(E1,E2);
105 - x = (T)kmem_alloc(E1,E2);
106 + x = (T)kmem_zalloc(E1,E2);
111 - x = (T *)devm_kmalloc(E2,E1,E3);
114 - x = (T)devm_kmalloc(E2,E1,E3);
115 + x = (T)devm_kzalloc(E2,E1,E3);
120 - x = (T *)kvmalloc(E1,E2);
123 - x = (T)kvmalloc(E1,E2);
124 + x = (T)kvzalloc(E1,E2);
129 - x = (T *)kvmalloc_node(E1,E2,E3);
132 - x = (T)kvmalloc_node(E1,E2,E3);
133 + x = (T)kvzalloc_node(E1,E2,E3);
143 type T, T2;
150 x = (T)kmalloc@p(E1,E2);
173 type T, T2;
180 x = (T)vmalloc@p(E1);
203 type T, T2;
210 x = (T)dma_alloc_coherent@p(E2,E1,E3,E4);
233 type T, T2;
240 x = (T)kmalloc_node@p(E1,E2,E3);
263 type T, T2;
270 x = (T)kmem_cache_alloc@p(E2,E3);
293 type T, T2;
300 x = (T)kmem_alloc@p(E1,E2);
323 type T, T2;
330 x = (T)devm_kmalloc@p(E2,E1,E3);
353 type T, T2;
360 x = (T)kvmalloc@p(E1,E2);
383 type T, T2;
390 x = (T)kvmalloc_node@p(E1,E2,E3);