log src/dmgrowbuf.c @ 2634:f3c7115cbf85 default tip

age author description
Thu, 08 Dec 2022 15:59:22 +0200 Matti Hamalainen Require stdbool.h, we require C11 now.
Sat, 02 Jan 2021 11:42:17 +0200 Matti Hamalainen Bump copyright years.
Mon, 13 Jan 2020 23:27:01 +0200 Matti Hamalainen Remove useless dmMemset().
Fri, 03 Jan 2020 10:59:36 +0200 Matti Hamalainen Bump copyright years.
Thu, 04 Jul 2019 10:54:16 +0300 Matti Hamalainen Add new DMGrowBuf helper functions dmGrowBufCopyOffsSize() and
Thu, 04 Jul 2019 10:51:02 +0300 Matti Hamalainen Bump copyright.
Thu, 04 Jul 2019 10:50:07 +0300 Matti Hamalainen Constify.
Fri, 22 Jun 2018 16:33:27 +0300 Matti Hamalainen Change the logic of how DMGrowBuf works in "backwards" growing mode. Adjust
Fri, 22 Jun 2018 16:17:06 +0300 Matti Hamalainen Remove dmGrowBufUpdate() and min/max_offs.
Thu, 21 Jun 2018 19:42:18 +0300 Matti Hamalainen Cosmetics.
Thu, 21 Jun 2018 17:22:32 +0300 Matti Hamalainen Use dmMemset() instead of memset().
Thu, 14 Jun 2018 03:59:45 +0300 Matti Hamalainen Zero out the struct data in dmGrowBufFree().
Wed, 13 Jun 2018 01:39:06 +0300 Matti Hamalainen Fix case where DMGrowBuf is growing backwards and needs to be reallocated in
Wed, 13 Jun 2018 01:37:36 +0300 Matti Hamalainen Improve DMGrowBuf debugging slightly.
Wed, 13 Jun 2018 01:23:45 +0300 Matti Hamalainen Fix one DMGrowBuf debug print.
Mon, 11 Jun 2018 13:57:07 +0300 Matti Hamalainen Change DMGrowBuf API somewhat and implement more copy operations.
Sun, 10 Jun 2018 17:56:08 +0300 Matti Hamalainen Fix unitialized data accesses.
Tue, 05 Jun 2018 21:58:10 +0300 Matti Hamalainen More consistently use DMGrowBuf in the lib64gfx APIs, and implement
Tue, 05 Jun 2018 19:57:08 +0300 Matti Hamalainen Ehm .. the boolean logic conditions used in dmGrowBufPutU{16,32}{LE,BE}()
Tue, 05 Jun 2018 19:50:16 +0300 Matti Hamalainen Fix offset check in dmGrowBufGetU8().
Tue, 05 Jun 2018 19:25:39 +0300 Matti Hamalainen Clarify dmGrowBufGetU8() a bit.
Tue, 05 Jun 2018 18:27:16 +0300 Matti Hamalainen Explicitly initialize some DMGrowBuf fields for clarity, though they are already cleared previously by memset().
Tue, 05 Jun 2018 18:26:30 +0300 Matti Hamalainen Fix DMGrowBuf debugging.
Tue, 05 Jun 2018 15:04:15 +0300 Matti Hamalainen Implement dmGrowBufConstCopy() and dmGrowBufCreateFrom(), and also
Tue, 05 Jun 2018 15:02:56 +0300 Matti Hamalainen Implement dmGrowBufGetU8().
Tue, 05 Jun 2018 12:55:17 +0300 Matti Hamalainen Refactor DMGrowBuf so that there can be buffers that grow "backwards".
Tue, 05 Jun 2018 11:03:17 +0300 Matti Hamalainen Backed out changeset 9611ecd2c4fb
Tue, 05 Jun 2018 09:52:53 +0300 Matti Hamalainen Get rid of dmGrowBufResize().
Tue, 05 Jun 2018 09:50:08 +0300 Matti Hamalainen Get rid of dmGrowBufInit().
Fri, 01 Jun 2018 02:21:24 +0300 Matti Hamalainen Cosmetics.
Sat, 12 May 2018 04:12:46 +0300 Matti Hamalainen Add compile-time debugging information to DMGrowBuf.
Sat, 12 May 2018 03:23:32 +0300 Matti Hamalainen Implement current len/offs push/pop for growbuf.
Sat, 12 May 2018 03:10:47 +0300 Matti Hamalainen Add helper function dmGrowBufRealloc() to handle the common case of
Fri, 11 May 2018 22:22:40 +0300 Matti Hamalainen Add few comments to clarify things.
Fri, 11 May 2018 22:22:23 +0300 Matti Hamalainen Initialize the memory in growbuf.
Fri, 11 May 2018 04:21:34 +0300 Matti Hamalainen Fix dmGrowBufPut() to not include extra byte.
Fri, 11 May 2018 02:26:29 +0300 Matti Hamalainen Rename one of the growbuf functions.
Thu, 10 May 2018 21:16:43 +0300 Matti Hamalainen More work on growbuf.
Thu, 10 May 2018 21:00:59 +0300 Matti Hamalainen Adjust semantics of growbuf and add new function.
Thu, 10 May 2018 18:53:23 +0300 Matti Hamalainen Add dmGrowBufCheckGrow() function.
Thu, 10 May 2018 18:33:57 +0300 Matti Hamalainen Add a growable buffer implementation.