[style] mass reformat all the non external code to 4 space indents

Ran everything through scripts/codestyle.space, which uses astyle
to generally follow K&R style.

Biggest non whitespace change is pulling brackets down on function
declarations, which I'm pretty ambivalent about, but astyle insists
on taking a stance
This commit is contained in:
Travis Geiselbrecht
2016-02-14 12:24:01 -08:00
parent 6659d28a4f
commit 2eb32a4369
276 changed files with 11152 additions and 10886 deletions

View File

@@ -28,54 +28,54 @@
#include <lib/evlog.h>
#define INCPTR(e, ptr, inc) \
modpow2((ptr) + (inc), (e)->len_pow2)
modpow2((ptr) + (inc), (e)->len_pow2)
status_t evlog_init_etc(evlog_t *e, uint len, uint unitsize, uintptr_t *items)
{
if (len < 2 || !ispow2(len)) {
return ERR_INVALID_ARGS;
}
if (unitsize < 1 || !ispow2(unitsize)) {
return ERR_INVALID_ARGS;
}
if (unitsize > len) {
return ERR_INVALID_ARGS;
}
if (len < 2 || !ispow2(len)) {
return ERR_INVALID_ARGS;
}
if (unitsize < 1 || !ispow2(unitsize)) {
return ERR_INVALID_ARGS;
}
if (unitsize > len) {
return ERR_INVALID_ARGS;
}
e->head = 0;
e->unitsize = unitsize;
e->len_pow2 = log2_uint(len);
e->items = items;
e->head = 0;
e->unitsize = unitsize;
e->len_pow2 = log2_uint(len);
e->items = items;
return NO_ERROR;
return NO_ERROR;
}
status_t evlog_init(evlog_t *e, uint len, uint unitsize)
{
uintptr_t *items = calloc(1, len * sizeof(uintptr_t));
if (!items) {
return ERR_NO_MEMORY;
}
uintptr_t *items = calloc(1, len * sizeof(uintptr_t));
if (!items) {
return ERR_NO_MEMORY;
}
status_t err = evlog_init_etc(e, len, unitsize, items);
if (err < 0)
free(items);
return err;
status_t err = evlog_init_etc(e, len, unitsize, items);
if (err < 0)
free(items);
return err;
}
uint evlog_bump_head(evlog_t *e)
{
uint index = e->head;
e->head = INCPTR(e, e->head, e->unitsize);
uint index = e->head;
e->head = INCPTR(e, e->head, e->unitsize);
return index;
return index;
}
void evlog_dump(evlog_t *e, evlog_dump_cb cb)
{
for (uint index = INCPTR(e, e->head, e->unitsize); index != e->head; index = INCPTR(e, index, e->unitsize)) {
cb(&e->items[index]);
}
for (uint index = INCPTR(e, e->head, e->unitsize); index != e->head; index = INCPTR(e, index, e->unitsize)) {
cb(&e->items[index]);
}
}