Home
last modified time | relevance | path

Searched refs:putithere (Results 1 – 25 of 53) sorted by relevance

123

/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/gdb/
H A Dp-exp.y766 parse_number (p, len, parsed_float, putithere) in parse_number() argument
770 YYSTYPE *putithere;
801 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
808 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
815 putithere->typed_val_float.dval = temp;
826 putithere->typed_val_float.type = builtin_type_float;
828 putithere->typed_val_float.type = builtin_type_long_double;
830 putithere->typed_val_float.type = builtin_type_double;
969 putithere->typed_val_int.val = n;
976 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Djv-exp.y684 parse_number (p, len, parsed_float, putithere) in parse_number() argument
688 YYSTYPE *putithere;
706 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
707 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
708 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
713 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
720 putithere->typed_val_float.dval = temp;
731 putithere->typed_val_float.type = builtin_type_float;
733 putithere->typed_val_float.type = builtin_type_double;
813 putithere->typed_val_int.val = n;
[all …]
H A Dc-exp.y1043 parse_number (p, len, parsed_float, putithere) in parse_number() argument
1047 YYSTYPE *putithere;
1078 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
1085 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
1092 putithere->typed_val_float.dval = temp;
1103 putithere->typed_val_float.type = builtin_type_float;
1105 putithere->typed_val_float.type = builtin_type_long_double;
1107 putithere->typed_val_float.type = builtin_type_double;
1246 putithere->typed_val_int.val = n;
1253 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Dobjc-exp.y994 parse_number (p, len, parsed_float, putithere) in parse_number() argument
998 YYSTYPE *putithere;
1029 sscanf (p, "%g", (float *)&putithere->typed_val_float.dval);
1035 sscanf (p, "%Lg", &putithere->typed_val_float.dval);
1042 putithere->typed_val_float.dval = temp;
1051 putithere->typed_val_float.type = builtin_type_float;
1053 putithere->typed_val_float.type = builtin_type_long_double;
1055 putithere->typed_val_float.type = builtin_type_double;
1195 putithere->typed_val_int.val = n;
1202 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Dp-exp.c2087 parse_number (p, len, parsed_float, putithere)
2091 YYSTYPE *putithere;
2122 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2129 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
2136 putithere->typed_val_float.dval = temp;
2147 putithere->typed_val_float.type = builtin_type_float;
2149 putithere->typed_val_float.type = builtin_type_long_double;
2151 putithere->typed_val_float.type = builtin_type_double;
2290 putithere->typed_val_int.val = n;
2297 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Djv-exp.c2054 parse_number (p, len, parsed_float, putithere) in parse_number() argument
2058 YYSTYPE *putithere;
2076 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2077 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
2078 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
2083 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
2090 putithere->typed_val_float.dval = temp;
2101 putithere->typed_val_float.type = builtin_type_float;
2103 putithere->typed_val_float.type = builtin_type_double;
2183 putithere->typed_val_int.val = n;
[all …]
H A Dc-exp.c2672 parse_number (p, len, parsed_float, putithere) in parse_number() argument
2676 YYSTYPE *putithere;
2707 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2714 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
2721 putithere->typed_val_float.dval = temp;
2732 putithere->typed_val_float.type = builtin_type_float;
2734 putithere->typed_val_float.type = builtin_type_long_double;
2736 putithere->typed_val_float.type = builtin_type_double;
2875 putithere->typed_val_int.val = n;
2882 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Dobjc-exp.c2635 parse_number (p, len, parsed_float, putithere) in parse_number() argument
2639 YYSTYPE *putithere;
2670 sscanf (p, "%g", (float *)&putithere->typed_val_float.dval);
2676 sscanf (p, "%Lg", &putithere->typed_val_float.dval);
2683 putithere->typed_val_float.dval = temp;
2692 putithere->typed_val_float.type = builtin_type_float;
2694 putithere->typed_val_float.type = builtin_type_long_double;
2696 putithere->typed_val_float.type = builtin_type_double;
2836 putithere->typed_val_int.val = n;
2843 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Df-exp.y643 parse_number (p, len, parsed_float, putithere) in parse_number() argument
647 YYSTYPE *putithere;
669 putithere->dval = atof (tmp);
768 putithere->typed_val.val = n;
774 putithere->typed_val.type = unsigned_type;
776 putithere->typed_val.type = signed_type;
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/gdb/
H A Dp-exp.y766 parse_number (p, len, parsed_float, putithere) in parse_number() argument
770 YYSTYPE *putithere;
801 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
808 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
815 putithere->typed_val_float.dval = temp;
826 putithere->typed_val_float.type = builtin_type_float;
828 putithere->typed_val_float.type = builtin_type_long_double;
830 putithere->typed_val_float.type = builtin_type_double;
969 putithere->typed_val_int.val = n;
976 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Djv-exp.y684 parse_number (p, len, parsed_float, putithere) in parse_number() argument
688 YYSTYPE *putithere;
706 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
707 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
708 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
713 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
720 putithere->typed_val_float.dval = temp;
731 putithere->typed_val_float.type = builtin_type_float;
733 putithere->typed_val_float.type = builtin_type_double;
813 putithere->typed_val_int.val = n;
[all …]
H A Dobjc-exp.y994 parse_number (p, len, parsed_float, putithere) in parse_number() argument
998 YYSTYPE *putithere;
1029 sscanf (p, "%g", (float *)&putithere->typed_val_float.dval);
1035 sscanf (p, "%Lg", &putithere->typed_val_float.dval);
1042 putithere->typed_val_float.dval = temp;
1051 putithere->typed_val_float.type = builtin_type_float;
1053 putithere->typed_val_float.type = builtin_type_long_double;
1055 putithere->typed_val_float.type = builtin_type_double;
1195 putithere->typed_val_int.val = n;
1202 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Dc-exp.y1043 parse_number (p, len, parsed_float, putithere) in parse_number() argument
1047 YYSTYPE *putithere;
1078 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
1085 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
1092 putithere->typed_val_float.dval = temp;
1103 putithere->typed_val_float.type = builtin_type_float;
1105 putithere->typed_val_float.type = builtin_type_long_double;
1107 putithere->typed_val_float.type = builtin_type_double;
1246 putithere->typed_val_int.val = n;
1253 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Dp-exp.c2087 parse_number (p, len, parsed_float, putithere) in parse_number() argument
2091 YYSTYPE *putithere;
2122 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2129 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
2136 putithere->typed_val_float.dval = temp;
2147 putithere->typed_val_float.type = builtin_type_float;
2149 putithere->typed_val_float.type = builtin_type_long_double;
2151 putithere->typed_val_float.type = builtin_type_double;
2290 putithere->typed_val_int.val = n;
2297 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Djv-exp.c2054 parse_number (p, len, parsed_float, putithere) in parse_number() argument
2058 YYSTYPE *putithere;
2076 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2077 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
2078 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
2083 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
2090 putithere->typed_val_float.dval = temp;
2101 putithere->typed_val_float.type = builtin_type_float;
2103 putithere->typed_val_float.type = builtin_type_double;
2183 putithere->typed_val_int.val = n;
[all …]
H A Dc-exp.c2672 parse_number (p, len, parsed_float, putithere) in parse_number() argument
2676 YYSTYPE *putithere;
2707 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
2714 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
2721 putithere->typed_val_float.dval = temp;
2732 putithere->typed_val_float.type = builtin_type_float;
2734 putithere->typed_val_float.type = builtin_type_long_double;
2736 putithere->typed_val_float.type = builtin_type_double;
2875 putithere->typed_val_int.val = n;
2882 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Dobjc-exp.c2635 parse_number (p, len, parsed_float, putithere) in parse_number() argument
2639 YYSTYPE *putithere;
2670 sscanf (p, "%g", (float *)&putithere->typed_val_float.dval);
2676 sscanf (p, "%Lg", &putithere->typed_val_float.dval);
2683 putithere->typed_val_float.dval = temp;
2692 putithere->typed_val_float.type = builtin_type_float;
2694 putithere->typed_val_float.type = builtin_type_long_double;
2696 putithere->typed_val_float.type = builtin_type_double;
2836 putithere->typed_val_int.val = n;
2843 putithere->typed_val_int.type = unsigned_type;
[all …]
H A Df-exp.y643 parse_number (p, len, parsed_float, putithere) in parse_number() argument
647 YYSTYPE *putithere;
669 putithere->dval = atof (tmp);
768 putithere->typed_val.val = n;
774 putithere->typed_val.type = unsigned_type;
776 putithere->typed_val.type = signed_type;
/dports/audio/csound/csound-6.15.0/util/SDIF/
H A Dsdif-mem.h105 SDIFmem_Frame *putithere);
112 SDIFresult SDIFmem_ReadFrame(FILE *f, SDIFmem_Frame *putithere);
H A Dsdif-mem.c149 SDIFmem_Frame *putithere) in SDIFmem_ReadFrameContents() argument
212 *putithere = result; in SDIFmem_ReadFrameContents()
216 SDIFresult SDIFmem_ReadFrame(FILE *f, SDIFmem_Frame *putithere) in SDIFmem_ReadFrame() argument
225 return SDIFmem_ReadFrameContents(&fh, f, putithere); in SDIFmem_ReadFrame()
/dports/devel/gdb/gdb-11.1/gdb/
H A Dd-exp.y693 putithere->typed_val_float.type in parse_number()
699 putithere->typed_val_float.type in parse_number()
705 putithere->typed_val_float.type in parse_number()
713 putithere->typed_val_float.type in parse_number()
719 putithere->typed_val_float.type in parse_number()
726 putithere->typed_val_float.type in parse_number()
731 putithere->typed_val_float.type, in parse_number()
732 putithere->typed_val_float.val)) in parse_number()
847 putithere->typed_val_int.val = n; in parse_number()
852 putithere->typed_val_int.type = unsigned_type; in parse_number()
[all …]
H A Dgo-exp.y648 const char *p, int len, int parsed_float, YYSTYPE *putithere)
680 putithere->typed_val_float.type
686 putithere->typed_val_float.type
693 putithere->typed_val_float.type
698 putithere->typed_val_float.type,
699 putithere->typed_val_float.val))
849 putithere->typed_val_int.val = n;
856 putithere->typed_val_int.type = unsigned_type;
860 putithere->typed_val_int.type = signed_type;
H A Dp-exp.y803 const char *p, int len, int parsed_float, YYSTYPE *putithere)
832 putithere->typed_val_float.type
838 putithere->typed_val_float.type
845 putithere->typed_val_float.type
850 putithere->typed_val_float.type,
851 putithere->typed_val_float.val))
991 putithere->typed_val_int.val = n;
998 putithere->typed_val_int.type = unsigned_type;
1002 putithere->typed_val_int.type = signed_type;
/dports/devel/avr-gdb/gdb-7.3.1/gdb/
H A Dc-exp.y1403 putithere->typed_val_decfloat.type in parse_number()
1405 decimal_from_string (putithere->typed_val_decfloat.val, 4, in parse_number()
1414 putithere->typed_val_decfloat.type in parse_number()
1416 decimal_from_string (putithere->typed_val_decfloat.val, 8, in parse_number()
1425 putithere->typed_val_decfloat.type in parse_number()
1427 decimal_from_string (putithere->typed_val_decfloat.val, 16, in parse_number()
1434 &putithere->typed_val_float.dval, in parse_number()
1435 &putithere->typed_val_float.type)) in parse_number()
1583 putithere->typed_val_int.val = n; in parse_number()
1590 putithere->typed_val_int.type = unsigned_type; in parse_number()
[all …]
H A Djv-exp.y694 parse_number (char *p, int len, int parsed_float, YYSTYPE *putithere)
709 if (! parse_float (p, len, &putithere->typed_val_float.dval, &suffix))
715 putithere->typed_val_float.type = parse_type->builtin_double;
720 putithere->typed_val_float.type =
723 putithere->typed_val_float.type =
807 putithere->typed_val_int.val = n;
808 putithere->typed_val_int.type = type;

123