| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-zone.c | 85 zone->freelist = NULL; in cvmx_zone_create_from_addr() 92 *(void **)(zone->baseptr + (i*elem_size)) = zone->freelist; in cvmx_zone_create_from_addr() 93 zone->freelist = (void *)(zone->baseptr + (i*elem_size)); in cvmx_zone_create_from_addr() 116 zone->freelist = NULL; in cvmx_zone_create_from_arena() 127 *(void **)(zone->baseptr + (i*elem_size)) = zone->freelist; in cvmx_zone_create_from_arena() 128 zone->freelist = (void *)(zone->baseptr + (i*elem_size)); in cvmx_zone_create_from_arena() 146 item = (cvmx_zone_t)zone->freelist; in cvmx_zone_alloc() 149 zone->freelist = *(void **)item; in cvmx_zone_alloc() 168 *(void **)ptr = zone->freelist; in cvmx_zone_free() 169 zone->freelist = ptr; in cvmx_zone_free()
|
| H A D | cvmx-malloc.h | 149 void *freelist; member
|
| /f-stack/freebsd/vm/ |
| H A D | vm_phys.c | 530 for (freelist = 1; freelist < VM_NFREELIST; freelist++) { in vm_phys_init() 531 vm_freelist_to_flind[freelist] += in vm_phys_init() 532 vm_freelist_to_flind[freelist - 1]; in vm_phys_init() 537 for (freelist = 0; freelist < VM_NFREELIST; freelist++) in vm_phys_init() 538 vm_freelist_to_flind[freelist]--; in vm_phys_init() 741 for (freelist = 0; freelist < VM_NFREELIST; freelist++) { in vm_phys_alloc_npages() 804 int freelist; in vm_phys_alloc_pages() local 806 for (freelist = 0; freelist < VM_NFREELIST; freelist++) { in vm_phys_alloc_pages() 831 KASSERT(freelist < VM_NFREELIST, in vm_phys_alloc_freelist_pages() 833 freelist)); in vm_phys_alloc_freelist_pages() [all …]
|
| H A D | vm_phys.h | 64 vm_page_t vm_phys_alloc_freelist_pages(int domain, int freelist, int pool,
|
| H A D | vm_page.c | 2440 vm_page_alloc_freelist(int freelist, int req) in vm_page_alloc_freelist() argument 2448 m = vm_page_alloc_freelist_domain(domain, freelist, req); in vm_page_alloc_freelist() 2457 vm_page_alloc_freelist_domain(int domain, int freelist, int req) in vm_page_alloc_freelist_domain() argument 2468 m = vm_phys_alloc_freelist_pages(domain, freelist, in vm_page_alloc_freelist_domain()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_cpuset.c | 509 if (freelist != NULL) in _domainset_create() 510 LIST_INSERT_HEAD(freelist, domain, ds_link); in _domainset_create() 614 ndomain = LIST_FIRST(freelist); in domainset_shadow() 627 return _domainset_create(ndomain, freelist); in domainset_shadow() 1208 struct setlist freelist; in cpuset_setproc() local 1225 cpuset_freelist_init(&freelist, 1); in cpuset_setproc() 1246 cpuset_freelist_add(&freelist, needed - nfree); in cpuset_setproc() 1272 &freelist, &domainlist); in cpuset_setproc() 1308 &nset, &freelist, &domainlist); in cpuset_setproc() 1311 domain, &nset, &freelist, &domainlist); in cpuset_setproc() [all …]
|
| /f-stack/freebsd/netpfil/ipfw/test/ |
| H A D | main.c | 49 struct mbuf *freelist; member 130 m->m_nextpkt = c->freelist; in drop() 131 c->freelist = m; in drop() 719 if (c->freelist) { in controller() 720 m = c->tosend = c->freelist; in controller() 721 c->freelist = c->freelist->m_nextpkt; in controller()
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zpl_xattr.c | 1411 struct acl_rel_struct *freelist = NULL; in zpl_posix_acl_free() local 1430 a->next = freelist; in zpl_posix_acl_free() 1431 freelist = a; in zpl_posix_acl_free() 1442 a->next = freelist; in zpl_posix_acl_free() 1443 freelist = a; in zpl_posix_acl_free() 1460 while (freelist) { in zpl_posix_acl_free() 1461 a = freelist; in zpl_posix_acl_free() 1462 freelist = a->next; in zpl_posix_acl_free()
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lauxlib.c | 479 #define freelist 0 macro 489 lua_rawgeti(L, t, freelist); /* get first free element */ in luaL_ref() 494 lua_rawseti(L, t, freelist); /* (t[freelist] = t[ref]) */ in luaL_ref() 506 lua_rawgeti(L, t, freelist); in luaL_unref() 509 lua_rawseti(L, t, freelist); /* t[freelist] = ref */ in luaL_unref()
|
| /f-stack/freebsd/contrib/openzfs/lib/libzfs/ |
| H A D | libzfs_pool.c | 3440 boolean_t freelist = B_FALSE, memory_err = B_TRUE; in zpool_vdev_split() local 3591 freelist = B_TRUE; in zpool_vdev_split() 3609 freelist = B_FALSE; in zpool_vdev_split() 3642 freelist = B_FALSE; in zpool_vdev_split() 3656 if (freelist) { in zpool_vdev_split()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | busdma_machdep.c | 160 TAILQ_ENTRY(bus_dmamap) freelist;
|
| /f-stack/freebsd/netpfil/pf/ |
| H A D | pf.c | 1623 struct pf_ksrc_node_list freelist; in pf_purge_expired_src_nodes() local 1628 LIST_INIT(&freelist); in pf_purge_expired_src_nodes() 1634 LIST_INSERT_HEAD(&freelist, cur, entry); in pf_purge_expired_src_nodes() 1640 pf_free_src_nodes(&freelist); in pf_purge_expired_src_nodes()
|