index
:
busybox.git
1_33_stable
1_35_stable
master
Copy of git.busybox.net/busybox
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
shell
/
math.c
Age
Commit message (
Expand
)
Author
2023-06-15
shell/math: simplify handling of unary plus
Denys Vlasenko
2023-06-15
shell/math: explain the logic, small tweak to make code smaller
Denys Vlasenko
2023-06-15
shell/math: fix order of expansion of variables to numbers
Denys Vlasenko
2023-06-15
shell/math: remove special code to handle a?b?c:d:e, it works without it now
Denys Vlasenko
2023-06-15
shell/math: fix parsing of ?: and explain why it's parsed that way
Denys Vlasenko
2023-06-15
shell/math: simpler insertion of "fake" last RPAREN
Denys Vlasenko
2023-06-14
shell/math: trivial code shrink
Denys Vlasenko
2023-06-14
shell/math: fix the order of variable resolution in binops
Denys Vlasenko
2023-06-14
shell/math: remove now-unused second_val
Denys Vlasenko
2023-06-14
shell/math: fix nested ?: and do not parse variables in not-taken branch
Denys Vlasenko
2023-06-14
shell/math: remove a redundant check
Denys Vlasenko
2023-06-14
shell/math: document ternary ?: op's weirdness, add code comments
Denys Vlasenko
2023-06-13
shell/math: fix one name check, other minor cleanups
Denys Vlasenko
2023-06-13
shell/math: reduce stack usage
Denys Vlasenko
2023-06-12
shell: avoid segfault on ${0::0/0~09J}. Closes 15216
Denys Vlasenko
2021-09-26
shell: fix parsing of $(( (v)++ + NUM ))
Denys Vlasenko
2021-09-25
shell: fix arithmentic evaluation of "++7" and such (it is + + 7, i.e. 7)
Denys Vlasenko
2020-10-01
shell: remove FAST_FUNC from a static function
Denys Vlasenko
2019-10-22
shell: better comments in BASE#nn code
Denys Vlasenko
2019-09-22
ash: fix BASE###nn bashism for bases 36..64
Denys Vlasenko
2019-09-22
ash: fix BASE###nn bashism to accept letter 'digits' for bases > 9
Denys Vlasenko
2019-05-26
shell: move all definitions of strto_arith_t() together
Denys Vlasenko
2019-05-19
shell: implement optional "BASE#nnnn" numeric literals
Denys Vlasenko
2018-01-28
shell: handle $((NUM++...) like bash does. Closes 10706
Denys Vlasenko
2017-08-02
do not use `a' quoting style in comments
Denys Vlasenko
2014-11-20
typo fix in comment
Denys Vlasenko
2014-11-18
ash,hush: do not segfault on $((2**63 / -1))
Denys Vlasenko
2013-02-26
move endofname() to libbb
Denys Vlasenko
2013-01-14
whitespace cleanup. no code changes
Denys Vlasenko
2010-09-17
shell/math: better comment. no code changes
Denys Vlasenko
2010-09-16
shell/math: deconvolute and explain ?: handling. Give better error message
Denys Vlasenko
2010-09-15
shell/math: return string error indicator, not integer
Denys Vlasenko
2010-09-13
shell/math.c: stop using bss variable
Denys Vlasenko
2010-09-13
shell/math.c: rename arith_eval_hooks to arith_state, put error code into it
Denys Vlasenko
2010-09-13
shell/math.c: small code shrink; fixed incomprehensible comments
Denys Vlasenko
2010-09-13
shell: small code shrink
Denys Vlasenko
2010-09-13
shell: shrink arith code; and prepare for returning text error codes
Denys Vlasenko
2010-09-07
shell: unify endofname() in hush and ash
Denys Vlasenko
2010-08-16
*: make GNU licensing statement forms more regular
Denys Vlasenko
2010-01-12
hush: use ash's read builtin
Denys Vlasenko
2010-01-12
shell: split read builtin from ash
Denys Vlasenko
2009-10-12
ash,hush: fix $RANDOM in children being repeated
Denys Vlasenko
2009-10-08
*: code shrink via NOINLINE
Denys Vlasenko
2009-06-05
printf: accept negative numbers for %x; sh: overflowed numbers are 0
Denys Vlasenko
2009-04-09
hush: plug the leak of expanded heredoc
Denis Vlasenko
2009-04-03
shell/math: randomconfig fix
Denis Vlasenko
2009-04-02
split math code out of ash and into a standalone library so we can use it in ...
Mike Frysinger