Lines Matching refs:T
31 type T, T2;
37 * x = (T)\(kmalloc(E1, ...)\|vmalloc(E1)\|dma_alloc_coherent(...,E1,...)\|
48 type T, T2;
58 - x = (T *)kmalloc(E1,E2);
61 - x = (T)kmalloc(E1,E2);
62 + x = (T)kzalloc(E1,E2);
67 - x = (T *)vmalloc(E1);
70 - x = (T)vmalloc(E1);
71 + x = (T)vzalloc(E1);
76 - x = (T *)kmalloc_node(E1,E2,E3);
79 - x = (T)kmalloc_node(E1,E2,E3);
80 + x = (T)kzalloc_node(E1,E2,E3);
85 - x = (T *)kmem_cache_alloc(E3,E4);
88 - x = (T)kmem_cache_alloc(E3,E4);
89 + x = (T)kmem_cache_zalloc(E3,E4);
94 - x = (T *)kmem_alloc(E1,E2);
97 - x = (T)kmem_alloc(E1,E2);
98 + x = (T)kmem_zalloc(E1,E2);
103 - x = (T *)devm_kmalloc(E2,E1,E3);
106 - x = (T)devm_kmalloc(E2,E1,E3);
107 + x = (T)devm_kzalloc(E2,E1,E3);
112 - x = (T *)kvmalloc(E1,E2);
115 - x = (T)kvmalloc(E1,E2);
116 + x = (T)kvzalloc(E1,E2);
121 - x = (T *)kvmalloc_node(E1,E2,E3);
124 - x = (T)kvmalloc_node(E1,E2,E3);
125 + x = (T)kvzalloc_node(E1,E2,E3);
135 type T, T2;
142 x = (T)kmalloc@p(E1,E2);
165 type T, T2;
172 x = (T)vmalloc@p(E1);
195 type T, T2;
202 x = (T)dma_alloc_coherent@p(E2,E1,E3,E4);
225 type T, T2;
232 x = (T)kmalloc_node@p(E1,E2,E3);
255 type T, T2;
262 x = (T)kmem_cache_alloc@p(E2,E3);
285 type T, T2;
292 x = (T)kmem_alloc@p(E1,E2);
315 type T, T2;
322 x = (T)devm_kmalloc@p(E2,E1,E3);
345 type T, T2;
352 x = (T)kvmalloc@p(E1,E2);
375 type T, T2;
382 x = (T)kvmalloc_node@p(E1,E2,E3);