Home
last modified time | relevance | path

Searched refs:nondec2awknum (Results 1 – 14 of 14) sorted by relevance

/dports/japanese/gawk/gawk-3.0.6/
H A Dnode.c88 n->numbr = nondec2awknum(cp, cpend - cp);
H A Dbuiltin.c2293 d = nondec2awknum(tmp->stptr, tmp->stlen);
2312 nondec2awknum(str, len) in nondec2awknum() function
H A Dawk.h809 extern AWKNUM nondec2awknum P((char *str, size_t len));
H A DChangeLog580 builtin.c (nondec2awknum): add bailout for decimal numbers, e.g.
591 * builtin.c (nondec2awknum): Allow `f' and `F' in hexadecimal numbers.
776 (nondec2awknum): new function to convert octal or hex to double.
H A Dawk.y1801 yylval.nodeval = make_number(nondec2awknum(tokstart, strlen(tokstart))); in yylex()
H A Dawktab.c3271 yylval.nodeval = make_number(nondec2awknum(tokstart, strlen(tokstart))); in yylex()
/dports/lang/gawk/gawk-5.1.1/
H A Dnode.c135 n->numbr = nondec2awknum(cp, cpend - cp, &ptr); in r_force_number()
H A Dbuiltin.c3654 d = nondec2awknum(tmp->stptr, tmp->stlen, NULL); in do_strtonum()
3671 nondec2awknum(char *str, size_t len, char **endptr) in nondec2awknum() function
H A Dawk.h1506 extern AWKNUM nondec2awknum(char *str, size_t len, char **endptr);
H A DChangeLog.12280 error in length passed to nondec2awknum: should be strlen(tokstart)-1
2283 (nondec2awknum): Check string length before accessing characters.
3055 (nondec2awknum): Remove comment about unnecessary termination.
3114 (nondec2awknum): Add a comment about termination.
3324 (nondec2awknum): Restore saving/restoring of byte after string value
3363 * builtin.c (nondec2awknum): Actually set a '\0' before
3396 (nondec2awknum): Add endptr argument.
3400 * awkgram.y (yylex): Pass NULL endptr argument to nondec2awknum.
3421 arg to nondec2awknum.
3422 (nondec2awknum): Add endptr argument so caller can detect how much
[all …]
H A DChangeLog214 * builtin.c (nondec2awknum): Use a copy of len, in case we detect
H A DChangeLog.0624 * builtin.c (sub_common, nondec2awknum): Ditto.
6748 * builtin.c (nondec2awknum): Change assert to runtime check
7808 * builtin.c (nondec2awknum): Fix octal conversions to exit
7834 nondec2awknum.
8256 * builtin.c (nondec2awknum): Change to use of IS* vs. is* macros,
9044 * builtin.c (nondec2awknum): Add bailout for decimal numbers, e.g.
9055 * builtin.c (nondec2awknum): Allow `f' and `F' in hexadecimal numbers.
9240 (nondec2awknum): New function to convert octal or hex to double.
H A Dawkgram.y4253 d = nondec2awknum(tokstart, strlen(tokstart)-1, NULL); in yylex_ebcdic()
H A Dawkgram.c6761 d = nondec2awknum(tokstart, strlen(tokstart)-1, NULL); in yylex_ebcdic()