Searched refs:typed_val_float (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.0-release/contrib/gdb/gdb/
H A Dc-exp.y135 } typed_val_float;
167 %token <typed_val_float> FLOAT
1082 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
1083 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval,&c);
1084 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
1085 num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval,&c);
1089 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
1096 putithere->typed_val_float.dval = temp;
1107 putithere->typed_val_float.type = builtin_type_float;
1109 putithere->typed_val_float
[all...]
H A Dobjc-exp.y135 } typed_val_float;
169 %token <typed_val_float> FLOAT
1029 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
1030 sscanf (p, "%g", (float *)&putithere->typed_val_float.dval);
1031 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
1032 sscanf (p, "%lg", (double *)&putithere->typed_val_float.dval);
1036 sscanf (p, "%Lg", &putithere->typed_val_float.dval);
1043 putithere->typed_val_float.dval = temp;
1052 putithere->typed_val_float.type = builtin_type_float;
1054 putithere->typed_val_float
[all...]
H A Dp-exp.y139 } typed_val_float;
174 %token <typed_val_float> FLOAT
802 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
803 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval,&c);
804 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
805 num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval,&c);
809 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
816 putithere->typed_val_float.dval = temp;
827 putithere->typed_val_float.type = builtin_type_float;
829 putithere->typed_val_float
[all...]
H A Djv-exp.y136 } typed_val_float;
158 %token <typed_val_float> FLOATING_POINT_LITERAL
707 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
708 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
709 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
710 num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval, &c);
714 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
721 putithere->typed_val_float.dval = temp;
732 putithere->typed_val_float.type = builtin_type_float;
734 putithere->typed_val_float
[all...]
H A Djv-exp.c232 } typed_val_float; member in union:YYSTYPE
1431 write_exp_elt_type (yyvsp[0].typed_val_float.type);
1432 write_exp_elt_dblcst (yyvsp[0].typed_val_float.dval);
2081 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2082 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
2083 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
2084 num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval, &c);
2088 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
2095 putithere->typed_val_float.dval = temp;
2106 putithere->typed_val_float
[all...]
H A Dc-exp.c252 } typed_val_float; member in union:YYSTYPE
1816 write_exp_elt_type (yyvsp[0].typed_val_float.type);
1817 write_exp_elt_dblcst (yyvsp[0].typed_val_float.dval);
2715 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2716 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval,&c);
2717 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
2718 num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval,&c);
2722 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
2729 putithere->typed_val_float.dval = temp;
2740 putithere->typed_val_float
[all...]
H A Dobjc-exp.c254 } typed_val_float; member in union:YYSTYPE
1875 write_exp_elt_type (yyvsp[0].typed_val_float.type);
1876 write_exp_elt_dblcst (yyvsp[0].typed_val_float.dval);
2674 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2675 sscanf (p, "%g", (float *)&putithere->typed_val_float.dval);
2676 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
2677 sscanf (p, "%lg", (double *)&putithere->typed_val_float.dval);
2681 sscanf (p, "%Lg", &putithere->typed_val_float.dval);
2688 putithere->typed_val_float.dval = temp;
2697 putithere->typed_val_float
[all...]
H A Dp-exp.c235 } typed_val_float; member in union:YYSTYPE
1585 write_exp_elt_type (yyvsp[0].typed_val_float.type);
1586 write_exp_elt_dblcst (yyvsp[0].typed_val_float.dval);
2127 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2128 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval,&c);
2129 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
2130 num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval,&c);
2134 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
2141 putithere->typed_val_float.dval = temp;
2152 putithere->typed_val_float
[all...]
H A Dada-exp.y146 } typed_val_float;
160 %token <typed_val_float> FLOAT
H A Dada-exp.c278 } typed_val_float; member in union:YYSTYPE
1956 write_exp_elt_type (yyvsp[0].typed_val_float.type);
1957 write_exp_elt_dblcst (yyvsp[0].typed_val_float.dval);

Completed in 206 milliseconds