Lines Matching refs:CLASS_OF

146     else if (LIKELY(rb_method_basic_definition_p(CLASS_OF(x), idMULT))) {  in f_mul()
156 LIKELY(rb_method_basic_definition_p(CLASS_OF(x), idMINUS))) { in f_sub()
677 return f_complex_new2(CLASS_OF(self), in rb_complex_uminus()
704 return f_complex_new2(CLASS_OF(self), real, imag); in rb_complex_plus()
709 return f_complex_new2(CLASS_OF(self), in rb_complex_plus()
738 return f_complex_new2(CLASS_OF(self), real, imag); in rb_complex_minus()
743 return f_complex_new2(CLASS_OF(self), in rb_complex_minus()
796 return f_complex_new2(CLASS_OF(self), real, imag); in rb_complex_mul()
801 return f_complex_new2(CLASS_OF(self), in rb_complex_mul()
824 return f_complex_new2(CLASS_OF(self), in f_divide()
834 return f_complex_new2(CLASS_OF(self), in f_divide()
842 return f_complex_new2(CLASS_OF(self), x, y); in f_divide()
847 return f_complex_new2(CLASS_OF(self), in f_divide()
910 return f_complex_new_bang1(CLASS_OF(self), ONE); in rb_complex_pow()
934 return f_complex_polar(CLASS_OF(self), nr, ntheta); in rb_complex_pow()
939 return nucomp_s_new_internal(CLASS_OF(self), ONE, ZERO); in rb_complex_pow()
974 return nucomp_s_new_internal(CLASS_OF(self), zr, zi); in rb_complex_pow()
986 return f_complex_polar(CLASS_OF(self), f_expt(r, other), in rb_complex_pow()
1026 return rb_assoc_new(f_complex_new_bang1(CLASS_OF(self), other), self); in nucomp_coerce()
1142 return f_complex_new2(CLASS_OF(self), dat->real, f_negate(dat->imag)); in rb_complex_conjugate()
1198 return f_complex_new2(CLASS_OF(self), in nucomp_numerator()
1228 return f_boolcast((CLASS_OF(adat->real) == CLASS_OF(bdat->real)) && in nucomp_eql_p()
1229 (CLASS_OF(adat->imag) == CLASS_OF(bdat->imag)) && in nucomp_eql_p()
2216 rb_undef_method(CLASS_OF(rb_cComplex), "allocate"); in Init_Complex()
2218 rb_undef_method(CLASS_OF(rb_cComplex), "new"); in Init_Complex()
2303 rb_define_private_method(CLASS_OF(rb_cComplex), "convert", nucomp_s_convert, -1); in Init_Complex()