Searched refs:nr (Results 1 – 5 of 5) sorted by relevance
/busybox-1.35.0/util-linux/ |
D | fsck_minix.c | 437 static int check_zone_nr2(uint32_t *nr, smallint *corrected) in check_zone_nr2() argument 440 if (!*nr) in check_zone_nr2() 442 if (*nr < FIRSTZONE) in check_zone_nr2() 444 else if (*nr >= ZONES) in check_zone_nr2() 447 return *nr; in check_zone_nr2() 450 *nr = 0; in check_zone_nr2() 456 static int check_zone_nr(uint16_t *nr, smallint *corrected) in check_zone_nr() argument 458 uint32_t nr32 = *nr; in check_zone_nr() 460 *nr = (uint16_t)nr32; in check_zone_nr() 467 static void read_block(unsigned nr, void *addr) in read_block() argument [all …]
|
/busybox-1.35.0/procps/ |
D | powertop.c | 323 int nr; in process_irq_counts() local 335 nr = index_in_strings("NMI\0RES\0CAL\0TLB\0TRM\0THR\0SPU\0", buf); in process_irq_counts() 336 if (nr >= 0) { in process_irq_counts() 337 nr += 20000; in process_irq_counts() 341 nr = strtoul(buf, NULL, 10); in process_irq_counts() 363 if (nr < 20000) { in process_irq_counts() 374 if (nr >= 20000) in process_irq_counts() 379 delta = save_irq_count(nr, count); in process_irq_counts() 385 if (nr != 0 && delta != 0) in process_irq_counts() 388 if (nr == 0) in process_irq_counts()
|
/busybox-1.35.0/testsuite/ |
D | runtest | 136 sed -nr 's/^CONFIG_//p' "$bindir/.config" |
|
/busybox-1.35.0/docs/ |
D | keep_data_small.txt | 151 strings busybox | sort | uniq -c | sort -nr
|
/busybox-1.35.0/shell/ |
D | ash.c | 10764 int nr; in preadfd() local 10771 nr = nonblock_immune_read(g_parsefile->pf_fd, buf, IBUFSIZ - 1); in preadfd() 10787 nr = read_line_input(line_input_state, cmdedit_prompt, buf, IBUFSIZ); in preadfd() 10788 if (nr == 0) { in preadfd() 10800 if (nr < 0) { in preadfd() 10803 nr = 0; in preadfd() 10814 nr = nonblock_immune_read(g_parsefile->pf_fd, buf, IBUFSIZ - 1); in preadfd() 10818 if (nr < 0) { in preadfd() 10831 return nr; in preadfd()
|