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

@@ -44,58 +44,56 @@
* DEFAULT is the default stride.
* Note that SIZE and DEFAULT should be relatively prime.
*/
#define SIZE (1024*1024/sizeof(struct entry))
#define DEFAULT 477
#define SIZE (1024 * 1024 / sizeof(struct entry))
#define DEFAULT 477
struct entry {
struct entry *e;
struct entry *e;
};
struct entry array[SIZE];
int
main(int argc, char **argv)
{
volatile struct entry *e;
unsigned i, stride;
int main(int argc, char **argv) {
volatile struct entry *e;
unsigned i, stride;
stride = DEFAULT;
if (argc == 2) {
stride = atoi(argv[1]);
}
if (stride <= 0 || argc > 2) {
printf("Usage: ctest [stridesize]\n");
printf(" stridesize should not be a multiple of 2.\n");
return 1;
}
stride = DEFAULT;
if (argc == 2) {
stride = atoi(argv[1]);
}
if (stride <= 0 || argc > 2) {
printf("Usage: ctest [stridesize]\n");
printf(" stridesize should not be a multiple of 2.\n");
return 1;
}
printf("Starting ctest: stride %d\n", stride);
printf("Starting ctest: stride %d\n", stride);
/*
* Generate a huge linked list, with each entry pointing to
* the slot STRIDE entries above it. As long as STRIDE and SIZE
* are relatively prime, this will put all the entries on one
* list. Otherwise you will get multiple disjoint lists. (All
* these lists will be circular.)
*/
for (i=0; i<SIZE; i++) {
array[i].e = &array[(i+stride) % SIZE];
}
/*
* Generate a huge linked list, with each entry pointing to
* the slot STRIDE entries above it. As long as STRIDE and SIZE
* are relatively prime, this will put all the entries on one
* list. Otherwise you will get multiple disjoint lists. (All
* these lists will be circular.)
*/
for (i = 0; i < SIZE; i++) {
array[i].e = &array[(i + stride) % SIZE];
}
/*
* Traverse the list. We stop after hitting each element once.
*
* (If STRIDE was even, this will hit some elements more than
* once and others not at all.)
*/
e = &array[0];
for (i=0; i<SIZE; i++) {
if (i % stride == 0) {
putchar('.');
}
e = e->e;
}
/*
* Traverse the list. We stop after hitting each element once.
*
* (If STRIDE was even, this will hit some elements more than
* once and others not at all.)
*/
e = &array[0];
for (i = 0; i < SIZE; i++) {
if (i % stride == 0) {
putchar('.');
}
e = e->e;
}
printf("\nDone!\n");
return 0;
printf("\nDone!\n");
return 0;
}