Lines Matching refs:ptr
973 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
974 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
975 * @out_nid: ptr to int for nid of the range, can be %NULL
1078 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
1079 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
1080 * @out_nid: ptr to int for nid of the range, can be %NULL
1239 * @out_spfn: ptr to ulong for start pfn of the range, can be %NULL
1240 * @out_epfn: ptr to ulong for end pfn of the range, can be %NULL
1492 void *ptr;
1498 ptr = memblock_alloc_internal(size, align,
1500 if (ptr && size > 0)
1501 page_init_poison(ptr, size);
1503 return ptr;
1530 void *ptr;
1536 ptr = memblock_alloc_internal(size, align,
1538 if (ptr && size > 0)
1539 page_init_poison(ptr, size);
1541 return ptr;
1566 void *ptr;
1571 ptr = memblock_alloc_internal(size, align,
1573 if (ptr)
1574 memset(ptr, 0, size);
1576 return ptr;