| /third_party/ulib/jemalloc/src/ |
| A D | extent_mmap.c | 7 extent_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) in extent_alloc_mmap_slow() argument 19 pages = pages_map(NULL, alloc_size, commit); in extent_alloc_mmap_slow() 24 ret = pages_trim(pages, alloc_size, leadsize, size, commit); in extent_alloc_mmap_slow() 34 bool *commit) in extent_alloc_mmap() argument 54 ret = pages_map(new_addr, size, commit); in extent_alloc_mmap() 61 return (extent_alloc_mmap_slow(size, alignment, zero, commit)); in extent_alloc_mmap()
|
| A D | pages.c | 115 pages_map(void *addr, size_t size, bool *commit) in pages_map() argument 122 *commit = true; in pages_map() 129 ret = VirtualAlloc(addr, size, MEM_RESERVE | (*commit ? MEM_COMMIT : 0), in pages_map() 139 int prot = *commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT; in pages_map() 195 bool *commit) in pages_trim() argument 205 new_addr = pages_map(ret, size, commit); in pages_trim() 228 pages_commit_impl(void *addr, size_t size, bool commit) in pages_commit_impl() argument 234 return (commit ? (addr != VirtualAlloc(addr, size, MEM_COMMIT, in pages_commit_impl() 240 int prot = commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT; in pages_commit_impl()
|
| A D | extent.c | 418 bool *commit, bool slab) in extent_recycle() argument 499 *commit = true; in extent_recycle() 597 commit)) != NULL) in extent_alloc_core() 606 commit)) != NULL) in extent_alloc_core() 625 alignment, zero, commit, slab); in extent_alloc_cache_impl() 656 commit, arena->dss_prec); in extent_alloc_default_impl() 678 alignment, zero, commit)); in extent_alloc_default() 747 *commit = true; in extent_grow_retained() 822 alignment, zero, commit, slab); in extent_alloc_retained() 855 alignment, zero, commit); in extent_alloc_wrapper_hard() [all …]
|
| A D | extent_dss.c | 98 size_t alignment, bool *zero, bool *commit) in extent_alloc_dss() argument 169 if (!*commit) in extent_alloc_dss() 170 *commit = pages_decommit(ret, size); in extent_alloc_dss() 171 if (*zero && *commit) { in extent_alloc_dss()
|
| A D | base.c | 16 bool commit = true; in base_map() local 21 addr = extent_alloc_mmap(NULL, size, PAGE, &zero, &commit); in base_map() 24 &zero, &commit, ind); in base_map()
|
| A D | arena.c | 51 bool commit = true; in arena_extent_cache_alloc_locked() local 56 pad, alignment, zero, &commit, slab)); in arena_extent_cache_alloc_locked() 284 bool commit = true; in arena_extent_alloc_large_hard() local 287 large_pad, alignment, zero, &commit, false); in arena_extent_alloc_large_hard() 650 bool zero, commit; in arena_stash_dirty() local 660 commit = false; in arena_stash_dirty() 663 &zero, &commit, false); in arena_stash_dirty() 955 bool zero, commit; in arena_slab_alloc_hard() local 958 commit = true; in arena_slab_alloc_hard() 961 bin_info->slab_size, 0, PAGE, &zero, &commit, true); in arena_slab_alloc_hard()
|
| A D | large.c | 151 bool commit = true; in large_ralloc_no_move_expand() local 154 &is_zeroed_trail, &commit, false)) == NULL) in large_ralloc_no_move_expand()
|
| /third_party/ulib/jemalloc/test/unit/ |
| A D | pages.c | 6 bool commit; in TEST_BEGIN() local 10 commit = true; in TEST_BEGIN() 11 pages = pages_map(NULL, alloc_size, &commit); in TEST_BEGIN()
|
| /third_party/ulib/jemalloc/include/jemalloc/internal/ |
| A D | pages_externs.h | 21 void *pages_map(void *addr, size_t size, bool *commit); 24 size_t size, bool *commit);
|
| A D | extent_externs.h | 28 size_t alignment, bool *zero, bool *commit, bool slab); 31 size_t alignment, bool *zero, bool *commit, bool slab); 34 size_t alignment, bool *zero, bool *commit, bool slab);
|
| A D | extent_mmap_externs.h | 7 bool *zero, bool *commit);
|
| A D | extent_dss_externs.h | 11 size_t size, size_t alignment, bool *zero, bool *commit);
|
| /third_party/ulib/jemalloc/test/include/test/ |
| A D | extent_hooks.h | 7 size_t size, size_t alignment, bool *zero, bool *commit, 76 size_t alignment, bool *zero, bool *commit, unsigned arena_ind) in extent_alloc_hook() argument 82 new_addr, size, alignment, *zero ? "true" : "false", *commit ? in extent_alloc_hook() 92 zero, commit, 0); in extent_alloc_hook() 129 assert_ptr_eq(extent_hooks->commit, extent_commit_hook, in extent_commit_hook() 134 err = default_hooks->commit(default_hooks, addr, size, offset, length, in extent_commit_hook()
|
| /third_party/ulib/linenoise/ |
| A D | README.fuchsia.md | 4 at commit c894b9e59f02203dbe4e2be657572cf88c4230c3
|
| /third_party/ulib/musl/ |
| A D | README.fuchsia.md | 1 This is a copy of [musl](http://www.musl-libc.org/) at commit
|
| /third_party/ulib/jemalloc/test/integration/ |
| A D | extent.c | 118 assert_ptr_ne(old_hooks->commit, extent_commit_hook, in TEST_BEGIN() 143 assert_ptr_eq(old_hooks->commit, default_hooks->commit, in TEST_BEGIN()
|
| /third_party/ulib/jemalloc/include/jemalloc/ |
| A D | jemalloc_typedefs.h.in | 6 * size_t alignment, bool *zero, bool *commit, unsigned arena_ind); 62 extent_commit_t *commit; member
|
| A D | jemalloc_typedefs.h | 62 extent_commit_t *commit; member
|
| A D | jemalloc.h | 336 extent_commit_t *commit; member
|
| /third_party/dev/ethernet/e1000/ |
| A D | e1000_api.c | 1145 if (hw->phy.ops.commit) in e1000_phy_commit() 1146 return hw->phy.ops.commit(hw); in e1000_phy_commit()
|
| A D | e1000_phy.c | 81 phy->ops.commit = e1000_null_ops_generic; in e1000_init_phy_ops_generic() 1176 ret_val = phy->ops.commit(hw); in e1000_copper_link_setup_m88() 1234 ret_val = phy->ops.commit(hw); in e1000_copper_link_setup_m88() 1326 ret_val = phy->ops.commit(hw); in e1000_copper_link_setup_m88_gen2() 1342 ret_val = phy->ops.commit(hw); in e1000_copper_link_setup_m88_gen2() 1847 ret_val = hw->phy.ops.commit(hw); in e1000_phy_force_speed_duplex_m88()
|
| A D | e1000_80003es2lan.c | 111 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_80003es2lan() 1031 ret_val = hw->phy.ops.commit(hw); in e1000_copper_link_setup_gg82563_80003es2lan()
|
| A D | e1000_82540.c | 79 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_82540()
|
| A D | e1000_82571.c | 134 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_82571() 149 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_82571()
|
| A D | e1000_82575.c | 186 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_82575() 782 ret_val = hw->phy.ops.commit(hw); in e1000_phy_hw_reset_sgmii_82575() 2819 ret_val = phy->ops.commit(hw); in e1000_initialize_M88E1512_phy() 2918 ret_val = phy->ops.commit(hw); in e1000_initialize_M88E1543_phy()
|