aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
Commit message (Expand)AuthorAgeFilesLines
* * bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]ocean2005-09-141-1/+1
* * array.c: moved to ANSI function style from K&R function style.ocean2005-09-121-147/+63
* * Makefile.in, configure.in (MINIOBJS): miniruby on HP-UX can not loadnobu2005-09-061-4/+4
* * parse.y (f_larglist): allow optional arguments even whenmatz2005-08-121-2/+2
* * bignum.c (rb_big_mul0): multiply two numbers (x, y) withoutmatz2005-08-101-13/+21
* * numeric.c (fix_minus, fix_mul, fix_quo, fix_div, fix_mod,matz2005-08-031-2/+2
* * bignum.c (rb_big_eq): reduce isnan(). [ruby-dev:26600]matz2005-07-251-1/+1
* * bignum.c (rb_big_neg): may be accessing bogus pointer value.matz2005-07-011-2/+4
* * eval.c (rb_eval): pre-evaluate argument for unambiguousmatz2005-06-301-22/+22
* * dir.c, eval.c, parse.y, process.c, ruby.c: avoid warning "unusedocean2005-06-281-1/+0
* * array.c (rb_ary_nitems): add the block feature to Array#nitems.matz2005-06-081-16/+0
* * bignum.c (get2comp): revert all prior changes, and calculatematz2005-06-081-14/+27
* * bignum.c (bignorm): fixed a bug in normalizing negative numbersmatz2005-06-071-2/+8
* * array.c: replace rb_protect_inspect() and rb_inspecting_p() bymatz2005-03-041-2/+4
* * struct.c (make_struct): remove redefining constant whenmatz2004-09-031-3/+5
* * bignum.c (rb_big_and): protect parameters from GC.matz2004-08-281-8/+10
* * io.c (rb_io_gets_m): set lastline ($_) even when read line ismatz2004-06-041-1/+2
* * parse.y (string_content): turn off NODE_NEWLINE flag to avoidmatz2004-05-071-0/+3
* * eval.c (top_include): include in the wrapped load is done formatz2004-04-021-4/+7
* * eval.c (rb_yield_0): should not re-submit TAG_BREAK if thismatz2004-03-151-1/+1
* * pack.c (num2i32): pack should not raise RangeError.matz2004-01-221-7/+23
* Add RDoc for Kernel global functions, tidy array and errordave2003-12-291-0/+7
* * io.c (rb_f_backquote): need not to check nil result.matz2003-12-261-3/+7
* * configure.in (ac_cv_func_setitimer): moved from defines.hnobu2003-12-221-0/+3
* Add boot_classes to rdoc parsing, fix a couple of bugsdave2003-12-191-0/+121
* Fix dependency issuedave2003-12-191-0/+129
* * marshal.c (r_object0): remove unnecessary iv restoration formatz2003-10-091-1/+6
* * bignum.c (rb_big_and): convert argument using 'to_int'.matz2003-09-121-10/+3
* * gcc -Wall clean-up.matz2003-07-241-1/+2
* * string.c: use StringValueCStr to retrieve paths to system calls.matz2003-07-201-4/+6
* * eval.c (rb_load): put rb_load_file() in a thread criticalmatz2003-07-091-2/+8
* * bignum.c (rb_quad_pack): should negate negative bignum.nobu2003-05-251-0/+1
* * bignum.c (rb_cstr_to_inum): unnecessarily long buffer was usednobu2003-04-211-1/+1
* * bignum.c (rb_cstr_to_inum, rb_big2str): allow 2-36 as radix.nobu2003-04-141-54/+66
* * bignum.c (bigdivmod): small typo.matz2003-04-091-1/+1
* * bignum.c (BIGZEROP): macro to determine if x is a bignum zero.matz2003-04-091-6/+7
* * variable.c (rb_obj_classname): new function.matz2003-01-311-1/+1
* * lib/rational.rb: modified to support "quo".matz2003-01-231-1/+27
* * bignum.c (rb_cstr_to_inum): should not erase all 0s, butnobu2003-01-181-2/+4
* -Wall cleanups (removed unused vars, no 'code has no effect' warnings)michal2003-01-161-5/+3
* Updated Copyrights of Matz to 2003.michal2003-01-161-1/+1
* * parse.y (list_append): avoid O(n) search using node->nd_next->nd_end.matz2003-01-141-0/+1
* * numeric.c (num_step): use DBL_EPSILON.matz2002-12-191-2/+1
* * array.c (rb_ary_zip): iterates over items in the receiver.matz2002-11-191-5/+3
* * object.c (rb_str_to_dbl): RString ptr might be NULL.matz2002-10-171-10/+16
* * bignum.c (bigdivrem): bignum zero's len should not be 0.matz2002-10-071-2/+2
* * bignum.c (bigdivmod): wrong condition check for Bignum zero.matz2002-10-071-1/+2
* * bignum.c (rb_big_rshift): num should be initialized by carrymatz2002-10-041-1/+5
* *.c: Int vs Long cleanupmichal2002-08-211-27/+22
* * array.c (sort_2): *a - *b may overflow.matz2002-08-191-10/+4