Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 25 of 28) sorted by relevance

12

/busybox-1.35.0/util-linux/
Dtaskset.c139 unsigned bit, end; in parse_cpulist() local
142 bit = end = bb_strtou(s, &s, 10); in parse_cpulist()
152 || bit > end in parse_cpulist()
159 while (bit <= end && bit < max) { in parse_cpulist()
160 mask[bit / BITS_UL] |= (1UL << (bit & MASK_UL)); in parse_cpulist()
161 bit += stride; in parse_cpulist()
173 ul bit; in print_cpulist() local
178 bit = 1; in print_cpulist()
180 if (*mask & bit) { in print_cpulist()
185 bit <<= 1; in print_cpulist()
[all …]
/busybox-1.35.0/libbb/
Dsignals.c47 int bit = 1; in bb_signals() local
50 if (sigs & bit) { in bb_signals()
51 sigs -= bit; in bb_signals()
55 bit <<= 1; in bb_signals()
62 int bit = 1; in bb_signals_norestart() local
71 if (sigs & bit) { in bb_signals_norestart()
72 sigs -= bit; in bb_signals_norestart()
76 bit <<= 1; in bb_signals_norestart()
DConfig.src61 64-bit x86: +270 bytes of code, 45% faster
62 32-bit x86: +450 bytes of code, 75% faster
/busybox-1.35.0/networking/
Dping.c475 #define BYTE(bit) rcvd_tbl[(bit)>>3] argument
476 #define MASK(bit) (1 << ((bit) & 7)) argument
477 #define SET(bit) (BYTE(bit) |= MASK(bit)) argument
478 #define CLR(bit) (BYTE(bit) &= (~MASK(bit))) argument
479 #define TST(bit) (BYTE(bit) & MASK(bit)) argument
Dtls_fe.c169 const byte bit = (b[i >> 3] >> (i & 7)) & 1;
182 fprime_select(r, r, plusa, bit);
571 const int bit = (e[i >> 3] >> (i & 7)) & 1; in curve25519() local
587 fe_select(xm1, xm, bit); in curve25519()
588 fe_select(zm1, zm, bit); in curve25519()
589 fe_select(xm, xms, bit); in curve25519()
590 fe_select(zm, zms, bit); in curve25519()
594 if (bit) { in curve25519()
Dwget.c1596 int bit; in wget_main() local
1602 bit = 1; in wget_main()
1606 G.user_headers |= bit; in wget_main()
1609 bit <<= 1; in wget_main()
DConfig.src47 This may increase size of your executable a bit.
/busybox-1.35.0/testsuite/expr/
Dexpr-big3 # 3*1000*1000*1000 overflows 32-bit signed int
/busybox-1.35.0/archival/libarchive/
Ddecompress_unlzma.c300 int bit; in IF_DESKTOP() local
303 bit = match_byte & 0x100; in IF_DESKTOP()
304 bit ^= (rc_get_bit(rc, prob + 0x100 + bit + mi, &mi) << 8); /* 0x100 or 0 */ in IF_DESKTOP()
305 if (bit) in IF_DESKTOP()
/busybox-1.35.0/archival/libarchive/unxz/
DREADME54 long as there is a data type for unsigned 64-bit integer (or the
56 care than just using 32-bit integer instead of 64-bit).
Dxz_dec_lzma2.c502 int bit; in rc_bit() local
509 bit = 0; in rc_bit()
514 bit = 1; in rc_bit()
517 return bit; in rc_bit()
/busybox-1.35.0/scripts/kconfig/
Dzconf.l2 %option 8bit backup nodefault perf-report perf-report
Dlex.zconf.c_shipped106 * we want to instead treat it as an 8-bit unsigned char, hence the
274 * instead of setting up a fresh zconfin. A bit of a hack ...
1676 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
/busybox-1.35.0/loginutils/
DConfig.src25 makes your embedded system quite a bit larger.
51 makes your embedded system quite a bit larger.
/busybox-1.35.0/docs/
Dkeep_data_small.txt21 built against uclibc. Run on x86-64 machine with 64-bit kernel:
42 takes 55k of memory on 64-bit x86 kernel.
44 On 32-bit kernel we need ~26k per applet.
Dunicode.txt31 This case is a bit similar to "shell input", but unlike shell,
Dlogging_and_backgrounding.txt24 Current situation is a bit of a mess:
Dbusybox_footer.pod32 listed here so you can obtain your bit of eternal glory. If you should be
DSerial-Programming-HOWTO.txt130 When the termios.c_lflag ICANON bit is set, input data is collected
329 The bit pattern of flags refer to the following control lines:
Dunicode_UTF-8-test.txt27 replacement character (U+FFFD), which looks a bit like an inverted
Dposix_conformance.txt196 - It seems that GNU df does not round percents up in its output (thus its results are a bit differe…
/busybox-1.35.0/shell/
DConfig.src98 bool "Extend POSIX math support to 64 bit"
102 Enable 64-bit math support in the shell. This will make the shell
/busybox-1.35.0/
DConfig.in209 to root with the suid bit set, enabling some applets to perform
219 to each binary), and only set the suid bit on the one that needs it.
221 Some applets which require root rights (need suid bit on the binary
226 (via suid bit, or because run by root), but would try to work
639 the executable larger and slow down runtime a bit.
DREADME182 support both 32 and 64 bit platforms, and both big and little endian
/busybox-1.35.0/modutils/
DConfig.src137 Choosing N saves about 250 bytes of code (on 32-bit x86).

12