| /freebsd-11-stable/sys/net/ |
| HD | pfvar.h | 60 u_int32_t addr32[4]; member 66 #define addr32 pfa.addr32 macro 200 ((c == AF_INET && (a)->addr32[0] == (b)->addr32[0]) || \ 201 (c == AF_INET6 && (a)->addr32[3] == (b)->addr32[3] && \ 202 (a)->addr32[2] == (b)->addr32[2] && \ 203 (a)->addr32[1] == (b)->addr32[1] && \ 204 (a)->addr32[0] == (b)->addr32[0])) \ 207 ((c == AF_INET && (a)->addr32[0] != (b)->addr32[0]) || \ 208 (c == AF_INET6 && ((a)->addr32[0] != (b)->addr32[0] || \ 209 (a)->addr32[1] != (b)->addr32[1] || \ [all …]
|
| /freebsd-11-stable/sys/netpfil/pf/ |
| HD | pf_lb.c | 92 a += inaddr->addr32[0]; in pf_hash() 95 hash->addr32[0] = c + key->key32[2]; in pf_hash() 100 a += inaddr->addr32[0]; in pf_hash() 101 b += inaddr->addr32[2]; in pf_hash() 103 hash->addr32[0] = c; in pf_hash() 104 a += inaddr->addr32[1]; in pf_hash() 105 b += inaddr->addr32[3]; in pf_hash() 108 hash->addr32[1] = c; in pf_hash() 109 a += inaddr->addr32[2]; in pf_hash() 110 b += inaddr->addr32[1]; in pf_hash() [all …]
|
| HD | pf.c | 387 if (a->addr32[0] > b->addr32[0]) in pf_addr_cmp() 389 if (a->addr32[0] < b->addr32[0]) in pf_addr_cmp() 395 if (a->addr32[3] > b->addr32[3]) in pf_addr_cmp() 397 if (a->addr32[3] < b->addr32[3]) in pf_addr_cmp() 399 if (a->addr32[2] > b->addr32[2]) in pf_addr_cmp() 401 if (a->addr32[2] < b->addr32[2]) in pf_addr_cmp() 403 if (a->addr32[1] > b->addr32[1]) in pf_addr_cmp() 405 if (a->addr32[1] < b->addr32[1]) in pf_addr_cmp() 407 if (a->addr32[0] > b->addr32[0]) in pf_addr_cmp() 409 if (a->addr32[0] < b->addr32[0]) in pf_addr_cmp() [all …]
|
| HD | pf_if.c | 800 while (j < 4 && m->addr32[j] == 0xffffffff) { in pfi_unmask() 805 tmp = ntohl(m->addr32[j]); in pfi_unmask()
|
| HD | pf_table.c | 130 .addr32 = { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff } 2057 sin.sin_addr.s_addr = a->addr32[0]; in pfr_match_addr() 2108 sin.sin_addr.s_addr = a->addr32[0]; in pfr_update_stats()
|
| HD | pf_ioctl.c | 809 PF_MD5_UPD(pfr, addr.v.a.addr.addr32); in pf_hash_rule_addr() 810 PF_MD5_UPD(pfr, addr.v.a.mask.addr32); in pf_hash_rule_addr()
|
| /freebsd-11-stable/crypto/openssh/ |
| HD | addrmatch.c | 41 u_int32_t addr32[4]; member 47 #define addr32 xa.addr32 macro 135 n->addr32[i] = 0xffffffffU; in addr_netmask() 137 n->addr32[i] = htonl((0xffffffff << (32 - l)) & in addr_netmask() 165 dst->addr32[i] &= b->addr32[i]; in addr_and() 247 n->addr32[i] = ~n->addr32[i]; in addr_invert() 281 if (a->addr32[i] != 0) in addr_is_all0s()
|
| /freebsd-11-stable/sbin/pfctl/ |
| HD | pfctl_optimize.c | 1086 (a->dst.addr.v.a.addr.addr32[0] == 0 && in skip_cmp_dst_addr() 1087 a->dst.addr.v.a.addr.addr32[1] == 0 && in skip_cmp_dst_addr() 1088 a->dst.addr.v.a.addr.addr32[2] == 0 && in skip_cmp_dst_addr() 1089 a->dst.addr.v.a.addr.addr32[3] == 0)) in skip_cmp_dst_addr() 1158 (a->src.addr.v.a.addr.addr32[0] == 0 && in skip_cmp_src_addr() 1159 a->src.addr.v.a.addr.addr32[1] == 0 && in skip_cmp_src_addr() 1160 a->src.addr.v.a.addr.addr32[2] == 0 && in skip_cmp_src_addr() 1161 a->src.addr.v.a.addr.addr32[3] == 0)) in skip_cmp_src_addr() 1569 !sub->src.neg && super->src.addr.v.a.mask.addr32[0] == 0 && in exclude_supersets() 1570 super->src.addr.v.a.mask.addr32[1] == 0 && in exclude_supersets() [all …]
|
| HD | pfctl_parser.c | 631 aw.v.a.mask.addr32[0] = 0xffffffff; in print_src_node() 1116 m->addr32[j++] = 0xffffffff; in set_ipmask() 1120 m->addr32[j] |= (1 << i); in set_ipmask() 1122 m->addr32[j] = htonl(m->addr32[j]); in set_ipmask() 1128 n->addr32[i] = n->addr32[i] & m->addr32[i]; in set_ipmask() 1147 (m->addr32[1] || m->addr32[2] || m->addr32[3])) { in check_netmask() 1560 h->addr.v.a.addr.addr32[0] = ina.s_addr; in host_v4() 1719 addr.pfra_ip4addr.s_addr = n->addr.v.a.addr.addr32[0]; in append_addr_host()
|
| HD | pf_print_state.c | 182 aw.v.a.mask.addr32[0] = 0xffffffff; in print_host() 367 while (j < 4 && m->addr32[j] == 0xffffffff) { in unmask() 372 tmp = ntohl(m->addr32[j]); in unmask()
|
| /freebsd-11-stable/sys/dev/vxge/vxgehal/ |
| HD | vxgehal-mgmt.c | 207 u32 addr32; in vxge_hal_mgmt_msi_capabilities_get() local 256 4, &addr32); in vxge_hal_mgmt_msi_capabilities_get() 258 msi_cap->address = ((u64) addr32) << 32; in vxge_hal_mgmt_msi_capabilities_get() 265 4, &addr32); in vxge_hal_mgmt_msi_capabilities_get() 267 msi_cap->address |= (u64) addr32; in vxge_hal_mgmt_msi_capabilities_get() 295 4, &addr32); in vxge_hal_mgmt_msi_capabilities_get() 297 msi_cap->address = ((u64) addr32) << 32; in vxge_hal_mgmt_msi_capabilities_get() 304 4, &addr32); in vxge_hal_mgmt_msi_capabilities_get() 306 msi_cap->address |= (u64) addr32; in vxge_hal_mgmt_msi_capabilities_get() 323 4, &addr32); in vxge_hal_mgmt_msi_capabilities_get() [all …]
|
| /freebsd-11-stable/sys/contrib/octeon-sdk/ |
| HD | cvmx-sriomaintx-defs.h | 3145 uint32_t addr32 : 18; /**< SRIO Address 31:14 */ member 3153 uint32_t addr32 : 18; 3225 uint32_t addr32 : 12; /**< SRIO Address 31:20 member 3264 uint32_t addr32 : 12; 3270 uint32_t addr32 : 12; /**< SRIO Address 31:20 member 3312 uint32_t addr32 : 12;
|
| /freebsd-11-stable/contrib/binutils/gas/doc/ |
| HD | c-i386.texi | 422 while @samp{data32} and @samp{addr32} change 16-bit ones (in a 429 addr32 jmpl *(%ebx)
|
| /freebsd-11-stable/contrib/ntp/ntpd/ |
| HD | ntp_control.c | 1812 u_int32 addr32, in ctl_putadr() argument 1819 cq = numtoa(addr32); in ctl_putadr()
|
| /freebsd-11-stable/contrib/binutils/opcodes/po/ |
| HD | opcodes.pot | 424 msgid " addr32 Assume 32bit address size\n"
|
| /freebsd-11-stable/sys/dev/bxe/ |
| HD | bxe_elink.c | 8845 uint16_t addr32; in elink_warpcore_read_sfp_module_eeprom() local 8855 addr32 = addr & (~0x3); in elink_warpcore_read_sfp_module_eeprom() 8865 rc = elink_bsc_read(sc, dev_addr, addr32, 0, byte_cnt, in elink_warpcore_read_sfp_module_eeprom() 8870 for (i = (addr - addr32); i < byte_cnt + (addr - addr32); i++) { in elink_warpcore_read_sfp_module_eeprom()
|
| /freebsd-11-stable/contrib/binutils/include/opcode/ |
| HD | ChangeLog-9103 | 1531 bit form of ljmp. Add IsPrefix modifier to prefixes. Add addr32,
|
| /freebsd-11-stable/contrib/binutils/opcodes/ |
| HD | i386-opc.tbl | 764 addr32, 0, 0x67, None, Cpu386, Size32|IgnoreSize|No_bSuf|No_wSuf|No_lSuf|No_sSuf|No_qSuf|No_xSuf|Is…
|
| HD | ChangeLog-9297 | 514 * i386-dis.c (print_insn_x86): print addr32 prefix when given
|
| /freebsd-11-stable/contrib/binutils/gas/ |
| HD | ChangeLog-9899 | 3390 * config/tc-i386.c: Likewise. Add code to reject addr32/data32 in
|
| HD | ChangeLog-9295 | 7150 * config/tc-alpha.c (addr32): New static variable. 7152 (load_symbol_address): If addr32 is set, use ldl instead of ldq.
|
| /freebsd-11-stable/contrib/binutils/binutils/doc/ |
| HD | binutils.texi | 1812 intel syntax mode and AT&T syntax mode. @option{addr64}, @option{addr32},
|