Home
last modified time | relevance | path

Searched refs:equal (Results 1 – 11 of 11) sorted by relevance

/xnu-12377.41.6/tests/
H A Dnet_bridge.c224 bool equal; in ip_addresses_are_equal() local
228 equal = (ip1->ifbrip_addr.s_addr == ip2->ifbrip_addr.s_addr); in ip_addresses_are_equal()
231 equal = IN6_ARE_ADDR_EQUAL(&ip1->ifbrip_addr6, in ip_addresses_are_equal()
236 equal = false; in ip_addresses_are_equal()
239 return equal; in ip_addresses_are_equal()
1809 bool equal; in validate_mac_nat() local
1812 equal = (bcmp(eh_p->ether_shost, &port->member_mac, in validate_mac_nat()
1814 if (!equal) { in validate_mac_nat()
1818 T_ASSERT_TRUE(equal, "source address match"); in validate_mac_nat()
1857 bool equal; in validate_mac_nat_arp_out() local
[all …]
/xnu-12377.41.6/iokit/DriverKit/
H A DIOUserClient.iig136 * otherwise must equal args->scalarInputCount
139 * otherwise must equal length of structureInput or structureInputDescriptor
142 * otherwise must equal args->scalarOutputCount
145 * otherwise must equal length of structureOutputMaximumSize
/xnu-12377.41.6/tools/tests/perf_index/
H A DREADME39 memory - initializes by allocating memory equal to half the RAM on the machine,
/xnu-12377.41.6/doc/allocators/
H A Dread-only.md106 equal to the size of the elements in the zone.
/xnu-12377.41.6/doc/scheduler/
H A Dsched_clutch_edge.md57 … in "starvation avoidance mode" and opens a "starvation avoidance window" equal to `thread_quantum…
227 …tric calculates the number of runnable and running threads of a higher or equal QoS that are enque…
285 …rs of various types, with the goal of ensuring those threads make roughly equal progress over time…
/xnu-12377.41.6/doc/observability/
H A Dcoalitions.md49 …r is incremented. Therefore the `cpu_time` in the task's ledger is always equal to the sum of its …
/xnu-12377.41.6/doc/primitives/
H A Datomics.md229 is equal to `expected`.
/xnu-12377.41.6/osfmk/mach/
H A Dmach_port.defs299 * than or equal to the sync value and there are no
/xnu-12377.41.6/bsd/net/
H A Dif_bridge.c5937 bool equal;
5940 equal = addr1->ip.s_addr == addr2->ip.s_addr;
5942 equal = IN6_ARE_ADDR_EQUAL(&addr1->ip6, &addr2->ip6);
5944 return equal;
H A Dpf_ioctl.c262 #error PF_QNAME_SIZE must be equal to PF_TAG_NAME_SIZE
/xnu-12377.41.6/bsd/netinet6/
H A Dnd6_rtr.c154 #define equal(a1, a2) (bcmp((caddr_t)(a1), (caddr_t)(a2), (a1)->sa_len) == 0) macro