clang-format

This commit is contained in:
2024-09-10 13:03:02 -04:00
parent 53c617d779
commit d66450e427
381 changed files with 28864 additions and 34170 deletions

View File

@@ -34,102 +34,88 @@
#include <lib.h>
#include <array.h>
struct array *
array_create(void)
{
struct array *a;
struct array *array_create(void) {
struct array *a;
a = kmalloc(sizeof(*a));
if (a != NULL) {
array_init(a);
}
return a;
a = kmalloc(sizeof(*a));
if (a != NULL) {
array_init(a);
}
return a;
}
void
array_destroy(struct array *a)
{
array_cleanup(a);
kfree(a);
void array_destroy(struct array *a) {
array_cleanup(a);
kfree(a);
}
void
array_init(struct array *a)
{
a->num = a->max = 0;
a->v = NULL;
void array_init(struct array *a) {
a->num = a->max = 0;
a->v = NULL;
}
void
array_cleanup(struct array *a)
{
/*
* Require array to be empty - helps avoid memory leaks since
* we don't/can't free anything any contents may be pointing
* to.
*/
ARRAYASSERT(a->num == 0);
kfree(a->v);
void array_cleanup(struct array *a) {
/*
* Require array to be empty - helps avoid memory leaks since
* we don't/can't free anything any contents may be pointing
* to.
*/
ARRAYASSERT(a->num == 0);
kfree(a->v);
#ifdef ARRAYS_CHECKED
a->v = NULL;
a->v = NULL;
#endif
}
int
array_preallocate(struct array *a, unsigned num)
{
void **newptr;
unsigned newmax;
int array_preallocate(struct array *a, unsigned num) {
void **newptr;
unsigned newmax;
if (num > a->max) {
/* Don't touch A until the allocation succeeds. */
newmax = a->max;
while (num > newmax) {
newmax = newmax ? newmax*2 : 4;
}
if (num > a->max) {
/* Don't touch A until the allocation succeeds. */
newmax = a->max;
while (num > newmax) {
newmax = newmax ? newmax * 2 : 4;
}
/*
* We don't have krealloc, and it wouldn't be
* worthwhile to implement just for this. So just
* allocate a new block and copy. (Exercise: what
* about this and/or kmalloc makes it not worthwhile?)
*/
/*
* We don't have krealloc, and it wouldn't be
* worthwhile to implement just for this. So just
* allocate a new block and copy. (Exercise: what
* about this and/or kmalloc makes it not worthwhile?)
*/
newptr = kmalloc(newmax*sizeof(*a->v));
if (newptr == NULL) {
return ENOMEM;
}
memcpy(newptr, a->v, a->num*sizeof(*a->v));
kfree(a->v);
a->v = newptr;
a->max = newmax;
}
return 0;
newptr = kmalloc(newmax * sizeof(*a->v));
if (newptr == NULL) {
return ENOMEM;
}
memcpy(newptr, a->v, a->num * sizeof(*a->v));
kfree(a->v);
a->v = newptr;
a->max = newmax;
}
return 0;
}
int
array_setsize(struct array *a, unsigned num)
{
int result;
int array_setsize(struct array *a, unsigned num) {
int result;
result = array_preallocate(a, num);
if (result) {
return result;
}
a->num = num;
result = array_preallocate(a, num);
if (result) {
return result;
}
a->num = num;
return 0;
return 0;
}
void
array_remove(struct array *a, unsigned index)
{
unsigned num_to_move;
void array_remove(struct array *a, unsigned index) {
unsigned num_to_move;
ARRAYASSERT(a->num <= a->max);
ARRAYASSERT(index < a->num);
ARRAYASSERT(a->num <= a->max);
ARRAYASSERT(index < a->num);
num_to_move = a->num - (index + 1);
memmove(a->v + index, a->v + index+1, num_to_move*sizeof(void *));
a->num--;
num_to_move = a->num - (index + 1);
memmove(a->v + index, a->v + index + 1, num_to_move * sizeof(void *));
a->num--;
}