Home
last modified time | relevance | path

Searched refs:sr2 (Results 1 – 20 of 20) sorted by relevance

/src/crypto/krb5/src/lib/krb5/krb/
H A Dpreauth_sam2.c102 krb5_sam_response_2 sr2; in sam2_process() local
303 memset(&sr2, 0, sizeof(sr2)); in sam2_process()
304 sr2.sam_type = sc2b->sam_type; in sam2_process()
305 sr2.sam_flags = sc2b->sam_flags; in sam2_process()
306 sr2.sam_track_id = sc2b->sam_track_id; in sam2_process()
307 sr2.sam_nonce = sc2b->sam_nonce; in sam2_process()
320 sr2.sam_enc_nonce_or_sad.ciphertext.length = ciph_len; in sam2_process()
322 sr2.sam_enc_nonce_or_sad.ciphertext.data = in sam2_process()
323 (char *)malloc(sr2.sam_enc_nonce_or_sad.ciphertext.length); in sam2_process()
325 if (!sr2.sam_enc_nonce_or_sad.ciphertext.data) { in sam2_process()
[all …]
H A Dkfree.c568 krb5_free_sam_response_2(krb5_context ctx, krb5_sam_response_2 *sr2) in krb5_free_sam_response_2() argument
570 if (!sr2) in krb5_free_sam_response_2()
572 krb5_free_sam_response_2_contents(ctx, sr2); in krb5_free_sam_response_2()
573 free(sr2); in krb5_free_sam_response_2()
577 krb5_free_sam_response_2_contents(krb5_context ctx, krb5_sam_response_2 *sr2) in krb5_free_sam_response_2_contents() argument
579 if (!sr2) in krb5_free_sam_response_2_contents()
581 if (sr2->sam_track_id.data) in krb5_free_sam_response_2_contents()
582 krb5_free_data_contents(ctx, &sr2->sam_track_id); in krb5_free_sam_response_2_contents()
583 if (sr2->sam_enc_nonce_or_sad.ciphertext.data) in krb5_free_sam_response_2_contents()
584 krb5_free_data_contents(ctx, &sr2->sam_enc_nonce_or_sad.ciphertext); in krb5_free_sam_response_2_contents()
/src/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dsv_sincospif_common.h50 svfloat32_t sr2 = svmul_x (pt, sr, sr); in sv_sincospif_inline() local
51 svfloat32_t sr4 = svmul_x (pt, sr2, sr2); in sv_sincospif_inline()
64 svfloat32_t sp01 = svmla_lane (sv_f32 (d->c0), sr2, c135, 0); in sv_sincospif_inline()
65 svfloat32_t sp23 = svmla_lane (sv_f32 (d->c2), sr2, c135, 1); in sv_sincospif_inline()
66 svfloat32_t sp45 = svmla_lane (sv_f32 (d->c4), sr2, c135, 2); in sv_sincospif_inline()
H A Dsv_sincospi_common.h58 svfloat64_t sr2 = svmul_x (pt, sr, sr); in sv_sincospi_inline() local
60 svfloat64_t sr4 = svmul_x (pt, sr2, sr2); in sv_sincospi_inline()
71 pt, sv_lw_pw_horner_9_f64_x (pg, sr2, sr4, &(d->c0), &(d->c1)), sr); in sv_sincospi_inline()
/src/crypto/krb5/src/plugins/preauth/securid_sam2/
H A Dgrail.c199 krb5_sam_response_2 *sr2, krb5_enc_tkt_part *enc_tkt_reply, in verify_grail_data() argument
211 if ((sr2->sam_enc_nonce_or_sad.ciphertext.data == NULL) || in verify_grail_data()
212 (sr2->sam_enc_nonce_or_sad.ciphertext.length <= 0)) in verify_grail_data()
216 sr2->sam_enc_nonce_or_sad.enctype, -1, in verify_grail_data()
217 sr2->sam_enc_nonce_or_sad.kvno, in verify_grail_data()
226 ret = alloc_data(&scratch, sr2->sam_enc_nonce_or_sad.ciphertext.length); in verify_grail_data()
230 NULL, &sr2->sam_enc_nonce_or_sad, &scratch); in verify_grail_data()
238 if (sr2->sam_nonce != esre2->sam_nonce) { in verify_grail_data()
248 ret = decrypt_track_data(context, client, &sr2->sam_track_id, in verify_grail_data()
H A Dsecurid2.c275 krb5_sam_response_2 *sr2, in verify_securid_data_2() argument
305 if ((sr2->sam_enc_nonce_or_sad.ciphertext.data == NULL) || in verify_securid_data_2()
306 (sr2->sam_enc_nonce_or_sad.ciphertext.length <= 0)) { in verify_securid_data_2()
315 sr2->sam_enc_nonce_or_sad.enctype, -1, in verify_securid_data_2()
316 sr2->sam_enc_nonce_or_sad.kvno, in verify_securid_data_2()
334 scratch.length = sr2->sam_enc_nonce_or_sad.ciphertext.length; in verify_securid_data_2()
340 &sr2->sam_enc_nonce_or_sad, &scratch); in verify_securid_data_2()
355 if (sr2->sam_nonce != esre2->sam_nonce) { in verify_securid_data_2()
396 if (sr2->sam_track_id.data && (sr2->sam_track_id.length > 0)) { in verify_securid_data_2()
401 &sr2->sam_track_id, in verify_securid_data_2()
H A Dsecurid_sam2_main.c264 krb5_sam_response_2 *sr2 = NULL; in kdc_verify_preauth() local
277 retval = decode_krb5_sam_response_2(&scratch, &sr2); in kdc_verify_preauth()
281 sr2 = NULL; in kdc_verify_preauth()
285 switch (sr2->sam_type) { in kdc_verify_preauth()
288 retval = verify_securid_data_2(context, client, sr2, enc_tkt_reply, in kdc_verify_preauth()
296 retval = verify_grail_data(context, client, sr2, enc_tkt_reply, in kdc_verify_preauth()
341 krb5_free_sam_response_2(context, sr2); in kdc_verify_preauth()
H A Dextern.h47 krb5_sam_response_2 *sr2,
57 krb5_sam_response_2 *sr2,
/src/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dv_sincospif_common.h43 float32x4_t sr2 = vmulq_f32 (sr, sr); in v_sincospif_inline() local
44 float32x4_t sr4 = vmulq_f32 (sr2, sr2); in v_sincospif_inline()
48 float32x4_t ss = vmulq_f32 (v_pw_horner_5_f32 (sr2, sr4, d->poly), sr); in v_sincospif_inline()
H A Dv_sincospi_common.h49 float64x2_t sr2 = vmulq_f64 (sr, sr); in v_sincospi_inline() local
50 float64x2_t sr4 = vmulq_f64 (sr2, sr2); in v_sincospi_inline()
54 float64x2_t ss = vmulq_f64 (v_pw_horner_9_f64 (sr2, sr4, d->poly), sr); in v_sincospi_inline()
/src/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am654-idk.dtso30 firmware-name = "ti-pruss/am65x-sr2-pru0-prueth-fw.elf",
31 "ti-pruss/am65x-sr2-rtu0-prueth-fw.elf",
32 "ti-pruss/am65x-sr2-txpru0-prueth-fw.elf",
33 "ti-pruss/am65x-sr2-pru1-prueth-fw.elf",
34 "ti-pruss/am65x-sr2-rtu1-prueth-fw.elf",
35 "ti-pruss/am65x-sr2-txpru1-prueth-fw.elf";
97 firmware-name = "ti-pruss/am65x-sr2-pru0-prueth-fw.elf",
98 "ti-pruss/am65x-sr2-rtu0-prueth-fw.elf",
99 "ti-pruss/am65x-sr2-txpru0-prueth-fw.elf",
100 "ti-pruss/am65x-sr2-pru1-prueth-fw.elf",
[all …]
H A Dk3-am654-icssg2.dtso28 firmware-name = "ti-pruss/am65x-sr2-pru0-prueth-fw.elf",
29 "ti-pruss/am65x-sr2-rtu0-prueth-fw.elf",
30 "ti-pruss/am65x-sr2-txpru0-prueth-fw.elf",
31 "ti-pruss/am65x-sr2-pru1-prueth-fw.elf",
32 "ti-pruss/am65x-sr2-rtu1-prueth-fw.elf",
33 "ti-pruss/am65x-sr2-txpru1-prueth-fw.elf";
H A Dk3-am642-phyboard-electra-rdk.dts71 firmware-name = "ti-pruss/am65x-sr2-pru0-prueth-fw.elf",
72 "ti-pruss/am65x-sr2-rtu0-prueth-fw.elf",
73 "ti-pruss/am65x-sr2-txpru0-prueth-fw.elf",
74 "ti-pruss/am65x-sr2-pru1-prueth-fw.elf",
75 "ti-pruss/am65x-sr2-rtu1-prueth-fw.elf",
76 "ti-pruss/am65x-sr2-txpru1-prueth-fw.elf";
H A Dk3-am65-iot2050-common.dtsi151 firmware-name = "ti-pruss/am65x-sr2-pru0-prueth-fw.elf",
152 "ti-pruss/am65x-sr2-rtu0-prueth-fw.elf",
153 "ti-pruss/am65x-sr2-txpru0-prueth-fw.elf",
154 "ti-pruss/am65x-sr2-pru1-prueth-fw.elf",
155 "ti-pruss/am65x-sr2-rtu1-prueth-fw.elf",
156 "ti-pruss/am65x-sr2-txpru1-prueth-fw.elf";
H A Dk3-am642-sr-som.dtsi35 firmware-name = "ti-pruss/am65x-sr2-pru0-prueth-fw.elf",
36 "ti-pruss/am65x-sr2-rtu0-prueth-fw.elf",
37 "ti-pruss/am65x-sr2-txpru0-prueth-fw.elf",
38 "ti-pruss/am65x-sr2-pru1-prueth-fw.elf",
39 "ti-pruss/am65x-sr2-rtu1-prueth-fw.elf",
40 "ti-pruss/am65x-sr2-txpru1-prueth-fw.elf";
H A Dk3-am642-evm.dts252 firmware-name = "ti-pruss/am64x-sr2-pru0-prueth-fw.elf",
253 "ti-pruss/am64x-sr2-rtu0-prueth-fw.elf",
254 "ti-pruss/am64x-sr2-txpru0-prueth-fw.elf",
255 "ti-pruss/am64x-sr2-pru1-prueth-fw.elf",
256 "ti-pruss/am64x-sr2-rtu1-prueth-fw.elf",
257 "ti-pruss/am64x-sr2-txpru1-prueth-fw.elf";
H A Dk3-am642-tqma64xxl-mbax4xxl.dts97 firmware-name = "ti-pruss/am64x-sr2-pru0-prueth-fw.elf",
98 "ti-pruss/am64x-sr2-rtu0-prueth-fw.elf",
99 "ti-pruss/am64x-sr2-txpru0-prueth-fw.elf",
100 "ti-pruss/am64x-sr2-pru1-prueth-fw.elf",
101 "ti-pruss/am64x-sr2-rtu1-prueth-fw.elf",
102 "ti-pruss/am64x-sr2-txpru1-prueth-fw.elf";
/src/sys/contrib/openzfs/module/zfs/
H A Dspace_reftree.c59 const space_ref_t *sr2 = (const space_ref_t *)x2; in space_reftree_compare() local
61 int cmp = TREE_CMP(sr1->sr_offset, sr2->sr_offset); in space_reftree_compare()
65 return (TREE_PCMP(sr1, sr2)); in space_reftree_compare()
/src/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap34xx-omap36xx-clocks.dtsi177 sr2_fck: clock-sr2-fck@7 {
/src/usr.sbin/bsnmpd/modules/snmp_wlan/
H A Dwlan_snmp.c3701 struct wlan_scan_result *sr2) in wlan_scan_compare_result() argument
3705 if (strlen(sr1->ssid) < strlen(sr2->ssid)) in wlan_scan_compare_result()
3707 if (strlen(sr1->ssid) > strlen(sr2->ssid)) in wlan_scan_compare_result()
3710 for (i = 0; i < strlen(sr1->ssid) && i < strlen(sr2->ssid); i++) { in wlan_scan_compare_result()
3711 if (sr1->ssid[i] < sr2->ssid[i]) in wlan_scan_compare_result()
3713 if (sr1->ssid[i] > sr2->ssid[i]) in wlan_scan_compare_result()
3718 if (sr1->bssid[i] < sr2->bssid[i]) in wlan_scan_compare_result()
3720 if (sr1->bssid[i] > sr2->bssid[i]) in wlan_scan_compare_result()