| Commit message (Expand) | Author | Age | Files | Lines |
* | * 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 |
* | * common.mk (ruby.imp): fix for circular dependency. a patch from | nobu | 2007-12-14 | 1 | -6/+6 |
* | * encoding.c (rb_enc_alias, rb_enc_find_index): changed | nobu | 2007-10-16 | 1 | -1/+1 |
* | * encoding.c (rb_enc_alias): allow encodings multiple aliases. | nobu | 2007-09-28 | 1 | -0/+37 |
* | * st.c (hash_32a.c): reverted the original keywords. | nobu | 2007-09-20 | 1 | -3/+3 |
* | * st.c (st_numcmp, st_numhash): use st_data_t instead of long, because | nobu | 2007-09-01 | 1 | -3/+3 |
* | * include/ruby/st.h (struct st_table): add entries_packed 1-bit | akr | 2007-08-29 | 1 | -0/+154 |
* | * st.c (st_clear): reset num_entries too. | nobu | 2007-08-21 | 1 | -0/+1 |
* | * st.c (rehash): suppress warnings. | nobu | 2007-08-21 | 1 | -2/+2 |
* | * st.c (struct st_table_entry): add new members, fore and back, to | nobu | 2007-08-21 | 1 | -93/+164 |
* | * include/ruby/st.h, st.c (st_init_table, st_init_table_with_size): | nobu | 2007-07-05 | 1 | -4/+4 |
* | * include/ruby: moved public headers. | nobu | 2007-06-10 | 1 | -4/+5 |
* | * Merge YARV | ko1 | 2006-12-31 | 1 | -1/+1 |
* | * hash.c (rb_hash_identical): a new method to make a hash to | matz | 2006-09-11 | 1 | -8/+6 |
* | * st.c: still need to include config.h on some platforms. | usa | 2006-07-17 | 1 | -0/+1 |
* | * st.c (malloc): use xmalloc/xcalloc instead of plain | matz | 2006-07-14 | 1 | -1/+6 |
* | * bignum.c: ruby 1.9 HEAD 64 bit warnings clean up from | matz | 2006-07-03 | 1 | -2/+2 |
* | * sprintf.c (rb_str_format): allow %c to print one character | matz | 2006-06-09 | 1 | -30/+85 |
* | * st.c: uses malloc instead of xmalloc to avoid GC. syck uses st_insert | ocean | 2005-12-19 | 1 | -24/+12 |
* | * gc.c (ruby_xmalloc2): change check for integer overflow. | matz | 2005-12-06 | 1 | -4/+4 |
* | * bin/erb (ERB::Main::run): typo fixed. [ruby-core:06337] | matz | 2005-10-21 | 1 | -14/+12 |
* | * class.c, eval.c, hash.c, st.c, variable.c: changed /* ??? */ stuff | ocean | 2005-10-20 | 1 | -1/+1 |
* | * array.c: moved to ANSI function style from K&R function style. | ocean | 2005-09-12 | 1 | -53/+19 |
* | * array.c: replace rb_protect_inspect() and rb_inspecting_p() by | matz | 2005-03-04 | 1 | -133/+5 |
* | * st.c, st.h: imported additional file changes on Oniguruma 3.7.0. | ksaito | 2005-02-23 | 1 | -6/+6 |
* | * oniggnu.h, oniguruma.h, regcomp.c, st.c: imported Oni Guruma 3.6.0. | ksaito | 2005-02-13 | 1 | -0/+1 |
* | * ascii.c, euc_jp.c, hash.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, reg... | ksaito | 2005-01-28 | 1 | -12/+145 |
* | * hash.c (rb_hash_rehash): replace st_foreach() by its deep | matz | 2004-09-23 | 1 | -1/+0 |
* | * hash.c (rb_hash_rehash): add iteration check. [ruby-dev:24301] | matz | 2004-09-22 | 1 | -1/+15 |