Home
last modified time | relevance | path

Searched refs:tt (Results 1 – 9 of 9) sorted by relevance

/busybox-1.35.0/networking/
Dtls_aesgcm.c91 unsigned long tt = SWAP_BE64(l[0]); in RIGHTSHIFTX() local
92 unsigned long carryOut = tt << (LONG_BIT-1); // zero, or 0x800..00 in RIGHTSHIFTX()
93 tt = (tt >> 1) ^ carryIn; l[0] = SWAP_BE64(tt); in RIGHTSHIFTX()
94 tt = SWAP_BE64(l[1]); in RIGHTSHIFTX()
95 tt = (tt >> 1) ^ carryOut; l[1] = SWAP_BE64(tt); in RIGHTSHIFTX()
Dtls_pstm_sqr_comba.c407 tt = (pstm_word)c0 + t; c0 = (pstm_digit)tt; \
408 tt = (pstm_word)c1 + (tt >> DIGIT_BIT); \
409 c1 = (pstm_digit)tt; c2 += (pstm_digit)(tt >> DIGIT_BIT); \
410 tt = (pstm_word)c0 + t; c0 = (pstm_digit)tt; \
411 tt = (pstm_word)c1 + (tt >> DIGIT_BIT); \
412 c1 = (pstm_digit)tt; c2 += (pstm_digit)(tt >> DIGIT_BIT); \
454 pstm_word tt; in pstm_sqr_comba_gen() local
560 pstm_word tt; in pstm_sqr_comba16() local
746 pstm_word tt; in pstm_sqr_comba32() local
Dtraceroute.c866 unsigned tt = t2p - t1p; in print_delta_ms() local
867 printf(" %u.%03u ms", tt / 1000, tt % 1000); in print_delta_ms()
/busybox-1.35.0/archival/libarchive/
Dlzo1x_c.c140 register unsigned tt = t - 18; in do_compress() local
143 while (tt > 255) { in do_compress()
144 tt -= 255; in do_compress()
147 assert(tt > 0); in do_compress()
148 *op++ = (uint8_t)(tt); in do_compress()
277 unsigned tt = t - 18; in DO_COMPRESS() local
280 while (tt > 255) { in DO_COMPRESS()
281 tt -= 255; in DO_COMPRESS()
284 assert(tt > 0); in DO_COMPRESS()
285 *op++ = (uint8_t)(tt); in DO_COMPRESS()
Dlzo1x_9x.c580 unsigned tt = t - 18; in STORE_RUN() local
583 while (tt > 255) { in STORE_RUN()
584 tt -= 255; in STORE_RUN()
587 assert(tt > 0); in STORE_RUN()
588 *op++ = tt; in STORE_RUN()
/busybox-1.35.0/util-linux/
Dscript.c57 struct termios tt, rtt; in script_main() local
118 attr_ok = tcgetattr(0, &tt); in script_main()
121 rtt = tt; in script_main()
214 tcsetattr(0, TCSAFLUSH, &tt); in script_main()
229 tcsetattr(0, TCSAFLUSH, &tt); in script_main()
/busybox-1.35.0/procps/
Dps.c313 static void format_time(char *buf, int size, unsigned long tt) in format_time() argument
326 ff = tt % 60; in format_time()
327 tt /= 60; in format_time()
328 if (tt < 60) { in format_time()
329 snprintf(buf, size+1, "%2u:%02u", (unsigned)tt, ff); in format_time()
332 ff = tt % 60; in format_time()
333 tt /= 60; in format_time()
334 if (tt < 24) { in format_time()
335 snprintf(buf, size+1, "%2uh%02u", (unsigned)tt, ff); in format_time()
338 ff = tt % 24; in format_time()
[all …]
/busybox-1.35.0/examples/var_service/
DREADME79 using "svlogd -tt". p_log and w_log scripts demonstrage how you can
195 576 0:00 svlogd -tt /var/log/service/sshd
198 568 0:00 svlogd -tt /var/log/service/dhcp_eth0
204 573 0:01 svlogd -tt /var/log/service/ntpd
207 598 0:00 svlogd -tt /var/log/service/ifplugd_wlan0
213 583 0:03 svlogd -tt /var/log/service/unscd
216 591 0:00 svlogd -tt /var/log/service/dhcp_wlan0
222 597 0:00 svlogd -tt /var/log/service/ifplugd_eth0
226 590 0:00 svlogd -tt /var/log/service/zcip_eth0
229 604 0:00 svlogd -tt /var/log/service/ftpd
[all …]
/busybox-1.35.0/editors/
Dawk.c2600 time_t tt; in exec_builtin() local
2740 tt = getvar_i(av[1]); in exec_builtin()
2742 time(&tt); in exec_builtin()
2746 localtime(&tt)); in exec_builtin()