| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | * st.c (st_foreach_check): remove the entry by replacing with never | nobu | 2012-03-30 | 1 | -8/+13 |
* | * st.c (st_update): pass pointer to key to the callback function. | nobu | 2012-03-29 | 1 | -2/+2 |
* | * st.c (st_update): add existing parameter to the callback function. | nobu | 2012-03-29 | 1 | -13/+24 |
* | * st.c: pack tables also generic keys. patched by Sokolov Yura at | nobu | 2012-03-10 | 1 | -38/+63 |
* | * st.c: add st_foreach_check for fixing iteration over packed table | nobu | 2012-03-10 | 1 | -12/+85 |
* | * st.c: fix packed num_entries on delete_safe. patched by Sokolov | nobu | 2012-03-10 | 1 | -34/+31 |
* | * st.c (unpack_entries): chain entries directly. based on a patch | nobu | 2012-03-05 | 1 | -11/+33 |
* | * st.c (unpack_entries): use union instead of casted pointer. | nobu | 2012-03-05 | 1 | -7/+13 |
* | * st.c: use PACKED_ENT and FIND_ENTRY. patched by Sokolov | nobu | 2012-03-05 | 1 | -10/+5 |
* | * st.c (unpack_entries): reallocate bins if packed array size | nobu | 2012-03-05 | 1 | -0/+5 |
* | * st.c: refactor packed entries using structs. | nobu | 2012-02-07 | 1 | -20/+36 |
* | * st.c (st_update): table can be unpacked in the callback. | nobu | 2012-02-07 | 1 | -2/+13 |
* | * st.c (st_foreach): should not yield same pair when checking | nobu | 2012-02-07 | 1 | -11/+17 |
* | * st.c (add_packed_direct): ditto. | nobu | 2012-01-17 | 1 | -2/+1 |
* | * st.c (do_hash): it's the time to remove cast to unsigned int. | nobu | 2012-01-17 | 1 | -5/+4 |
* | * st.c (unpack_entries): Fix r34310: on unpacking, the position of | naruse | 2012-01-16 | 1 | -2/+3 |
* | st optimize st_insert | shyouhei | 2012-01-15 | 1 | -10/+11 |
* | st refactor add_packed_direct a bit | shyouhei | 2012-01-15 | 1 | -13/+8 |
* | st macroses for allocation | shyouhei | 2012-01-15 | 1 | -23/+33 |
* | st macroses for packed table | shyouhei | 2012-01-15 | 1 | -43/+49 |
* | st use function instead of macro | shyouhei | 2012-01-15 | 1 | -159/+161 |
* | * st.c (st_update): new function to lookup the given key and | nobu | 2011-12-27 | 1 | -0/+56 |
* | * hash.c (identhash): share with type_numhash. | nobu | 2011-10-18 | 1 | -1/+2 |
* | * regint.h (PLATFORM_UNALIGNED_WORD_ACCESS): Power PC does not | nobu | 2011-07-14 | 1 | -1/+3 |
* | * st.c (st_foreach): check if unpacked. | nobu | 2011-01-27 | 1 | -1/+10 |
* | * st.c: parenthesize macro arguments. | akr | 2010-12-31 | 1 | -32/+32 |
* | * st.c (MurmurMagic): get rid of literal overflow. | nobu | 2010-10-12 | 1 | -3/+5 |
* | * st.c (st_foreach): don't access ptr->hash after func call. | akr | 2010-02-15 | 1 | -1/+1 |
* | * include/ruby/st.h (SIZEOF_ST_INDEX_T): moved from st.c for | nobu | 2009-11-04 | 1 | -3/+0 |
* | * st.c (unpack_entries): fixed type. | nobu | 2009-10-31 | 1 | -1/+1 |
* | * st.c (unpack_entries): save table->bins and never change the table | wanabe | 2009-10-16 | 1 | -8/+10 |
* | * st.c: moved murmur hash from string.c. [ruby-dev:39376] | nobu | 2009-09-26 | 1 | -0/+257 |
* | * st.c (COLLISION): improved collision log feature. | nobu | 2009-09-26 | 1 | -9/+50 |
* | * st.c (st_table_entry, st_get_key): use st_index_t. | nobu | 2009-09-22 | 1 | -2/+2 |
* | * st.c (st_free_table): constified. | nobu | 2009-09-09 | 1 | -1/+1 |
* | * st.c (st_init_*table_with_size): use st_index_t. | nobu | 2009-09-08 | 1 | -27/+27 |
* | * include/ruby/st.h (st_hash_func): use st_index_t. | nobu | 2009-09-08 | 1 | -9/+9 |
* | * st.c (st_delete_safe): deals with packed entries. | nobu | 2009-08-24 | 1 | -0/+28 |
* | * st.c, include/ruby/st.h (st_memsize): added. This function returns | ko1 | 2009-06-16 | 1 | -0/+11 |
* | * st.c (st_insert2): new function with processing new key, | matz | 2009-05-27 | 1 | -0/+40 |
* | * st.c: use st_index_t for indexes instead of int. | nobu | 2009-03-12 | 1 | -8/+8 |
* | * include/ruby/st.h, st.c: order entries by a linked list instead of | mame | 2009-02-08 | 1 | -20/+21 |
* | * cont.c (rb_fiber_current), dln.c (dln_print_undef, dln_undefined), | nobu | 2009-02-01 | 1 | -1/+1 |
* | * st.c (new_size): raise RuntimeError when st_table is too big. | mame | 2008-09-18 | 1 | -3/+4 |
* | * array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c, | ko1 | 2008-06-08 | 1 | -0/+1 |
* | * st.c (st_reverse_foreach): comment out unused function. | mame | 2008-06-05 | 1 | -0/+2 |
* | * error.c (builtin_types), signal.c (siglist), st.c (primes), | nobu | 2008-04-26 | 1 | -1/+1 |
* | abolish warnings by previous change. | akr | 2008-01-01 | 1 | -15/+10 |
* | * include/ruby/encoding.h (rb_isascii): defined. | akr | 2008-01-01 | 1 | -1/+55 |
* | * load.c (rb_feature_p): returns loading path name too. | nobu | 2007-12-24 | 1 | -0/+29 |