rb_bigzero_p       95 include/ruby/intern.h int rb_bigzero_p(VALUE x);
rb_bigzero_p      643 numeric.c      	return rb_bigzero_p(num);
rb_bigzero_p      709 numeric.c      	    return BIGNUM_POSITIVE_P(num) && !rb_bigzero_p(num) ? Qtrue : Qfalse;
rb_bigzero_p     1149 random.c       	if (rb_bigzero_p(vmax)) return Qnil;
rb_bigzero_p     1224 random.c       	else if (BUILTIN_TYPE(vmax) == T_BIGNUM && BIGNUM_SIGN(vmax) && !rb_bigzero_p(vmax)) {