Home
last modified time | relevance | path

Searched refs:rle (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_bus.c3239 if (rle == NULL || rle->res == NULL) in resource_list_busy()
3268 if (rle != NULL && rle->flags & RLE_RESERVED) in resource_list_reserved()
3289 if (rle->type == type && rle->rid == rid) in resource_list_find()
3423 if (!rle) in resource_list_alloc()
3456 rle->start = rman_get_start(rle->res); in resource_list_alloc()
3457 rle->end = rman_get_end(rle->res); in resource_list_alloc()
3496 if (!rle) in resource_list_release()
3556 rman_get_rid(rle->res), rle->res); in resource_list_release_active()
3593 if (!rle) in resource_list_unreserve()
3661 rle->type, rle->rid, rle->res); in resource_list_purge()
[all …]
/f-stack/freebsd/mips/mips/
H A Dnexus.c284 struct resource_list_entry *rle; in nexus_alloc_resource() local
296 rle = NULL; in nexus_alloc_resource()
305 if (rle == NULL) in nexus_alloc_resource()
307 if (rle->res != NULL) { in nexus_alloc_resource()
310 start = rle->start; in nexus_alloc_resource()
311 end = rle->end; in nexus_alloc_resource()
312 count = rle->count; in nexus_alloc_resource()
368 if (rle == NULL) in nexus_set_resource()
383 if (!rle) in nexus_get_resource()
386 *startp = rle->start; in nexus_get_resource()
[all …]
/f-stack/freebsd/mips/atheros/
H A Dapb.c171 struct resource_list_entry *rle; in apb_alloc_resource() local
181 rle = NULL; in apb_alloc_resource()
199 if (rle == NULL) { in apb_alloc_resource()
203 if (rle->res != NULL) { in apb_alloc_resource()
206 start = rle->start; in apb_alloc_resource()
207 end = rle->end; in apb_alloc_resource()
208 count = rle->count; in apb_alloc_resource()
271 struct resource_list_entry *rle; in apb_release_resource() local
276 rle = resource_list_find(rl, type, rid); in apb_release_resource()
277 if (rle == NULL) in apb_release_resource()
[all …]
/f-stack/freebsd/mips/nlm/
H A Dxlp_simplebus.c172 struct resource_list_entry *rle; in xlp_simplebus_alloc_resource() local
182 rle = NULL; in xlp_simplebus_alloc_resource()
188 rle = resource_list_find(&di->rl, type, *rid); in xlp_simplebus_alloc_resource()
189 if (rle == NULL) in xlp_simplebus_alloc_resource()
191 if (rle->res != NULL) in xlp_simplebus_alloc_resource()
193 start = rle->start; in xlp_simplebus_alloc_resource()
194 count = ulmax(count, rle->count); in xlp_simplebus_alloc_resource()
195 end = ulmax(rle->end, start + count - 1); in xlp_simplebus_alloc_resource()
/f-stack/freebsd/x86/isa/
H A Disa.c99 struct resource_list_entry *rle; in isa_alloc_resource() local
102 rle = resource_list_find(rl, type, *rid); in isa_alloc_resource()
103 if (!rle) { in isa_alloc_resource()
/f-stack/freebsd/arm64/arm64/
H A Dgic_v3_fdt.c242 struct resource_list_entry *rle; in gic_v3_ofw_bus_alloc_res() local
252 rle = resource_list_find(&di->di_rl, type, *rid); in gic_v3_ofw_bus_alloc_res()
253 if (rle == NULL) in gic_v3_ofw_bus_alloc_res()
256 start = rle->start; in gic_v3_ofw_bus_alloc_res()
257 end = rle->end; in gic_v3_ofw_bus_alloc_res()
258 count = rle->count; in gic_v3_ofw_bus_alloc_res()
H A Dgic_v3_acpi.c422 struct resource_list_entry *rle; in gic_v3_acpi_bus_alloc_res() local
433 rle = resource_list_find(&di->di_rl, type, *rid); in gic_v3_acpi_bus_alloc_res()
434 if (rle == NULL) in gic_v3_acpi_bus_alloc_res()
437 start = rle->start; in gic_v3_acpi_bus_alloc_res()
438 end = rle->end; in gic_v3_acpi_bus_alloc_res()
439 count = rle->count; in gic_v3_acpi_bus_alloc_res()
H A Dnexus.c223 struct resource_list_entry *rle; in nexus_alloc_resource() local
236 rle = resource_list_find(&ndev->nx_resources, type, *rid); in nexus_alloc_resource()
237 if (rle == NULL) in nexus_alloc_resource()
239 start = rle->start; in nexus_alloc_resource()
240 end = rle->end; in nexus_alloc_resource()
241 count = rle->count; in nexus_alloc_resource()
/f-stack/freebsd/mips/atheros/ar531x/
H A Dapb.c275 struct resource_list_entry *rle; in apb_alloc_resource() local
285 rle = NULL; in apb_alloc_resource()
303 if (rle == NULL) { in apb_alloc_resource()
307 if (rle->res != NULL) { in apb_alloc_resource()
310 start = rle->start; in apb_alloc_resource()
311 end = rle->end; in apb_alloc_resource()
312 count = rle->count; in apb_alloc_resource()
375 struct resource_list_entry *rle; in apb_release_resource() local
380 rle = resource_list_find(rl, type, rid); in apb_release_resource()
381 if (rle == NULL) in apb_release_resource()
[all …]
/f-stack/freebsd/arm/mv/
H A Dmv_pci_ctrl.c247 struct resource_list_entry *rle; in mv_pcib_ctrl_alloc_resource() local
258 rle = resource_list_find(&di->di_rl, type, *rid); in mv_pcib_ctrl_alloc_resource()
260 if (rle == NULL) in mv_pcib_ctrl_alloc_resource()
263 start = rle->start; in mv_pcib_ctrl_alloc_resource()
264 end = rle->end; in mv_pcib_ctrl_alloc_resource()
265 count = rle->count; in mv_pcib_ctrl_alloc_resource()
H A Dmv_localbus.c336 struct resource_list_entry *rle; in localbus_alloc_resource() local
350 rle = resource_list_find(&di->di_res, type, *rid); in localbus_alloc_resource()
351 if (rle == NULL) { in localbus_alloc_resource()
356 start = rle->start; in localbus_alloc_resource()
357 end = rle->end; in localbus_alloc_resource()
358 count = rle->count; in localbus_alloc_resource()
/f-stack/freebsd/x86/x86/
H A Dnexus.c380 struct resource_list_entry *rle; in nexus_alloc_resource() local
393 rle = resource_list_find(&ndev->nx_resources, type, *rid); in nexus_alloc_resource()
394 if (rle == NULL) in nexus_alloc_resource()
396 start = rle->start; in nexus_alloc_resource()
397 end = rle->end; in nexus_alloc_resource()
398 count = rle->count; in nexus_alloc_resource()
679 struct resource_list_entry *rle; in nexus_get_resource() local
681 rle = resource_list_find(rl, type, rid); in nexus_get_resource()
682 if (!rle) in nexus_get_resource()
685 *startp = rle->start; in nexus_get_resource()
[all …]
/f-stack/freebsd/arm/arm/
H A Dgic.c436 struct resource_list_entry *rle; in arm_gic_alloc_resource() local
454 rle = resource_list_find(rl, type, *rid); in arm_gic_alloc_resource()
455 if (rle == NULL) { in arm_gic_alloc_resource()
461 start = rle->start; in arm_gic_alloc_resource()
462 end = rle->end; in arm_gic_alloc_resource()
463 count = rle->count; in arm_gic_alloc_resource()
/f-stack/freebsd/contrib/zlib/
H A DChangeLog954 - Report 0 for huffman and rle strategies and for level == 0 or 1