Home
last modified time | relevance | path

Searched refs:SInt16 (Results 1 – 5 of 5) sorted by relevance

/xnu-11215/libkern/gen/
H A DOSAtomicOperations.c104 SInt16
105 OSAddAtomic16(SInt32 amount, volatile SInt16 *address) in OSAddAtomic16()
107 return os_atomic_add_orig(address, (SInt16)amount, relaxed); in OSAddAtomic16()
236 SInt16
237 OSIncrementAtomic16(volatile SInt16 * value) in OSIncrementAtomic16()
242 SInt16
243 OSDecrementAtomic16(volatile SInt16 * value) in OSDecrementAtomic16()
/xnu-11215/libkern/libkern/
H A DOSAtomic.h308 extern SInt16 OSAddAtomic16(
310 volatile SInt16 * address);
360 extern SInt16 OSIncrementAtomic16(volatile SInt16 * address);
407 extern SInt16 OSDecrementAtomic16(volatile SInt16 * address);
H A DOSTypes.h66 typedef signed short SInt16; typedef
/xnu-11215/osfmk/arm/pmap/
H A Dpmap.c4329 if ((refcnt != 0) && (OSAddAtomic16(refcnt, (SInt16 *) &(ptep_get_info(bpte)->refcnt)) <= 0)) {
5187 if (OSAddAtomic16(-1, (SInt16 *) &(ptd_get_info(ptdp, pte_p)->refcnt)) <= 0) {
5900 SInt16 *ptd_wiredcnt_ptr = (SInt16 *)&(ptep_get_info(pte_p)->wiredcnt);
/xnu-11215/iokit/Kernel/
H A DIOPMrootDomain.cpp4053 static SInt16 msb16 = 1; in nextRequestTag()