aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * bc: convert arithmetic calc functions to "z" logicDenys Vlasenko2018-12-111-355/+424
| * bc: rename arithmetic calc functions to "z" functions, no code changesDenys Vlasenko2018-12-111-89/+88
| * bc: move declarations around, no code changesDenys Vlasenko2018-12-111-39/+39
| * bc: code shrink in zbc_lex_number()Denys Vlasenko2018-12-111-28/+36
| * bc: make bc_program_pushVar "z-function"Denys Vlasenko2018-12-111-7/+13
| * bc: improve "noninteractive" macro machinery so that even "return zero" code ...Denys Vlasenko2018-12-111-194/+201
| * bc: it's not clear bc_vm_file() always exits on errors, remove ERRORS_ARE_FATALDenys Vlasenko2018-12-101-4/+1
| * bc: more ERRORS_ARE_FATAL annotationsDenys Vlasenko2018-12-101-4/+29
| * bc: stop checking for name length in bc_lex_name()Denys Vlasenko2018-12-101-9/+21
| * bc: optimize non-interactive config: we know that many functions always succeedDenys Vlasenko2018-12-101-13/+60
| * bc: in non-interactive config, let compiler know that error funcs do not returnDenys Vlasenko2018-12-101-26/+39
| * tls: prepare for ECDH_anon ciphersDenys Vlasenko2018-12-101-7/+14
| * tls: fix a potential (currently "disabled" by a macro) SHA1-related bugDenys Vlasenko2018-12-101-1/+1
| * tls: if !ENABLE_FEATURE_TLS_SHA1, tls->MAC_size is always SHA256_OUTSIZE for ...Denys Vlasenko2018-12-101-6/+12
| * tls: introduce FEATURE_TLS_SHA1 to make SHA1 code optionalDenys Vlasenko2018-12-102-6/+41
| * bc: simplify bc_num_parseDecimal() furtherDenys Vlasenko2018-12-101-15/+12
| * bc: make all function pointers FAST_FUNC, on i486 this saves ~400 bytesDenys Vlasenko2018-12-101-42/+39
| * bc: 0xffffffffffffffff may be larger than unsigned longDenys Vlasenko2018-12-101-2/+2
| * bc: optimize bc_vec_concat()Denys Vlasenko2018-12-101-3/+4
| * bc: simplify bc_program_len()Denys Vlasenko2018-12-101-5/+7
| * bc: simplify bc_program_print()Denys Vlasenko2018-12-101-6/+7
| * bc: simplify bc_num_ulong2num()Denys Vlasenko2018-12-101-4/+13
| * bc: move str-to-num conversion functions to their only caller, bc_num_parse()Denys Vlasenko2018-12-101-133/+133
| * bc: further simplify string-to-number conversion codeDenys Vlasenko2018-12-091-1/+7
| * bc: simplify string-tonumber conversion codeDenys Vlasenko2018-12-091-45/+43
| * bc: no need to "set to zero" BcNum after bc_num_init(), it already isDenys Vlasenko2018-12-091-7/+10
| * bc: add and use bc_num_init_DEF_SIZE()Denys Vlasenko2018-12-091-25/+29
| * bc: in bc_program_execStr(), push two variables into inner scopeDenys Vlasenko2018-12-091-15/+12
| * bc: in bc_program_exec(), push two variables into inner scopeDenys Vlasenko2018-12-091-121/+19
| * bc: add accessors for G.prog.strs[idx], G.prog.fns[idx]Denys Vlasenko2018-12-091-20/+30
| * bc: eliminate always the same params to bc_num_printBase()Denys Vlasenko2018-12-081-11/+11
| * bc: remove redundant error checks in bc_parse_print()Denys Vlasenko2018-12-081-8/+10
| * bc: stop propagating pointer to G.prog.nchars deep into printing functionsDenys Vlasenko2018-12-081-48/+45
| * bc: do not pass line width in parameters, it's in globalsDenys Vlasenko2018-12-081-28/+29
| * bc: remove "ready for more input" message, GNU bc does not print thatDenys Vlasenko2018-12-081-12/+4
| * tls: AES-GCM: in GMULT, avoid memcpy, use one less variable in bit loopDenys Vlasenko2018-12-081-11/+11
| * bc: trim banner, use empty interactive prompts (GNU bc compat)Denys Vlasenko2018-12-081-19/+19
| * dc: fix "small dc" to have standard command line APIDenys Vlasenko2018-12-082-25/+48
| * lineedit: fix "defined but not used" sigaction2 warningDenys Vlasenko2018-12-081-0/+2
| * mdev: suppress aliasing warningDenys Vlasenko2018-12-081-1/+11
| * inetd: suppress aliasing warningDenys Vlasenko2018-12-085-7/+7
| * suppress gcc 8 aliasing warningsDenys Vlasenko2018-12-085-3/+25
| * tls: make RIGHTSHIFTX() in AES-GCM fasterDenys Vlasenko2018-12-081-7/+56
| * bc: replace G.eof with a special exit code of bc_vm_stdin()Denys Vlasenko2018-12-071-6/+9
| * bc: convert two macros to functions, unwing one complex max(a,min(b,c))Denys Vlasenko2018-12-071-9/+20
| * bc: do not perform domr limit checks when they can't work (e.g. on 32-bit arc...Denys Vlasenko2018-12-071-33/+76
| * bc: pull temporary into a registerDenys Vlasenko2018-12-071-7/+10
| * bc: use more compact parsing data structuresDenys Vlasenko2018-12-071-27/+35
| * bc: use only G_interrupt as interrupt flagDenys Vlasenko2018-12-071-6/+7
| * bc: fix exit codes for FEATURE_CLEAN_UP=yDenys Vlasenko2018-12-061-8/+15