Lines Matching defs:size
11 void *smalloc(size_t size)
13 return malloc(size);
21 static int test_regular(size_t size, int seed)
29 printf("Using %llu entries...", (unsigned long long) size);
32 lfsr_init(&lfsr, size, seed, seed & 0xF);
33 map = axmap_new(size);
34 osize = size;
37 while (size--) {
72 static int test_multi(size_t size, unsigned int bit_off)
74 unsigned int map_size = size;
79 printf("Test multi %llu entries %u offset...", (unsigned long long) size, bit_off);
125 size_t size = (1UL << 23) - 200;
129 size = strtoul(argv[1], NULL, 10);
134 if (test_regular(size, seed))
136 if (test_multi(size, 0))
138 if (test_multi(size, 17))