| Commit message (Expand) | Author | Age | Files | Lines |
* | g_hash_table_find(), g_hash_table_foreach(): document performance caveats | Tim Janik | 2007-06-25 | 1 | -3/+15 |
* | Add g_hash_table_get_keys() and g_hash_table_get_values(), API to retrieve | Emmanuele Bassi | 2007-04-11 | 1 | -0/+62 |
* | implemented static debugging hash-tree to validate slice adresses and | Tim Janik | 2006-12-28 | 1 | -1/+1 |
* | cache the value of the hash function in the GHashNode. this speeds up | Ryan Lortie | 2006-12-27 | 1 | -17/+34 |
* | Forgotten file | Matthias Clasen | 2006-12-18 | 1 | -1/+1 |
* | Add g_hash_table_{remove,steal}_all to remove all nodes from a hash table. | Matthias Clasen | 2006-06-01 | 1 | -12/+60 |
* | honour g_mem_gc_friendly settings when freeing slices, make sure | Tim Janik | 2006-01-25 | 1 | -6/+0 |
* | Silence compiler warnings. | Matthias Clasen | 2005-11-28 | 1 | -3/+4 |
* | Typo in comment. | Morten Welinder | 2005-11-25 | 1 | -1/+1 |
* | Documentation improvements | Matthias Clasen | 2005-11-23 | 1 | -0/+4 |
* | g_hash_table_new_full(): create hash tables with a ref count of 1. | Tim Janik | 2005-11-22 | 1 | -20/+74 |
* | prepared deprecation of GMemChunk and GAllocator. added g_slice_*() API to | Tim Janik | 2005-11-01 | 1 | -79/+5 |
* | Fix a typo in the docs. (#311569, Ross Burton) | Matthias Clasen | 2005-07-26 | 1 | -1/+1 |
* | Make PLT-reduction work with gcc4, and don't include everything in | Matthias Clasen | 2005-03-14 | 1 | -1/+4 |
* | Implement the same PLT reduction technique used in GTK+: | Matthias Clasen | 2004-09-16 | 1 | -0/+1 |
* | Point to g_hash_table_lookup_extended() for differentiation between | Matthias Clasen | 2004-08-30 | 1 | -1/+4 |
* | Documentation updates. | Matthias Clasen | 2004-02-27 | 1 | -7/+8 |
* | applied patch from #131937 with slight renames. provides | Tim Janik | 2004-02-20 | 1 | -0/+34 |
* | Patch from Sven Neumann to make the include order consistent. (#71704) | Owen Taylor | 2002-12-04 | 1 | -3/+1 |
* | Patch from Morten Welinder to make ghash.c properly obey | Owen Taylor | 2002-11-21 | 1 | -4/+29 |
* | avoid repeated call of g_spaced_primes_closest() by moving it out of the | Sven Neumann | 2002-03-20 | 1 | -3/+3 |
* | Minor markup fixes. | Matthias Clasen | 2001-12-16 | 1 | -13/+13 |
* | Documentation fixes. | Matthias Clasen | 2001-12-12 | 1 | -3/+3 |
* | Add notes about how you shouldn't modify these data structures as you | Havoc Pennington | 2001-11-29 | 1 | -3/+6 |
* | Patch from Josh Pritikin to fix reversed key and value destroy functions. | Owen Taylor | 2001-08-23 | 1 | -4/+4 |
* | Eliminate use of floating point when determining if the hash table needs | Owen Taylor | 2001-08-20 | 1 | -13/+14 |
* | fixed a typo in a comment. | Sven Neumann | 2001-05-04 | 1 | -1/+1 |
* | Remove definition of g_hash_table_freeze and g_hash_table_thaw. Instead | Sebastian Wilhelmi | 2001-04-19 | 1 | -33/+0 |
* | ghash.[ch] added new functions g_hash_table_new_full, | Sven Neumann | 2001-03-30 | 1 | -69/+373 |
* | Ok, I'm a moron. When I originally implemented ENABLE_GC_FRIENDLY, I | Sebastian Wilhelmi | 2000-12-19 | 1 | -0/+4 |
* | return whether a value got removed. | Tim Janik | 2000-12-13 | 1 | -5/+8 |
* | Introduced new function type GEqualFunc to return TRUE for equal params. | Sebastian Wilhelmi | 2000-10-30 | 1 | -6/+6 |
* | applied patch from Andreas Persenius <ndap@swipnet.se> that updates the | Tim Janik | 2000-07-26 | 1 | -4/+4 |
* | Mark the functions g_hash_table_freeze, g_hash_table_thaw and thus | Sebastian Wilhelmi | 2000-07-20 | 1 | -16/+12 |
* | Add configure test for garbage collector friendliness for GLib. If | Sebastian Wilhelmi | 2000-04-17 | 1 | -2/+19 |
* | inserted additional note to look for ChangeLog and AUTHORS file for a log | CST 1999 Shawn T. Amundson | 1999-02-24 | 1 | -0/+7 |
* | return guints instead of gints for g_hash_table_size and | Tim Janik | 1999-02-15 | 1 | -3/+3 |
* | s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added G_LOCK_EXTERN macro | Sebastian Wilhelmi | 1999-02-10 | 1 | -1/+1 |
* | - Revert previous "fix" (which really just did things a different way). - | EST 1999 Jeff Garzik | 1999-01-24 | 1 | -64/+32 |
* | - Fixed bug that overwrote nodes in hash buckets instead of adding them to | Jeff Garzik | 1999-01-24 | 1 | -50/+81 |
* | version bump to 1.1.8, binary age 0, interface age 0. | Tim Janik | 1998-12-16 | 1 | -7/+7 |
* | This commit merges the glib-threads branch into the main | Owen Taylor | 1998-12-15 | 1 | -0/+13 |
* | implemented incremental freezing facility. | Tim Janik | 1998-11-28 | 1 | -5/+5 |
* | reverted the g_hash_table_set_key_freefunc() addition, since it's to | Tim Janik | 1998-11-26 | 1 | -23/+9 |
* | added GFreeFunc and g_hash_table_set_key_freefunc() prototype. added | EST 1998 Michael K. Johnson | 1998-11-24 | 1 | -9/+23 |
* | NEWS file update for upcoming release of GLib + GModule version 1.1.3, | Tim Janik | 1998-09-21 | 1 | -114/+114 |
* | This is Josh, commiting as Manish. This is completely new, and | Manish Singh | 1998-09-20 | 1 | -0/+46 |
* | Mostly changes to GArray code. See ChangeLog. | Manish Singh | 1998-09-02 | 1 | -29/+14 |
* | Renamed g_hash_table_lookup_full to g_hash_table_lookup_extended to | Lauri Alanko | 1998-07-09 | 1 | -4/+4 |
* | Generic hash cleanup, added a function (g_hash_table_lookup_full). | Lauri Alanko | 1998-07-07 | 1 | -247/+167 |