Home
last modified time | relevance | path

Searched refs:id2 (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/crypto/openssl/crypto/rc4/
H A Drc4_skey.c39 register int id1, id2; in RC4_set_key() local
46 id1 = id2 = 0; in RC4_set_key()
50 id2 = (data[id1] + tmp + id2) & 0xff; \ in RC4_set_key()
52 d[(n)]=d[id2]; \ in RC4_set_key()
53 d[id2]=tmp; } in RC4_set_key()
/freebsd/crypto/heimdal/lib/krb5/
H A Dtest_cc.c102 krb5_ccache id, id2; in test_mcache() local
132 ret = krb5_cc_resolve(context, c, &id2); in test_mcache()
143 krb5_cc_destroy(context, id2); in test_mcache()
155 krb5_cc_destroy(context, id2); in test_mcache()
167 krb5_ccache id, id2; in test_init_vs_destroy() local
200 krb5_cc_destroy(context, id2); in test_init_vs_destroy()
256 krb5_ccache id, id2; in test_mcc_default() local
273 ret = krb5_cc_default(context, &id2); in test_mcc_default()
281 ret = krb5_cc_close(context, id2); in test_mcc_default()
636 krb5_ccache id1, id2; in main() local
[all …]
H A Dtest_keytab.c74 krb5_keytab id, id2, id3; in test_memory_keytab() local
94 ret = krb5_kt_resolve(context, keytab, &id2); in test_memory_keytab()
111 ret = krb5_kt_get_entry(context, id2, in test_memory_keytab()
120 ret = krb5_kt_close(context, id2); in test_memory_keytab()
/freebsd/sys/dev/wtap/plugins/
H A Dvisibility.c173 int index = l->id2/ARRAY_SIZE; in add_link()
174 int bit = l->id2 % ARRAY_SIZE; in add_link()
180 l->id1, l->id2, index, map->map[index], bit); in add_link()
190 int index = l->id2/ARRAY_SIZE; in del_link()
191 int bit = l->id2 % ARRAY_SIZE; in del_link()
227 printf("op=%d, id1=%d, id2=%d\n", l.op, l.id1, l.id2); in vis_ioctl()
H A Dvisibility_ioctl.h44 int id2; member
/freebsd/sys/dev/mii/
H A Dmiivar.h303 #define MII_OUI(id1, id2) mii_oui(id1, id2) argument
304 #define MII_MODEL(id2) (((id2) & IDR2_MODEL) >> 4) argument
305 #define MII_REV(id2) ((id2) & IDR2_REV) argument
H A Dmii.c634 mii_oui(u_int id1, u_int id2) in mii_oui() argument
638 h = (id1 << 6) | (id2 >> 10); in mii_oui()
/freebsd/contrib/libdiff/test/
H A Dexpect019.diff87 struct got_object_id *id2, const char *label1, const char *label2,
129 -got_diff_objects_as_blobs(struct got_object_id *id1, struct got_object_id *id2,
131 + struct got_object_id *id1, struct got_object_id *id2,
150 -got_diff_objects_as_trees(struct got_object_id *id1, struct got_object_id *id2,
152 + struct got_object_id *id1, struct got_object_id *id2,
161 if (id1 == NULL && id2 == NULL)
189 - struct got_object_id *id2, int diff_context, int ignore_whitespace,
191 + struct got_object_id *id1, struct got_object_id *id2,
H A Dtest019.left.txt312 err = got_object_open(&obj2, repo, id2);
417 err = got_object_open(&treeobj2, repo, id2);
594 else if (id2 == NULL)
597 if (got_object_id_cmp(id1, id2) != 0)
712 if (id1 == NULL && id2 == NULL)
720 if (id2) {
744 if (id1 == NULL && id2 == NULL)
752 if (id2) {
753 err = got_object_open_as_tree(&tree2, repo, id2);
778 if (id2 == NULL)
[all …]
H A Dtest019.right.txt355 err = got_object_open(&obj2, repo, id2);
460 err = got_object_open(&treeobj2, repo, id2);
637 else if (id2 == NULL)
640 if (got_object_id_cmp(id1, id2) != 0)
756 if (id1 == NULL && id2 == NULL)
764 if (id2) {
790 if (id1 == NULL && id2 == NULL)
798 if (id2) {
799 err = got_object_open_as_tree(&tree2, repo, id2);
837 if (id2 == NULL)
[all …]
H A Dtest020.left.txt351 err = got_object_open(&obj2, repo, id2);
456 err = got_object_open(&treeobj2, repo, id2);
633 else if (id2 == NULL)
636 if (got_object_id_cmp(id1, id2) != 0)
751 if (id1 == NULL && id2 == NULL)
759 if (id2) {
783 if (id1 == NULL && id2 == NULL)
791 if (id2) {
792 err = got_object_open_as_tree(&tree2, repo, id2);
817 if (id2 == NULL)
[all …]
H A Dtest020.right.txt386 err = got_object_open(&obj2, repo, id2);
491 err = got_object_open(&treeobj2, repo, id2);
668 else if (id2 == NULL)
671 if (got_object_id_cmp(id1, id2) != 0)
787 if (id1 == NULL && id2 == NULL)
795 if (id2) {
821 if (id1 == NULL && id2 == NULL)
829 if (id2) {
830 err = got_object_open_as_tree(&tree2, repo, id2);
868 if (id2 == NULL)
[all …]
/freebsd/crypto/heimdal/appl/login/
H A Dlogin.c153 static krb5_ccache id, id2; variable
188 krb5_cc_resolve(context, residual, &id2); in krb5_start_session()
189 ret = krb5_cc_copy_cache(context, id, id2); in krb5_start_session()
193 krb5_cc_destroy (context, id2); in krb5_start_session()
196 krb5_cc_close(context, id2); in krb5_start_session()
217 ret = krb5_cc_default(context, &id2); in krb5_get_afs_tokens()
228 krb5_afslog_uid_home (context, id2, in krb5_get_afs_tokens()
230 krb5_afslog_uid_home (context, id2, NULL, NULL, in krb5_get_afs_tokens()
232 krb5_cc_close (context, id2); in krb5_get_afs_tokens()
/freebsd/contrib/kyua/store/
H A Dlayout_test.cpp135 const std::string id2 = layout::test_suite_for_path(dir2); in ATF_TEST_CASE_BODY() local
136 const std::string base2 = (store_dir / ("results." + id2 + ".")).str(); in ATF_TEST_CASE_BODY()
144 layout::find_results(id2).str()); in ATF_TEST_CASE_BODY()
169 const std::string id2 = layout::test_suite_for_path(dir2); in ATF_TEST_CASE_BODY() local
170 const std::string base2 = (store_dir / ("results." + id2 + ".")).str(); in ATF_TEST_CASE_BODY()
187 layout::find_results(id2 + ".20140615-111111-000000").str()); in ATF_TEST_CASE_BODY()
/freebsd/tools/tools/wtap/vis_map/
H A Dvis_map.c97 l.id2 = atoi(argv[3]); in main()
107 l.id2 = atoi(argv[3]); in main()
/freebsd/sys/dev/iicbus/pmic/
H A Dfan53555.c334 uint8_t id1, id2; in fan53555_reg_attach() local
347 if (fan53555_read(sc->dev, FAN53555_ID2, &id2) != 0) { in fan53555_reg_attach()
351 dprintf(sc, "Device ID1: 0x%02X, ID2: 0x%02X\n", id1, id2); in fan53555_reg_attach()
354 FAN53555_ID2_DIE_REV(id2)); in fan53555_reg_attach()
358 id1, id2); in fan53555_reg_attach()
/freebsd/crypto/openssl/apps/
H A Dciphers.c256 int id2 = (int)((id >> 8) & 0xffL); in ciphers_main() local
260 BIO_printf(bio_out, " 0x%02X,0x%02X - ", id2, id3); /* SSL3 in ciphers_main()
263 … BIO_printf(bio_out, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */ in ciphers_main()
/freebsd/sys/dev/etherswitch/ar40xx/
H A Dar40xx_phy.c241 uint32_t id1, id2; in ar40xx_hw_phy_get_ids() local
245 id2 = MDIO_READREG(sc->sc_mdio_dev, phy, 3); in ar40xx_hw_phy_get_ids()
248 __func__, phy, id1, id2); in ar40xx_hw_phy_get_ids()
/freebsd/sys/netpfil/ipfw/
H A Dip_dummynet.c298 if (IS_IP6_FLOW_ID(id2)) in flow_id_cmp()
302 id1->src_ip == id2->src_ip && in flow_id_cmp()
305 id1->proto == id2->proto && in flow_id_cmp()
312 id1->dst_port == id2->dst_port && in flow_id_cmp()
313 id1->src_port == id2->src_port && in flow_id_cmp()
314 id1->proto == id2->proto && in flow_id_cmp()
315 id1->extra == id2->extra && in flow_id_cmp()
338 struct ipfw_flow_id *id2; in q_match() local
344 id2 = (struct ipfw_flow_id *)key; in q_match()
504 struct ipfw_flow_id *id2; in si_match() local
[all …]
/freebsd/sys/dev/atkbdc/
H A Datkbd.c1551 int id1, id2; in get_kbd_id() local
1554 id1 = id2 = -1; in get_kbd_id()
1561 id2 = read_kbd_data(kbdc); in get_kbd_id()
1563 if ((id1 == -1) || (id2 == -1)) { in get_kbd_id()
1569 return ((id2 << 8) | id1); in get_kbd_id()
/freebsd/sys/compat/freebsd32/
H A Dfreebsd32_proto.h229 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
476 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
483 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
490 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
498 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
573 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
598 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
659 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
668 char id2_l_[PADL_(uint32_t)]; uint32_t id2; char id2_r_[PADR_(uint32_t)]; member
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dpumpkin-common.dtsi114 hw-id2-hog {
/freebsd/crypto/openssh/
H A Dsshconnect2.c1669 struct identity *id, *id2, *tmp; in pubkey_prepare() local
1772 TAILQ_FOREACH(id2, &files, next) { in pubkey_prepare()
1773 if (id2->key == NULL || in pubkey_prepare()
1774 (id2->key->flags & SSHKEY_FLAG_EXT) != 0) in pubkey_prepare()
1776 if (sshkey_equal(id->key, id2->key)) { in pubkey_prepare()
1792 TAILQ_FOREACH_SAFE(id, preferred, next, id2) { in pubkey_prepare()
1819 TAILQ_FOREACH_SAFE(id, preferred, next, id2) { in pubkey_prepare()
/freebsd/sbin/camcontrol/
H A Dpersist.c437 struct persist_transport_id *id, *id2; in scsipersist() local
950 STAILQ_FOREACH_SAFE(id, &transport_id_list, links, id2) { in scsipersist()
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ddr/
H A Djedec,lpddr2.yaml41 revision-id2:

12