Searched refs:t2 (Results 1 – 8 of 8) sorted by relevance
/busybox-1.35.0/testsuite/ |
D | bzcat.tests | 40 rm -f t1.$ext t2.$ext t_actual 42 hello_$ext >t2.$ext
|
D | bunzip2.tests | 487 hello_$ext >t2.$ext
|
/busybox-1.35.0/networking/ |
D | tls_sp_c32.c | 1199 sp_digit t2[8]; in sp_256_map_8() local 1203 sp_256_mont_sqr_8(t2, t1 /*, p256_mod, p256_mp_mod*/); in sp_256_map_8() 1204 sp_256_mont_mul_8(t1, t2, t1 /*, p256_mod, p256_mp_mod*/); in sp_256_map_8() 1207 sp_256_mont_mul_and_reduce_8(r->x, p->x, t2 /*, p256_mod, p256_mp_mod*/); in sp_256_map_8() 1232 sp_digit t2[8]; in sp_256_proj_point_dbl_8() local 1248 sp_256_mont_sub_8(t2, r->x, t1 /*, p256_mod*/); in sp_256_proj_point_dbl_8() 1252 sp_256_mont_mul_8(t2, t1, t2 /*, p256_mod, p256_mp_mod*/); in sp_256_proj_point_dbl_8() 1254 sp_256_mont_tpl_8(t1, t2 /*, p256_mod*/); in sp_256_proj_point_dbl_8() 1260 sp_256_mont_sqr_8(t2, r->y /*, p256_mod, p256_mp_mod*/); in sp_256_proj_point_dbl_8() 1262 sp_256_div2_8(t2 /*, p256_mod*/); in sp_256_proj_point_dbl_8() [all …]
|
D | traceroute.c | 1135 unsigned t2; in common_traceroute_main() local 1146 t2 = t1 = monotonic_us(); in common_traceroute_main() 1153 read_len = wait_for_reply(&t2, &left_ms); in common_traceroute_main() 1171 print_delta_ms(t1, t2); in common_traceroute_main()
|
D | tls_pstm.c | 1320 pstm_int q, x, y, t1, t2; in pstm_div() local 1347 if ((res = pstm_init_size(pool, &t2, 3)) != PSTM_OKAY) { in pstm_div() 1448 t2.dp[0] = (i - 2 < 0) ? 0 : x.dp[i - 2]; in pstm_div() 1449 t2.dp[1] = (i - 1 < 0) ? 0 : x.dp[i - 1]; in pstm_div() 1450 t2.dp[2] = x.dp[i]; in pstm_div() 1451 t2.used = 3; in pstm_div() 1452 } while (pstm_cmp_mag(&t1, &t2) == PSTM_GT); in pstm_div() 1519 LBL_T2:pstm_clear (&t2); in pstm_div()
|
/busybox-1.35.0/miscutils/ |
D | crond.c | 881 static void flag_starting_jobs(time_t t1, time_t t2) in flag_starting_jobs() argument 887 for (t = t1 - t1 % 60; t <= t2; t += 60) { in flag_starting_jobs() 1015 time_t t2; in crond_main() local 1064 t2 = time(NULL); in crond_main() 1073 t1 = t2; in crond_main() 1075 t2 = time(NULL); in crond_main() 1076 dt = (long)t2 - (long)t1; in crond_main() 1113 flag_starting_jobs(t1, t2); in crond_main()
|
/busybox-1.35.0/scripts/kconfig/ |
D | lkc_proto.h | 40 P(expr_compare_type,int,(enum expr_type t1, enum expr_type t2));
|
D | expr.c | 983 int expr_compare_type(enum expr_type t1, enum expr_type t2) in expr_compare_type() argument 988 if (t1 == t2) in expr_compare_type() 993 if (t2 == E_NOT) in expr_compare_type() 996 if (t2 == E_AND) in expr_compare_type() 999 if (t2 == E_OR) in expr_compare_type() 1002 if (t2 == E_CHOICE) in expr_compare_type() 1005 if (t2 == 0) in expr_compare_type() 1010 printf("[%dgt%d?]", t1, t2); in expr_compare_type()
|