Lines Matching refs:mapper
27 struct addr_map *mapper; /* address map */ member
63 ap->mapper = (struct addr_map *)calloc(num_addr, sizeof(struct addr_map)); in CreateAddressPool()
64 if (!ap->mapper) { in CreateAddressPool()
91 ap->mapper[i].addrmap[j] = &ap->pool[cnt]; in CreateAddressPool()
133 ap->mapper = (struct addr_map *)calloc(num_addr, sizeof(struct addr_map)); in CreateAddressPoolPerCore()
134 if (!ap->mapper) { in CreateAddressPoolPerCore()
173 ap->mapper[i].addrmap[j] = &ap->pool[cnt]; in CreateAddressPoolPerCore()
205 if (ap->mapper) { in DestroyAddressPool()
206 free(ap->mapper); in DestroyAddressPool()
207 ap->mapper = NULL; in DestroyAddressPool()
307 if (ap->mapper) { in FreeAddress()
313 walk = ap->mapper[addr_h - ap->addr_base].addrmap[port_h]; in FreeAddress()