Lines Matching defs:count
31 size_t *count,
34 size_t count_ = *count;
48 *count = count_;
150 size_t count;
155 size_t count;
219 if (define < test_define_names[i].count
232 if (define < test_define_maps[i].count
251 if (define < test_define_maps[i].count
329 size_t count = 0;
340 count = lfs_max(count, d+1);
346 test_override_define_count = count;
350 if (count * permutations > test_override_define_capacity) {
352 size_t ncapacity = 1 << lfs_npw2(count * permutations);
361 sizeof(test_define_t) * count * permutations);
377 test_override_defines[j*count + d] = TEST_LIT(
541 size_t count = backtrace(
545 for (size_t i = 1; i < count; i++) {
1306 name_width, "geometry", "read", "prog", "erase", "count", "size");
1896 // global test step count
2307 // comma-separated read/prog/erase/count
2310 size_t count = 0;
2313 while (count < 4) {
2315 sizes[count] = strtoumax(s, &parsed, 0);
2316 count += 1;
2332 if (count >= 3) {
2339 } else if (count >= 2) {
2348 if (count >= 4) {
2356 // leb16-encoded read/prog/erase/count
2359 size_t count = 0;
2365 if (parsed == s || count >= 4) {
2369 sizes[count] = x;
2370 count += 1;
2376 if (count >= 3) {
2383 } else if (count >= 2) {
2392 if (count >= 4) {
2523 size_t count = strtoumax(optarg, &parsed, 0);
2530 .cycle_count = count,