Searched refs:_xmalloc (Results 1 – 9 of 9) sorted by relevance
/xen-4.10.0-shim-comet/xen/include/xen/ |
A D | xmalloc.h | 13 #define xmalloc(_type) ((_type *)_xmalloc(sizeof(_type), __alignof__(_type))) 23 #define xmalloc_bytes(_bytes) _xmalloc(_bytes, SMP_CACHE_BYTES) 30 extern void *_xmalloc(unsigned long size, unsigned long align); 39 return _xmalloc(size * num, align); in _xmalloc_array()
|
A D | cpumask.h | 348 *(void **)mask = _xmalloc(nr_cpumask_bits / 8, sizeof(long)); in alloc_cpumask_var()
|
/xen-4.10.0-shim-comet/misc/coverity/ |
A D | model.c | 57 void *_xmalloc(unsigned long size, unsigned long align) in _xmalloc() function
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | xmalloc_tlsf.c | 571 void *_xmalloc(unsigned long size, unsigned long align) in _xmalloc() function 610 void *p = _xmalloc(size, align); in _xzalloc()
|
A D | device_tree.c | 1941 mem = (unsigned long)_xmalloc (size + 4, __alignof__(struct dt_device_node)); in __unflatten_device_tree() 2016 ap = _xmalloc(sizeof(*ap) + len + 1, 4); in dt_alias_scan()
|
/xen-4.10.0-shim-comet/xen/arch/arm/ |
A D | gic-v3-lpi.c | 296 void *table = _xmalloc(lpi_data.max_host_lpi_ids, SZ_4K); in gicv3_lpi_set_proptable()
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | io_apic.c | 2017 ioapic_pm_state = _xmalloc(sizeof(struct IO_APIC_route_entry)*nr_entry, in ioapic_pm_state_alloc()
|
/xen-4.10.0-shim-comet/xen/drivers/passthrough/arm/ |
A D | smmu.c | 148 #define kmalloc(size, flags) _xmalloc(size, sizeof(void *))
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | hvm.c | 620 d->arch.hvm_domain.io_bitmap = _xmalloc(HVM_IOBITMAP_SIZE, PAGE_SIZE); in hvm_domain_initialise()
|
Completed in 35 milliseconds