Home
last modified time | relevance | path

Searched refs:id2 (Results 1 – 25 of 28) 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()
136 ret = krb5_cc_get_principal(context, id2, &p2); in test_mcache()
143 krb5_cc_destroy(context, id2); in test_mcache()
147 ret = krb5_cc_resolve(context, c, &id2); in test_mcache()
151 ret = krb5_cc_get_principal(context, id2, &p2); in test_mcache()
155 krb5_cc_destroy(context, id2); in test_mcache()
167 krb5_ccache id, id2; in test_init_vs_destroy() local
185 ret = krb5_cc_resolve(context, n, &id2); in test_init_vs_destroy()
192 ret = krb5_cc_initialize(context, id2, p); in test_init_vs_destroy()
[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.c631 mii_oui(u_int id1, u_int id2) in mii_oui() argument
635 h = (id1 << 6) | (id2 >> 10); in mii_oui()
/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/etherswitch/ar40xx/
H A Dar40xx_phy.c233 uint32_t id1, id2; in ar40xx_hw_phy_get_ids() local
237 id2 = MDIO_READREG(sc->sc_mdio_dev, phy, 3); in ar40xx_hw_phy_get_ids()
240 __func__, phy, id1, id2); in ar40xx_hw_phy_get_ids()
/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/netpfil/ipfw/
H A Dip_dummynet.c293 flow_id_cmp(struct ipfw_flow_id *id1, struct ipfw_flow_id *id2) in flow_id_cmp() argument
298 if (IS_IP6_FLOW_ID(id2)) in flow_id_cmp()
301 return (id1->dst_ip == id2->dst_ip && in flow_id_cmp()
302 id1->src_ip == id2->src_ip && in flow_id_cmp()
303 id1->dst_port == id2->dst_port && in flow_id_cmp()
304 id1->src_port == id2->src_port && in flow_id_cmp()
305 id1->proto == id2->proto && in flow_id_cmp()
306 id1->extra == id2->extra) ? 0 : 1; in flow_id_cmp()
310 !bcmp(&id1->dst_ip6,&id2->dst_ip6, sizeof(id1->dst_ip6)) && in flow_id_cmp()
311 !bcmp(&id1->src_ip6,&id2->src_ip6, sizeof(id1->src_ip6)) && in flow_id_cmp()
[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
H A Dfreebsd32_systrace_args.c1221 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
2462 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
2473 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
2484 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
2496 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
2855 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
2968 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
3110 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
3123 uarg[a++] = p->id2; /* uint32_t */ in systrace_args()
/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/sys/contrib/device-tree/src/arm64/mediatek/
H A Dpumpkin-common.dtsi114 hw-id2-hog {
/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/src/arm/aspeed/
H A Daspeed-bmc-asrock-x570d4u.dts90 "input-id2-n", "input-aux-smb-alert-n", "",
/freebsd/sys/dev/hptmv/
H A Dgui_lib.c1366 DEVICEID id1,id2; in hpt_default_ioctl() local
1368 id2 = ((PHPT_ADD_DISK_TO_ARRAY)lpInBuffer)->idDisk; in hpt_default_ioctl()
1373 if(hpt_add_disk_to_array(_VBUS_P id1, id2)) in hpt_default_ioctl()
/freebsd/sys/dev/iscsi/
H A Discsi.c2077 unsigned int id2, const struct iscsi_session_conf *c2) in iscsi_session_conf_matches() argument
2080 if (id2 != 0 && id2 != id1) in iscsi_session_conf_matches()
/freebsd/sys/dev/xen/netback/
H A Dnetback_unit_tests.c1892 uint16_t id2 = 37; in xnb_rxpkt2rsp_2slots() local
1918 req->id = id2; in xnb_rxpkt2rsp_2slots()
1940 XNB_ASSERT(rsp->id == id2); in xnb_rxpkt2rsp_2slots()
/freebsd/sys/net/
H A Dbridgestp.c2030 bstp_same_bridgeid(uint64_t id1, uint64_t id2) in bstp_same_bridgeid() argument
2036 PV2ADDR(id2, addr2); in bstp_same_bridgeid()

12