/busybox-1.35.0/util-linux/ |
D | hexdump_xxd.c | 171 unsigned bytes = 2; in xxd_main() local 179 &opt_l, &opt_s, &bytes, &cols, &opt_o in xxd_main() 214 bytes = cols; /* -p ignores -gN */ in xxd_main() 219 bytes = 1; // -i ignores -gN in xxd_main() 226 if (bytes < 1 || bytes >= cols) { in xxd_main() 230 else if (bytes == 1) { in xxd_main() 246 if (i == cols || i % bytes) in xxd_main()
|
D | fdisk_sgi.c | 37 unsigned short bytes; member 836 sgilabel->devparam.bytes = SGI_SSWAP16(512); in create_sgilabel()
|
D | fdisk.c | 1664 ullong bytes; in read_int() local 1667 bytes = (ullong) value << scale_shift; in read_int() 1669 bytes += unit/2; /* round */ in read_int() 1670 bytes /= unit; in read_int() 1671 value = (bytes != 0 ? bytes - 1 : 0); in read_int()
|
/busybox-1.35.0/docs/ |
D | unicode_UTF-8-test.txt | 72 2.1.2 2 bytes (U-00000080): "" | 73 2.1.3 3 bytes (U-00000800): "ࠀ" | 74 2.1.4 4 bytes (U-00010000): "" | 75 2.1.5 5 bytes (U-00200000): "�����" | 76 2.1.6 6 bytes (U-04000000): "������" | 81 2.2.2 2 bytes (U-000007FF): "߿" | 82 2.2.3 3 bytes (U-0000FFFF): "" | 83 2.2.4 4 bytes (U-001FFFFF): "����" | 84 2.2.5 5 bytes (U-03FFFFFF): "�����" | 85 2.2.6 6 bytes (U-7FFFFFFF): "������" | [all …]
|
D | smallint.txt | 23 for bytes than for full integers. 36 they are pushed on-stack or stored in registers, bytes here are *harder* 39 on bytes than on ints on some architectires.
|
D | keep_data_small.txt | 130 Since bb_common_bufsiz1 is BUFSIZ + 1 bytes long and BUFSIZ can change 162 reduces bss size by 32 bytes, because gcc sometimes aligns structures to 184 // gcc aligns to 32 bytes if sizeof(struct) >= 32 188 } s28 = { 1 }; // struct will be aligned to 4 bytes 192 } s32 = { 1 }; // struct will be aligned to 32 bytes 195 char vc32[32] = { 1 }; // aligned to 32 bytes 199 are still aligned to 32 bytes. 261 855 bytes saved in total.
|
D | unicode.txt | 10 as sequence of bytes would break any editing. This was fixed
|
/busybox-1.35.0/networking/udhcp/ |
D | d6_packet.c | 34 int bytes; in d6_recv_kernel_packet() local 37 bytes = safe_read(fd, packet, sizeof(*packet)); in d6_recv_kernel_packet() 38 if (bytes < 0) { in d6_recv_kernel_packet() 40 return bytes; /* returns -1 */ in d6_recv_kernel_packet() 43 if (bytes < offsetof(struct d6_packet, d6_options)) { in d6_recv_kernel_packet() 51 return bytes; in d6_recv_kernel_packet()
|
D | packet.c | 83 int bytes; in udhcp_recv_kernel_packet() local 86 bytes = safe_read(fd, packet, sizeof(*packet)); in udhcp_recv_kernel_packet() 87 if (bytes < 0) { in udhcp_recv_kernel_packet() 89 return bytes; /* returns -1 */ in udhcp_recv_kernel_packet() 92 if (bytes < offsetof(struct dhcp_packet, options) in udhcp_recv_kernel_packet() 102 return bytes; in udhcp_recv_kernel_packet()
|
D | dhcpc.c | 270 int bytes; in xmalloc_optname_optval() local 279 bytes = (mask + 7) / 8; /* 0 -> 0, 1..8 -> 1, 9..16 -> 2 etc */ in xmalloc_optname_optval() 280 while (--bytes >= 0) { in xmalloc_optname_optval() 884 int bytes; in d4_recv_raw_packet() local 903 bytes = recvmsg(fd, &msg, 0); in d4_recv_raw_packet() 904 if (bytes < 0) { in d4_recv_raw_packet() 909 return bytes; /* returns -1 */ in d4_recv_raw_packet() 914 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) { in d4_recv_raw_packet() 919 if (bytes < ntohs(packet.ip.tot_len)) { in d4_recv_raw_packet() 926 bytes = ntohs(packet.ip.tot_len); in d4_recv_raw_packet() [all …]
|
D | d6_dhcpc.c | 908 int bytes; in d6_recv_raw_packet() local 911 bytes = safe_read(fd, &packet, sizeof(packet)); in d6_recv_raw_packet() 912 if (bytes < 0) { in d6_recv_raw_packet() 915 return bytes; /* returns -1 */ in d6_recv_raw_packet() 918 if (bytes < (int) (sizeof(packet.ip6) + sizeof(packet.udp))) { in d6_recv_raw_packet() 923 if (bytes < sizeof(packet.ip6) + ntohs(packet.ip6.ip6_plen)) { in d6_recv_raw_packet() 930 bytes = sizeof(packet.ip6) + ntohs(packet.ip6.ip6_plen); in d6_recv_raw_packet() 962 bytes -= sizeof(packet.ip6) + sizeof(packet.udp); in d6_recv_raw_packet() 963 memcpy(d6_pkt, &packet.data, bytes); in d6_recv_raw_packet() 964 return bytes; in d6_recv_raw_packet()
|
D | Config.src | 120 At the cost of ~300 bytes, enables -P port option. 155 which are 28 bytes too large. 156 Seednet (ISP) VDSL: sends packets 2 bytes too large.
|
D | dhcpd.c | 972 int bytes; in udhcpd_main() local 1031 bytes = udhcp_recv_kernel_packet(&packet, server_socket); in udhcpd_main() 1035 if (bytes < 0) { in udhcpd_main() 1037 if (bytes == -1 && errno != EINTR) { in udhcpd_main()
|
/busybox-1.35.0/archival/ |
D | cpio.c | 240 off_t bytes = 0; /* output bytes count */ in cpio_o() local 353 bytes += printf("070701" in cpio_o() 372 bytes = cpio_pad4(bytes); in cpio_o() 379 bytes += printf("%s", lpath); in cpio_o() 386 bytes += st.st_size; in cpio_o() 389 bytes = cpio_pad4(bytes); in cpio_o()
|
/busybox-1.35.0/libbb/ |
D | progress.c | 184 unsigned bytes; in bb_progress_update() local 186 bytes = totalsize - beg_size; in bb_progress_update() 194 eta = (unsigned long)bytes * elapsed / transferred - elapsed; in bb_progress_update()
|
D | Config.src | 41 int "MD5: Trade bytes for speed (0:fast, 3:slow)" 55 int "SHA3: Trade bytes for speed (0:fast, 1:slow)" 61 64-bit x86: +270 bytes of code, 45% faster 62 32-bit x86: +450 bytes of code, 75% faster 90 This will cost you ~60 bytes. 130 saves about 1400 bytes. 219 correctly, or want to save on code size (about 400 bytes), 291 code is ~700 bytes smaller for this case. 293 code is ~300 bytes smaller for this case. 341 invalid UTF-8 bytes are not substituted with the selected
|
D | unicode.c | 177 int bytes; in mbstowc_internal() local 190 bytes = 0; in mbstowc_internal() 193 bytes++; in mbstowc_internal() 194 } while ((c & 0x80) && bytes < 6); in mbstowc_internal() 195 if (bytes == 1) { in mbstowc_internal() 200 c = (uint8_t)(c) >> bytes; in mbstowc_internal() 202 while (--bytes) { in mbstowc_internal()
|
/busybox-1.35.0/debianutils/ |
D | start_stop_daemon.c | 198 ssize_t bytes; in pid_is_exec() local 212 bytes = open_read_close(buf, G.execname_cmpbuf, G.execname_sizeof); in pid_is_exec() 213 if (bytes > 0) { in pid_is_exec() 214 G.execname_cmpbuf[bytes] = '\0'; in pid_is_exec()
|
/busybox-1.35.0/procps/ |
D | Config.src | 9 bool "Faster /proc scanning code (+100 bytes)"
|
/busybox-1.35.0/networking/ |
D | ifplugd.c | 487 ssize_t bytes; in check_existence_through_netlink() local 489 bytes = recv(netlink_fd, replybuf, BUF_SIZE, MSG_DONTWAIT); in check_existence_through_netlink() 490 if (bytes < 0) { in check_existence_through_netlink() 500 while (bytes > 0) { in check_existence_through_netlink() 501 if (!NLMSG_OK(mhdr, bytes)) { in check_existence_through_netlink() 533 mhdr = NLMSG_NEXT(mhdr, bytes); in check_existence_through_netlink()
|
D | telnetd.ctrlSQ.patch | 13 included patch only adds about 200 bytes of text to x86 busybox and 300 14 bytes to mipsel busybox. Please consider applying. 146 + * then there are no data bytes to worry about.
|
/busybox-1.35.0/miscutils/ |
D | ubi_tools.c | 242 mkvol_req.bytes = size_bytes; /* signed int64_t */ in ubi_tools_main() 289 rsvol_req.bytes = size_bytes; /* signed int64_t */ in ubi_tools_main()
|
D | devfsd.c | 711 ssize_t bytes; in do_servicing() local 718 bytes = read(fd, (char *) &info, sizeof info); in do_servicing() 723 if (bytes < 1) in do_servicing()
|
/busybox-1.35.0/coreutils/ |
D | head.c | 55 # define print_first_N(fp,count,bytes) print_first_N(fp,count) argument
|
/busybox-1.35.0/scripts/kconfig/ |
D | lex.zconf.c_shipped | 187 /* Size of input buffer in bytes, not including room for EOB 294 YY_BUFFER_STATE zconf_scan_bytes (yyconst char *bytes,int len ); 1747 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. 1945 * @param size the size in bytes of the character buffer 1983 * @note If you want to scan bytes that may contain NUL values, then use 1992 /** Setup the input buffer state to scan the given bytes. The next call to zconflex() will 1993 * scan from a @e copy of @a bytes. 1994 * @param bytes the byte buffer to scan 1995 * @param len the number of bytes in the buffer pointed to by @a bytes. 1999 YY_BUFFER_STATE zconf_scan_bytes (yyconst char * bytes, int len ) [all …]
|