-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix bugs in new stretchy buffer code, add stretchy buffer tests
- Loading branch information
Showing
9 changed files
with
168 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// stretchy buffer // init: NULL // free: sbfree() // push_back: sbpush() // size: sbcount() // | ||
#define sbfree(a) ((a) ? free(stb__sbraw(a)),0 : 0) | ||
#define sbpush(a,v) (stb__sbmaybegrow(a,1), (a)[stb__sbn(a)++] = (v)) | ||
#define sbcount(a) ((a) ? stb__sbn(a) : 0) | ||
#define sbadd(a,n) (stb__sbmaybegrow(a,n), stb__sbn(a)+=(n), &(a)[stb__sbn(a)-(n)]) | ||
#define sblast(a) ((a)[stb__sbn(a)-1]) | ||
|
||
#include <stdlib.h> | ||
#define stb__sbraw(a) ((int *) (a) - 2) | ||
#define stb__sbm(a) stb__sbraw(a)[0] | ||
#define stb__sbn(a) stb__sbraw(a)[1] | ||
|
||
#define stb__sbneedgrow(a,n) ((a)==0 || stb__sbn(a)+n >= stb__sbm(a)) | ||
#define stb__sbmaybegrow(a,n) (stb__sbneedgrow(a,(n)) ? stb__sbgrow(a,n) : 0) | ||
#define stb__sbgrow(a,n) stb__sbgrowf((void **) &(a), (n), sizeof(*(a))) | ||
|
||
static void stb__sbgrowf(void **arr, int increment, int itemsize) | ||
{ | ||
int m = *arr ? 2*stb__sbm(*arr)+increment : increment+1; | ||
void *p = realloc(*arr ? stb__sbraw(*arr) : 0, itemsize * m + sizeof(int)*2); | ||
assert(p); | ||
if (p) { | ||
if (!*arr) ((int *) p)[1] = 0; | ||
*arr = (void *) ((int *) p + 2); | ||
stb__sbm(*arr) = m; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#include "stretchy_buffer.h" | ||
#include <assert.h> | ||
|
||
int main(int arg, char **argv) | ||
{ | ||
int i; | ||
int *arr = NULL; | ||
|
||
for (i=0; i < 1000000; ++i) | ||
sb_push(arr, i); | ||
|
||
assert(sb_count(arr) == 1000000); | ||
for (i=0; i < 1000000; ++i) | ||
assert(arr[i] == i); | ||
|
||
sb_free(arr); | ||
arr = NULL; | ||
|
||
for (i=0; i < 1000; ++i) | ||
sb_add(arr, 1000); | ||
assert(sb_count(arr) == 1000000); | ||
|
||
return 0; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.