| /netbsd-src/external/cddl/osnet/dist/common/ctf/ |
| H A D | ctf_hash.c | 102 ctf_helem_t *hep = &hp->h_chains[hp->h_free]; in ctf_hash_insert() local 120 hep->h_name = name; in ctf_hash_insert() 121 hep->h_type = type; in ctf_hash_insert() 123 hep->h_next = hp->h_buckets[h]; in ctf_hash_insert() 138 ctf_helem_t *hep = ctf_hash_lookup(hp, fp, str, strlen(str)); in ctf_hash_define() local 140 if (hep == NULL) in ctf_hash_define() 143 hep->h_type = type; in ctf_hash_define() 150 ctf_helem_t *hep; in ctf_hash_lookup() local 157 for (i = hp->h_buckets[h]; i != 0; i = hep->h_next) { in ctf_hash_lookup() 158 hep = &hp->h_chains[i]; in ctf_hash_lookup() [all …]
|
| H A D | ctf_create.c | 854 ctf_helem_t *hep = NULL; in ctf_add_struct() local 859 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_struct() 861 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_struct() 862 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_struct() 876 ctf_helem_t *hep = NULL; in ctf_add_union() local 881 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_union() 883 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_union() 884 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_union() 898 ctf_helem_t *hep = NULL; in ctf_add_enum() local 903 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_enum() [all …]
|
| H A D | ctf_open.c | 357 ctf_helem_t *hep; in init_types() local 371 if ((hep = ctf_hash_lookup(&fp->ctf_names, fp, in init_types() 377 } else if (ctf_type_encoding(fp, hep->h_type, in init_types() 383 hep->h_type = CTF_INDEX_TO_TYPE(id, child); in init_types()
|
| /netbsd-src/usr.sbin/bootp/common/ |
| H A D | trygetif.c | 32 struct hostent *hep; in main() local 44 hep = gethostbyname(argv[1]); in main() 45 if (!hep) { in main() 49 memcpy(&dst_addr, hep->h_addr, sizeof(dst_addr)); in main()
|
| /netbsd-src/usr.sbin/bootp/bootptest/ |
| H A D | bootptest.c | 136 struct hostent *hep; in main() local 251 hep = gethostbyname(servername); in main() 252 if (!hep) { in main() 256 memcpy(&sin_server.sin_addr, hep->h_addr, in main() 329 hep = gethostbyname(hostname); in main() 330 if (!hep) { in main() 334 bcopy(hep->h_addr, &bp->bp_ciaddr, hep->h_length); in main()
|
| /netbsd-src/usr.sbin/bootp/bootpgw/ |
| H A D | bootpgw.c | 142 struct hostent *hep; in main() local 206 hep = gethostbyname(myhostname); in main() 207 if (!hep) { in main() 211 bcopy(hep->h_addr, (char *)&my_ip_addr, sizeof(my_ip_addr)); in main() 329 hep = gethostbyname(servername); in main() 330 if (!hep) { in main() 334 memcpy(&serv_addr.sin_addr, hep->h_addr, in main()
|
| /netbsd-src/external/gpl3/binutils/dist/libctf/ |
| H A D | ctf-hash.c | 66 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_integer() local 68 return htab_hash_pointer (hep->key); in ctf_hash_integer() 83 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_string() local 85 return htab_hash_string (hep->key); in ctf_hash_string() 101 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_type_key() local 102 ctf_link_type_key_t *k = (ctf_link_type_key_t *) hep->key; in ctf_hash_type_key() 124 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_type_id_key() local 125 ctf_type_id_key_t *k = (ctf_type_id_key_t *) hep->key; in ctf_hash_type_id_key() 268 ctf_helem_t hep = { (void *) key, NULL, NULL }; in ctf_dynhash_remove() local 269 htab_remove_elt (hp->htab, &hep); in ctf_dynhash_remove()
|
| /netbsd-src/external/gpl3/binutils.old/dist/libctf/ |
| H A D | ctf-hash.c | 66 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_integer() local 68 return htab_hash_pointer (hep->key); in ctf_hash_integer() 83 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_string() local 85 return htab_hash_string (hep->key); in ctf_hash_string() 101 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_type_key() local 102 ctf_link_type_key_t *k = (ctf_link_type_key_t *) hep->key; in ctf_hash_type_key() 124 ctf_helem_t *hep = (ctf_helem_t *) ptr; in ctf_hash_type_id_key() local 125 ctf_type_id_key_t *k = (ctf_type_id_key_t *) hep->key; in ctf_hash_type_id_key() 268 ctf_helem_t hep = { (void *) key, NULL, NULL }; in ctf_dynhash_remove() local 269 htab_remove_elt (hp->htab, &hep); in ctf_dynhash_remove()
|
| /netbsd-src/usr.sbin/bootp/bootpd/ |
| H A D | bootpd.c | 177 struct hostent *hep; in main() local 364 hep = gethostbyname(hostname); in main() 365 if (!hep) { in main() 369 bcopy(hep->h_addr, (char *)&my_ip_addr, sizeof(my_ip_addr)); in main()
|
| /netbsd-src/external/gpl3/binutils/dist/gas/po/ |
| H A D | tr.po | 2244 msgstr "Eksik '!' eklendi: yükle/sakla çoğulu hep temel yazmaca geri yazar" 6029 " --force-long-branchs göreli dalları hep kesin hale getirir\n"
|
| /netbsd-src/external/gpl3/binutils.old/dist/gas/po/ |
| H A D | tr.po | 2244 msgstr "Eksik '!' eklendi: yükle/sakla çoğulu hep temel yazmaca geri yazar" 6029 " --force-long-branchs göreli dalları hep kesin hale getirir\n"
|
| /netbsd-src/share/dict/ |
| H A D | web2 | 84640 hep
|