Home
last modified time | relevance | path

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

/xnu-11215/libkern/c++/
H A Dpriority_queue.cpp52 compare(queue_t que, entry_t a, entry_t b);
58 compare(queue_t que, priority_queue_entry_t e1, priority_queue_entry_t e2) in compare() function
67 compare(queue_t que __unused, in compare() function
77 compare(queue_t que __unused, in compare() function
87 compare(queue_t que __unused, in compare() function
152 return entry_traits::compare(que, subtree_a, subtree_b) > 0; in merge_parent_is_subtree_b()
154 return entry_traits::compare(que, subtree_a, subtree_b) < 0; in merge_parent_is_subtree_b()
H A DOSDictionary.cpp64 OSDictionary::dictEntry::compare(const void *_e1, const void *_e2) in compare() function in OSDictionary::dictEntry
80 &OSDictionary::dictEntry::compare); in sortBySymbol()
/xnu-11215/bsd/conf/
H A DMakefile.template316 dest6.o_CWARNFLAGS_ADD += -Wno-sign-compare
317 dhcp_options.o_CWARNFLAGS_ADD += -Wno-sign-compare
318 esp_chachapoly.o_CWARNFLAGS_ADD += -Wno-sign-compare
319 frag6.o_CWARNFLAGS_ADD += -Wno-sign-compare
320 in6.o_CWARNFLAGS_ADD += -Wno-sign-compare
321 in6_cksum.o_CWARNFLAGS_ADD += -Wno-sign-compare
322 in6_proto.o_CWARNFLAGS_ADD += -Wno-sign-compare
323 radix.o_CWARNFLAGS_ADD += -Wno-sign-compare
324 route6.o_CWARNFLAGS_ADD += -Wno-sign-compare
325 scope6.o_CWARNFLAGS_ADD += -Wno-sign-compare
[all …]
/xnu-11215/libkern/libkern/c++/
H A DOSDictionary.h135 static int compare(const void *, const void *);
147 static int compare(const void *, const void *);
/xnu-11215/doc/primitives/
H A Datomics.md169 that involve more costly codegen (such as compare exchange loops).
218 ### Atomic swap / compare and swap
224 return false/0 if the compare exchange failed, and true/1 if the expected
234 compare exchange was successful or not. In case of success, the loaded value
236 the current value, which is helpful to redrive compare exchange loops.
239 specified, which only takes effect in case of a successful compare exchange.
249 way more readable compare exchange loops. It also uses LL/SC constructs more
250 efficiently than a compare exchange loop would allow.
/xnu-11215/iokit/Kernel/
H A DIODeviceTreeSupport.cpp1245 IODTCompareAddressCellFunc compare; in IODTResolveAddressCell() local
1277 compare = NULL; in IODTResolveAddressCell()
1283 compare = gIODTResolvers->resolvers[index].compareFunc; in IODTResolveAddressCell()
1288 if (!compare && (addressCells == childAddressCells)) { in IODTResolveAddressCell()
1289 compare = DefaultCompare; in IODTResolveAddressCell()
1291 if (!compare) { in IODTResolveAddressCell()
1299 diff = (*compare)( childAddressCells, cell, range ); in IODTResolveAddressCell()
1310 diff2 = (*compare)( childAddressCells, cell, endCell ); in IODTResolveAddressCell()
1330 endDiff = (*compare)( childAddressCells, endCell, lookRange ); in IODTResolveAddressCell()
/xnu-11215/bsd/man/man2/
H A Dgetdirentriesattr.2177 you can compare subsequent values of
/xnu-11215/doc/debugging/
H A Ddebugging.md153 Ensure the macro matches what LLDB returns from the REPL. For example, compare `showproc(xxx)` with…
/xnu-11215/doc/vm/
H A Dsanitize.md416 after your new sanitization code is in place and compare the output from
/xnu-11215/makedefs/
H A DMakeInc.def208 -Wno-sign-compare \
/xnu-11215/doc/scheduler/
H A Dsched_clutch_edge.md55 … priority order between those buckets. The policy implemented here is to compare the highest clutc…