Home
last modified time | relevance | path

Searched refs:entry_pool (Results 1 – 25 of 40) sorted by relevance

12

/dports/devel/dbus/dbus-1.12.20/dbus/
H A Ddbus-hash.c206 DBusMemPool *entry_pool; /**< Memory pool for hash entries */ member
290 DBusMemPool *entry_pool; in _dbus_hash_table_new() local
296 entry_pool = _dbus_mem_pool_new (sizeof (DBusHashEntry), TRUE); in _dbus_hash_table_new()
297 if (entry_pool == NULL) in _dbus_hash_table_new()
304 table->entry_pool = entry_pool; in _dbus_hash_table_new()
401 _dbus_mem_pool_free (table->entry_pool); in _dbus_hash_table_unref()
433 entry = _dbus_mem_pool_alloc (table->entry_pool); in alloc_entry()
453 _dbus_mem_pool_dealloc (table->entry_pool, entry); in free_entry()
1359 _dbus_mem_pool_dealloc (table->entry_pool, entry); in _dbus_hash_table_free_preallocated_entry()
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dmain.c222 entry = BLI_mempool_alloc(rel->entry_pool); in main_relations_create_idlink_cb()
233 entry = BLI_mempool_alloc(rel->entry_pool); in main_relations_create_idlink_cb()
260 bmain->relations->entry_pool = BLI_mempool_create( in BKE_main_relations_create()
284 BLI_mempool_destroy(bmain->relations->entry_pool); in BKE_main_relations_free()
/dports/java/jikes/jikes-1.22/src/
H A Dlookup.cpp219 : entry_pool(estimate), in DirectoryTable()
229 for (unsigned i = 0; i < entry_pool.Length(); i++) in ~DirectoryTable()
230 delete entry_pool[i]; in ~DirectoryTable()
259 for (unsigned i = 0; i < entry_pool.Length(); i++) in Rehash()
261 DirectoryEntry* e = entry_pool[i]; in Rehash()
284 entry_pool.Next() = entry; in InsertEntry()
296 if (entry_pool.Length() > (hash_size << 1) && hash_size < MAX_HASH_SIZE) in InsertEntry()
338 entry_pool.Next() = folded_entry; in InsertCaseInsensitiveEntry()
350 if (entry_pool.Length() > (hash_size << 1) && in InsertCaseInsensitiveEntry()
/dports/x11/mate-menus/mate-menus-1.26.0/libmenu/
H A Dmatemenu-tree.c3257 get_by_category (DesktopEntrySet *entry_pool, in get_by_category() argument
3266 desktop_entry_set_foreach (entry_pool, in get_by_category()
3272 get_by_desktop (DesktopEntrySet *entry_pool, in get_by_desktop() argument
3281 desktop_entry_set_foreach (entry_pool, in get_by_desktop()
3288 DesktopEntrySet *entry_pool) in process_include_rules() argument
3403 desktop_entry_set_union (set, entry_pool); in process_include_rules()
3562 DesktopEntrySet *entry_pool; in process_layout() local
3755 desktop_entry_set_unref (entry_pool); in process_layout()
4927 DesktopEntrySet *entry_pool; in matemenu_tree_build_from_layout() local
4939 desktop_entry_set_foreach (entry_pool, in matemenu_tree_build_from_layout()
[all …]
/dports/x11/cinnamon-menus/cinnamon-menus-4.8.2/libmenu/
H A Dgmenu-tree.c2903 get_by_category (DesktopEntrySet *entry_pool, in get_by_category() argument
2912 desktop_entry_set_foreach (entry_pool, in get_by_category()
2919 DesktopEntrySet *entry_pool) in process_include_rules() argument
3022 desktop_entry_set_union (inverted, entry_pool); in process_include_rules()
3034 desktop_entry_set_union (set, entry_pool); in process_include_rules()
3045 entry = desktop_entry_set_lookup (entry_pool, in process_include_rules()
3193 DesktopEntrySet *entry_pool; in process_layout() local
3386 desktop_entry_set_unref (entry_pool); in process_layout()
4549 DesktopEntrySet *entry_pool; in gmenu_tree_build_from_layout() local
4561 desktop_entry_set_foreach (entry_pool, in gmenu_tree_build_from_layout()
[all …]
/dports/x11/gnome-menus/gnome-menus-3.36.0/libmenu/
H A Dgmenu-tree.c2874 get_by_category (DesktopEntrySet *entry_pool, in get_by_category() argument
2883 desktop_entry_set_foreach (entry_pool, in get_by_category()
2890 DesktopEntrySet *entry_pool) in process_include_rules() argument
2993 desktop_entry_set_union (inverted, entry_pool); in process_include_rules()
3005 desktop_entry_set_union (set, entry_pool); in process_include_rules()
3016 entry = desktop_entry_set_lookup (entry_pool, in process_include_rules()
3164 DesktopEntrySet *entry_pool; in process_layout() local
3357 desktop_entry_set_unref (entry_pool); in process_layout()
4520 DesktopEntrySet *entry_pool; in gmenu_tree_build_from_layout() local
4532 desktop_entry_set_foreach (entry_pool, in gmenu_tree_build_from_layout()
[all …]
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/cargo-crates/libgit2-sys-0.7.11/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
574 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_init()
641 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
897 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
907 git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry)); in tree_iterator_init()
1023 git_pool entry_pool; member
1284 (entry = git_pool_malloc(&frame->entry_pool, entry_size)) == NULL) in filesystem_iterator_entry_init()
1350 git_pool_init(&new_frame->entry_pool, 1); in filesystem_iterator_frame_push()
1452 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/git-absorb/git-absorb-0.6.6/cargo-crates/libgit2-sys-0.12.13+1.0.1/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
890 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
900 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1016 git_pool entry_pool; member
1306 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1378 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1481 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/R-cran-git2r/git2r/src/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
890 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
900 git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry)); in tree_iterator_init()
1017 git_pool entry_pool; member
1307 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1379 git_pool_init(&new_frame->entry_pool, 1); in filesystem_iterator_frame_push()
1481 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/libgit2-sys-0.12.7+1.0.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
890 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
900 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1016 git_pool entry_pool; member
1306 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1378 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1481 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/libgit2-sys-0.12.19+1.1.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1310 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1382 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1485 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/tokei/tokei-12.1.2/cargo-crates/libgit2-sys-0.12.17+1.1.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1310 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1382 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1485 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/gbump/gbump-1.0.1/cargo-crates/libgit2-sys-0.9.1/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
566 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_init()
633 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
889 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
899 git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry)); in tree_iterator_init()
1016 git_pool entry_pool; member
1306 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1378 git_pool_init(&new_frame->entry_pool, 1); in filesystem_iterator_frame_push()
1480 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/gitui/gitui-0.10.1/cargo-crates/libgit2-sys-0.12.12+1.0.1/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
890 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
900 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1016 git_pool entry_pool; member
1306 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1378 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1481 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/sysutils/exa/exa-0.10.1/cargo-crates/libgit2-sys-0.12.18+1.1.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1310 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1382 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1485 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/net/mpich/mpich-3.4.3/modules/libfabric/prov/util/src/
H A Dutil_mr_cache.c80 entry = ofi_buf_alloc(cache->entry_pool); in util_mr_entry_alloc()
429 ofi_bufpool_destroy(cache->entry_pool); in ofi_mr_cache_cleanup()
554 ret = ofi_bufpool_create(&cache->entry_pool, in ofi_mr_cache_init()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/libgit2-sys-0.12.26+1.3.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/misc/broot/broot-1.7.0/cargo-crates/libgit2-sys-0.12.21+1.1.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/git-delta/delta-0.9.2/cargo-crates/libgit2-sys-0.12.24+1.3.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/libgit2-sys-0.12.23+1.2.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/libgit2-sys-0.12.22+1.1.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/libgit2-sys-0.12.21+1.1.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/libgit2-sys-0.12.24+1.3.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/libgit2-sys-0.12.24+1.3.0/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()
/dports/lang/rust/rustc-1.58.1-src/vendor/libgit2-sys/libgit2/src/
H A Diterator.c456 git_pool entry_pool; member
564 if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) { in tree_iterator_frame_init()
634 new_entry = git_pool_malloc(&iter->entry_pool, 1); in tree_iterator_frame_push_neighbors()
894 git_pool_clear(&iter->entry_pool); in tree_iterator_clear()
904 if ((error = git_pool_init(&iter->entry_pool, sizeof(tree_iterator_entry))) < 0 || in tree_iterator_init()
1020 git_pool entry_pool; member
1311 entry = git_pool_malloc(&frame->entry_pool, entry_size); in filesystem_iterator_entry_init()
1384 if ((error = git_pool_init(&new_frame->entry_pool, 1)) < 0) in filesystem_iterator_frame_push()
1488 git_pool_clear(&frame->entry_pool); in filesystem_iterator_frame_pop()

12