Home
last modified time | relevance | path

Searched refs:num_addrs (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/heimdal/lib/roken/
H A Droken_gethostby.c193 int num_addrs = 0; in roken_gethostby() local
200 while((p = strtok_r(NULL, " \t\r\n", &foo)) && num_addrs < MAX_ADDRS) { in roken_gethostby()
204 addr_list[num_addrs] = &addrs[num_addrs * 4]; in roken_gethostby()
205 addrs[num_addrs * 4 + 0] = (ip.s_addr >> 24) & 0xff; in roken_gethostby()
206 addrs[num_addrs * 4 + 1] = (ip.s_addr >> 16) & 0xff; in roken_gethostby()
207 addrs[num_addrs * 4 + 2] = (ip.s_addr >> 8) & 0xff; in roken_gethostby()
208 addrs[num_addrs * 4 + 3] = (ip.s_addr >> 0) & 0xff; in roken_gethostby()
209 addr_list[++num_addrs] = NULL; in roken_gethostby()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DMIMGInstructions.td260 class MIMGNSAHelper<int num_addrs,
261 list<RegisterClass> addr_types=!listsplat(VGPR_32, num_addrs)>
263 list<string> AddrAsmNames = !foreach(i, !range(num_addrs), "vaddr" # i);
267 let NSA = !if(!le(num_addrs, 1), ?,
268 !if(!le(num_addrs, 5), 1,
269 !if(!le(num_addrs, 9), 2,
270 !if(!le(num_addrs, 13), 3, ?))));
273 class PartialNSAHelper<int num_addrs, int max_addr, RegisterClass LastAddrRC>
277 !if(!ge(num_addrs, max_addr),
279 !listsplat(VGPR_32, num_addrs));
[all …]
/freebsd/crypto/heimdal/lib/krb5/
H A Daddr_families.c806 static int num_addrs = sizeof(at) / sizeof(at[0]); variable
819 for (a = at; a < at + num_addrs; ++a) in find_af()
830 for (a = at; a < at + num_addrs; ++a) in find_atype()
954 for(a = at; a < at + num_addrs; ++a) in krb5_max_sockaddr_size()
1169 for(i = 0; i < num_addrs; i++) { in krb5_parse_address()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h1303 void init(int num_addrs) { in init() argument
1334 numPerLevel[1] = num_addrs / maxLeaves; in init()
1335 if (num_addrs % maxLeaves) in init()
1339 base_num_threads = num_addrs; in init()
1347 branch = num_addrs / maxLeaves; in init()
/freebsd/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_snmp.h178 int32_t num_addrs; /* Current # of addresses in cache. */ member
H A Dbridge_if.c481 bif->num_addrs = bridge_update_addrs(bif); in bridge_update_all_addrs()
520 bif->num_addrs = bridge_update_addrs(bif); in bridge_update_all()
602 (bif->num_addrs = bridge_getinfo_bif_addrs(bif)) < 0) { in bridge_attach_newif()
H A Dbridge_addrs.c319 syslog(LOG_ERR, "Addresses count - %d", bif->num_addrs); in bridge_addrs_dump()