Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 10 of 10) sorted by relevance

/busybox-1.35.0/networking/
Dtls_sp_c32.c1198 sp_digit t1[8]; in sp_256_map_8() local
1201 sp_256_mont_inv_8(t1, p->z); in sp_256_map_8()
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()
1214 sp_256_mont_mul_and_reduce_8(r->y, p->y, t1 /*, p256_mod, p256_mp_mod*/); in sp_256_map_8()
1231 sp_digit t1[8]; in sp_256_proj_point_dbl_8() local
1242 sp_256_mont_sqr_8(t1, r->z /*, p256_mod, p256_mp_mod*/); in sp_256_proj_point_dbl_8()
1248 sp_256_mont_sub_8(t2, r->x, t1 /*, p256_mod*/); in sp_256_proj_point_dbl_8()
1250 sp_256_mont_add_8(t1, 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()
[all …]
Dtls_pstm.c1320 pstm_int q, x, y, t1, t2; in pstm_div() local
1344 if ((res = pstm_init_size(pool, &t1, a->alloc)) != PSTM_OKAY) { in pstm_div()
1439 pstm_zero (&t1); in pstm_div()
1440 t1.dp[0] = (t - 1 < 0) ? 0 : y.dp[t - 1]; in pstm_div()
1441 t1.dp[1] = y.dp[t]; in pstm_div()
1442 t1.used = 2; in pstm_div()
1443 if ((res = pstm_mul_d (&t1, q.dp[i - t - 1], &t1)) != PSTM_OKAY) { in pstm_div()
1452 } while (pstm_cmp_mag(&t1, &t2) == PSTM_GT); in pstm_div()
1455 if ((res = pstm_mul_d(&y, q.dp[i - t - 1], &t1)) != PSTM_OKAY) { in pstm_div()
1459 if ((res = pstm_lshd(&t1, i - t - 1)) != PSTM_OKAY) { in pstm_div()
[all …]
Dtraceroute.c1134 unsigned t1; in common_traceroute_main() local
1146 t2 = t1 = monotonic_us(); in common_traceroute_main()
1171 print_delta_ms(t1, t2); in common_traceroute_main()
/busybox-1.35.0/testsuite/
Dbzcat.tests40 rm -f t1.$ext t2.$ext t_actual
41 hello_$ext >t1.$ext
Dbunzip2.tests486 hello_$ext >t1.$ext
523 prep; >t1; check "$unpack: already exists" "${bb}$unpack t1.$ext t2.$ext; echo \$?; cat t1 t2"
/busybox-1.35.0/libbb/
Dpw_encrypt_des.c557 uint32_t t0, t1; in des_setkey() local
562 t1 = (k1 << shifts) | (k1 >> (28 - shifts)); in des_setkey()
571 | comp_maskl[4][(t1 >> 21) & 0x7f] in des_setkey()
572 | comp_maskl[5][(t1 >> 14) & 0x7f] in des_setkey()
573 | comp_maskl[6][(t1 >> 7) & 0x7f] in des_setkey()
574 | comp_maskl[7][t1 & 0x7f]; in des_setkey()
583 | comp_maskr[4][(t1 >> 21) & 0x7f] in des_setkey()
584 | comp_maskr[5][(t1 >> 14) & 0x7f] in des_setkey()
585 | comp_maskr[6][(t1 >> 7) & 0x7f] in des_setkey()
586 | comp_maskr[7][t1 & 0x7f]; in des_setkey()
Dhash_md5_sha.c1257 uint64_t t1 = state[1]; in sha3_process_block72() local
1260 state[PI_LANE[x]] = rotl64(t1, ROT_CONST[x]); in sha3_process_block72()
1261 t1 = t0; in sha3_process_block72()
1271 uint64_t t1 = state[1]; in sha3_process_block72() local
1274 state[PI_LANE[x ]] = rotl64(t1, ROT_CONST[x ]); \ in sha3_process_block72()
1275 t1 = state[PI_LANE[x+1]]; \ in sha3_process_block72()
/busybox-1.35.0/miscutils/
Dcrond.c881 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()
892 if (t <= t1) in flag_starting_jobs()
1069 time_t t1; in crond_main() local
1073 t1 = t2; 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/
Dlkc_proto.h40 P(expr_compare_type,int,(enum expr_type t1, enum expr_type t2));
Dexpr.c983 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()
990 switch (t1) { in expr_compare_type()
1010 printf("[%dgt%d?]", t1, t2); in expr_compare_type()