aboutsummaryrefslogtreecommitdiff
path: root/src/lj_buf.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into v2.1Mike Pall2025-01-131-1/+1
|
* Merge branch 'master' into v2.1Mike Pall2023-08-201-1/+1
|
* Merge branch 'master' into v2.1Mike Pall2022-01-151-1/+1
|
* String buffers, part 4a: Add metatable serialization dictionary.Mike Pall2021-08-121-1/+2
| | | | Sponsored by fmad.io.
* String buffers, part 3d: Compile string buffer methods and functions.Mike Pall2021-07-191-1/+11
| | | | Sponsored by fmad.io.
* String buffers, part 2e: add serialization string dictionary.Mike Pall2021-06-071-7/+9
| | | | Sponsored by fmad.io.
* String buffers, part 2d: basic string buffer methods.Mike Pall2021-06-011-0/+4
| | | | Sponsored by fmad.io.
* String buffers, part 2b: Add extended string buffers. Use in serializer.Mike Pall2021-06-011-13/+87
| | | | Sponsored by fmad.io.
* String buffers, part 2a: internal SBuf reorg. Use full pointers.Mike Pall2021-06-011-16/+13
| | | | Sponsored by fmad.io.
* String buffers, part 1: object serialization.Mike Pall2021-03-251-1/+8
| | | | Sponsored by fmad.io.
* Merge branch 'master' into v2.1Mike Pall2021-01-021-1/+1
|
* Merge branch 'master' into v2.1Mike Pall2020-01-201-1/+1
|
* Merge branch 'master' into v2.1Mike Pall2017-01-171-1/+1
|
* Merge branch 'master' into v2.1Mike Pall2016-03-031-1/+1
|
* Fix build with JIT disabled.Mike Pall2016-03-011-2/+0
| | | | Thanks to Peter Melnichenko.
* Merge branch 'master' into v2.1Mike Pall2015-01-061-1/+1
|
* Merge branch 'master' into v2.1Mike Pall2014-01-161-1/+1
|
* Refactor string buffer growth helpers.Mike Pall2013-05-291-7/+7
|
* Don't try to reinvent memcpy().Mike Pall2013-05-221-2/+6
|
* Big renaming of string buffer/formatting/conversion functions.Mike Pall2013-05-131-25/+28
|
* Refactor table.concat().Mike Pall2013-04-271-0/+2
|
* Refactor string.rep().Mike Pall2013-04-261-0/+1
|
* Abstract out some common buffer operations.Mike Pall2013-04-261-0/+9
|
* Refactor string.reverse(), string.lower(), string.upper().Mike Pall2013-04-261-1/+4
|
* Fuse string creation into concats. Optimize single-char concats.Mike Pall2013-04-231-1/+2
|
* Compile string concatenations (BC_CAT).Mike Pall2013-04-211-0/+6
|
* String buffer refactoring, part 4.Mike Pall2013-02-281-13/+16
| | | | Add lua_State pointer to SBuf for buffer resizing.
* String buffer refactoring, part 2.Mike Pall2013-02-271-7/+53
| | | | | Switch to pointers for start/pos/end of buffer. Abstract out some buffer writers.
* String buffer refactoring, part 1.Mike Pall2013-02-271-0/+27
Move string buffer handling to lj_buf.*. Use common buffer resizing function.