Lines Matching refs:real_type
95 order=None, integer=False, complex=False, real_type=None): argument
107 self.real_type = real_type
111 self.real_type = self
147 real_type = Type(name, suffix=suffix, mant_dig=mant_dig,
155 real_type=real_type)
158 real_type.complex_type = complex_type
159 real_type.register_type(internal)
179 return self.real_type.floating_type(floatn)
454 for order, real_type in sorted(Type.real_types_order.items()):
455 if real_type.name == ret:
456 nret_type = real_type
457 elif nret_type and real_type.name.startswith('_Float'):
458 narrow_args.append(real_type)
460 and ret.endswith('x') == real_type.name.endswith('x')):
461 narrow_fallback = real_type
495 ret_name = t.real_type.name
507 arg_name = t.real_type.name
520 t.real_type.suffix, ', '.join(arg_list),
521 t.real_type.mant_dig, dummy_func_name))
557 narrow_mant_dig = comb_type.real_type.mant_dig
581 mant_dig = comb_type.real_type.mant_dig
601 ret_type = comb_type.real_type.name