Home
last modified time | relevance | path

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

12

/netbsd/src/sys/arch/evbmips/rasoc/
Dmachdep.c118 char id1[5], id2[5]; in mach_init() local
122 memcpy(id2, &tmp2, sizeof(tmp2)); in mach_init()
123 id2[4] = id1[4] = '\0'; in mach_init()
124 if (id2[2] == ' ') { in mach_init()
125 id2[2] = '\0'; in mach_init()
126 } else if (id2[3] == ' ') { in mach_init()
127 id2[3] = '\0'; in mach_init()
129 id2[4] = '\0'; in mach_init()
131 cpu_setmodel("%s%s", id1, id2); in mach_init()
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/rc4/
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()
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/krb5/
Dtest_cc.c104 krb5_ccache id, id2; in test_mcache() local
134 ret = krb5_cc_resolve(context, c, &id2); in test_mcache()
138 ret = krb5_cc_get_principal(context, id2, &p2); in test_mcache()
145 krb5_cc_destroy(context, id2); in test_mcache()
149 ret = krb5_cc_resolve(context, c, &id2); in test_mcache()
153 ret = krb5_cc_get_principal(context, id2, &p2); in test_mcache()
157 krb5_cc_destroy(context, id2); in test_mcache()
169 krb5_ccache id, id2; in test_init_vs_destroy() local
187 ret = krb5_cc_resolve(context, n, &id2); in test_init_vs_destroy()
194 ret = krb5_cc_initialize(context, id2, p); in test_init_vs_destroy()
[all …]
Dtest_keytab.c76 krb5_keytab id, id2, id3; in test_memory_keytab() local
96 ret = krb5_kt_resolve(context, keytab, &id2); in test_memory_keytab()
113 ret = krb5_kt_get_entry(context, id2, in test_memory_keytab()
122 ret = krb5_kt_close(context, id2); in test_memory_keytab()
/netbsd/src/lib/libterminfo/
Dtermcap.c81 tgetflag(const char *id2) in tgetflag() argument
86 const char id[] = { id2[0], id2[0] ? id2[1] : '\0', '\0' }; in tgetflag()
105 tgetnum(const char *id2) in tgetnum() argument
111 const char id[] = { id2[0], id2[0] ? id2[1] : '\0', '\0' }; in tgetnum()
137 tgetstr(const char *id2, char **area) in tgetstr() argument
143 const char id[] = { id2[0], id2[0] ? id2[1] : '\0', '\0' }; in tgetstr()
/netbsd/src/sys/dev/mii/
Dmiivar.h354 #define MII_OUI(id1, id2) mii_oui(id1, id2) argument
355 #define MII_MODEL(id2) (((id2) & IDR2_MODEL) >> 4) argument
356 #define MII_REV(id2) ((id2) & IDR2_REV) argument
Dmii.c400 mii_oui(uint16_t id1, uint16_t id2) in mii_oui() argument
404 h = (id1 << 6) | (id2 >> 10); in mii_oui()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
Dnon-stop.c58 int *id2 = malloc (sizeof (int)); in create_thread() local
59 *id2 = id; in create_thread()
61 if (pthread_create (&tid, NULL, worker, (void *) id2)) in create_thread()
/netbsd/src/external/gpl3/gdb/dist/sim/m32r/
Dmloop2.in54 SCACHE *sc1, const IDESC *id1, SCACHE *sc2, const IDESC *id2)
63 #if 0 /* not currently needed for id2 since results written directly */
65 id2 = id2->par_idesc;
67 @cpu@_fill_argbuf (current_cpu, abuf, id2, pc + 2, 0);
102 const IDESC *id,*id2;
114 id2 = emit_16 (current_cpu, pc + 2, insn & 0x7fff, sc + 1, fast_p, 0);
122 emit_par_finish (current_cpu, pc, sc + 2, sc, id, sc + 1, id2);
131 const IDESC *id,*id2;
148 id2 = emit_16 (current_cpu, pc + 2, insn & 0x7fff, sc + 3, 0, 0);
157 emit_par_finish (current_cpu, pc, sc + 4, sc + 1, id, sc + 3, id2);
Dmloopx.in54 SCACHE *sc1, const IDESC *id1, SCACHE *sc2, const IDESC *id2)
63 #if 0 /* not currently needed for id2 since results written directly */
65 id2 = id2->par_idesc;
67 @cpu@_fill_argbuf (current_cpu, abuf, id2, pc + 2, 0);
102 const IDESC *id,*id2;
114 id2 = emit_16 (current_cpu, pc + 2, insn & 0x7fff, sc + 1, fast_p, 0);
122 emit_par_finish (current_cpu, pc, sc + 2, sc, id, sc + 1, id2);
131 const IDESC *id,*id2;
148 id2 = emit_16 (current_cpu, pc + 2, insn & 0x7fff, sc + 3, 0, 0);
157 emit_par_finish (current_cpu, pc, sc + 4, sc + 1, id, sc + 3, id2);
/netbsd/src/external/bsd/openldap/dist/servers/slapd/
Dmods.c209 int *id2 = NULL; in modify_delete_vindex() local
242 id2 = ch_malloc( mod->sm_numvals * sizeof( int )); in modify_delete_vindex()
243 idx = id2; in modify_delete_vindex()
365 if ( id2 ) in modify_delete_vindex()
366 ch_free( id2 ); in modify_delete_vindex()
/netbsd/src/crypto/external/bsd/openssl/dist/apps/
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()
/netbsd/src/external/cddl/osnet/dev/cyclic/
Dcyclic_test.c168 cyclic_id_t id2; in cyclic_test_003() local
191 id2 = cyclic_add(&hdlr, &when); in cyclic_test_003()
205 cyclic_remove(id2); in cyclic_test_003()
/netbsd/src/sys/arch/arm/gemini/
Dgemini_lpc.c73 uint8_t id1, id2, vers, clk, susp; in gemini_lpc_attach() local
94 id2 = it8712_pnp_read(sc, GEMINI_LPC_LDN_ALL, IT8712_CHIPID2); in gemini_lpc_attach()
102 device_xname(self), id1, id2, vers); in gemini_lpc_attach()
/netbsd/src/external/bsd/kyua-cli/dist/store/
Dtransaction_test.cpp186 int64_t id1, id2, id3; in ATF_TEST_CASE_BODY() local
193 id2 = tx.put_action(exp_action2, context2_id); in ATF_TEST_CASE_BODY()
199 const engine::action action2 = tx.get_action(id2); in ATF_TEST_CASE_BODY()
391 int64_t id2; in ATF_TEST_CASE_BODY() local
397 id2 = tx.put_action(exp_action2, context2_id); in ATF_TEST_CASE_BODY()
406 ATF_REQUIRE(id2 == latest_action.first); in ATF_TEST_CASE_BODY()
463 int64_t id1, id2, id3; in ATF_TEST_CASE_BODY() local
468 id2 = tx.put_context(exp_context2); in ATF_TEST_CASE_BODY()
474 const engine::context context2 = tx.get_context(id2); in ATF_TEST_CASE_BODY()
/netbsd/src/sys/kern/
Dsys_pset.c425 id_t id1, id2; in sys__pset_bind() local
453 id2 = SCARG(uap, second_id); in sys__pset_bind()
478 pid = (id2 == P_MYID) ? p->p_pid : id2; in sys__pset_bind()
/netbsd/src/external/gpl3/gdb/dist/gdb/
Ddummy-frame.c47 struct dummy_frame_id *id2) in dummy_frame_id_eq() argument
49 return id1->id == id2->id && id1->thread == id2->thread; in dummy_frame_id_eq()
/netbsd/src/external/bsd/openldap/dist/servers/slapd/back-ndb/
Dmodify.cpp45 int *id2 = NULL; in ndb_modify_delete() local
83 id2 = (int *)ch_malloc( mod->sm_numvals * sizeof( int )); in ndb_modify_delete()
84 idx = id2; in ndb_modify_delete()
195 if ( id2 ) in ndb_modify_delete()
196 ch_free( id2 ); in ndb_modify_delete()
/netbsd/src/sys/dev/pci/
Dif_tlp_pci.c1238 uint16_t id1, id2, ei; in tlp_pci_smc_21040_quirks() local
1243 id2 = sc->sc_srom[0x62] | (sc->sc_srom[0x63] << 8); in tlp_pci_smc_21040_quirks()
1261 if (id2 == 0x15) { in tlp_pci_smc_21040_quirks()
1540 uint16_t id1, id2; in tlp_pci_adaptec_quirks() local
1577 id2 = TULIP_ROM_GETW(srom, 2); in tlp_pci_adaptec_quirks()
1582 switch (id2) { in tlp_pci_adaptec_quirks()
1604 device_xname(sc->sc_dev), id1, id2); in tlp_pci_adaptec_quirks()
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dmangle.cc4155 tree id2 = NULL_TREE; in mangle_decl() local
4165 id2 = mangle_decl_string (decl); in mangle_decl()
4166 id2 = targetm.mangle_decl_assembler_name (decl, id2); in mangle_decl()
4169 if (id2 != id) in mangle_decl()
4170 note_mangling_alias (decl, id2); in mangle_decl()
4178 || id2 == NULL_TREE) in mangle_decl()
4181 id2 = mangle_decl_string (decl); in mangle_decl()
4182 id2 = targetm.mangle_decl_assembler_name (decl, id2); in mangle_decl()
4186 if (id2 == id) in mangle_decl()
4193 G.entity, fabi_version, warn_abi_version, id2, in mangle_decl()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dira-conflicts.cc67 int id1, id2; in record_object_conflict() local
79 id2 = OBJECT_CONFLICT_ID (obj2); in record_object_conflict()
81 SET_MINMAX_SET_BIT (conflicts[id1], id2, OBJECT_MIN (obj1), in record_object_conflict()
83 SET_MINMAX_SET_BIT (conflicts[id2], id1, OBJECT_MIN (obj2), in record_object_conflict()
Dhash-traits.h233 string_hash::equal (const char *id1, const char *id2) in equal() argument
235 return strcmp (id1, id2) == 0; in equal()
/netbsd/src/external/gpl3/binutils/dist/ld/
Dpe-dll.c2099 asection *id2, *id5, *id4; in make_head() local
2122 id2 = quick_section (abfd, ".idata$2", SEC_HAS_CONTENTS, 2); in make_head()
2125 quick_symbol (abfd, U ("_head_"), dll_symname, "", id2, BSF_GLOBAL, 0); in make_head()
2134 bfd_set_section_size (id2, 20); in make_head()
2136 id2->contents = d2; in make_head()
2143 save_relocs (id2); in make_head()
2162 bfd_set_section_contents (abfd, id2, d2, 0, 20); in make_head()
2662 asection *id2; in make_import_fixup_entry() local
2685 id2 = quick_section (abfd, ".idata$2", SEC_HAS_CONTENTS, 2); in make_import_fixup_entry()
2691 bfd_set_section_size (id2, 20); in make_import_fixup_entry()
[all …]
/netbsd/src/sys/ufs/ufs/
Dufs_quota2.c841 id_t id2; in quota2_fetch_quotaval() local
865 q2e_to_quotaval(&q2e, 0, &id2, qk->qk_objtype, ret); in quota2_fetch_quotaval()
866 KASSERT(id2 == qk->qk_id); in quota2_fetch_quotaval()
879 id_t id2; in quota2_handle_cmd_get() local
906 q2e_to_quotaval(&q2e, qk->qk_id == QUOTA_DEFAULTID, &id2, in quota2_handle_cmd_get()
908 (void)id2; in quota2_handle_cmd_get()
/netbsd/src/sys/ufs/lfs/
Dulfs_quota2.c836 id_t id2; in quota2_fetch_quotaval() local
860 q2e_to_quotaval(&q2e, 0, &id2, qk->qk_objtype, ret); in quota2_fetch_quotaval()
861 KASSERT(id2 == qk->qk_id); in quota2_fetch_quotaval()
875 id_t id2; in lfsquota2_handle_cmd_get() local
902 q2e_to_quotaval(&q2e, qk->qk_id == QUOTA_DEFAULTID, &id2, in lfsquota2_handle_cmd_get()
904 (void)id2; in lfsquota2_handle_cmd_get()

12