Lines Matching refs:addr
140 addr_t addr;
142 addr = ALIGN(*start, align);
143 if (check_4k && CROSS4K(addr, len)) {
144 addr = ALIGN(addr, 4096);
145 addr = ALIGN(addr, align);
147 if (addr + len > end)
149 *start = addr + len;
150 return (void *) addr;
305 * @addr: address value for the new tidaw
317 struct tidaw *itcw_add_tidaw(struct itcw *itcw, u8 flags, void *addr, u32 count)
336 return tcw_add_tidaw(itcw->tcw, itcw->num_tidaws++, flags, addr, count);
343 * @addr: the data address
351 void itcw_set_data(struct itcw *itcw, void *addr, int use_tidal)
353 tcw_set_data(itcw->tcw, addr, use_tidal);