Home
last modified time | relevance | path

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

/xnu-12377.41.6/libkern/net/
H A Dinet_aton.c43 u_long parts[4]; in inet_aton() local
77 parts[n] = val; in inet_aton()
117 if (val > 0xffffff || parts[0] > 0xff) { in inet_aton()
120 val |= parts[0] << 24; in inet_aton()
124 if (val > 0xffff || parts[0] > 0xff || parts[1] > 0xff) { in inet_aton()
127 val |= (parts[0] << 24) | (parts[1] << 16); in inet_aton()
131 if (val > 0xff || parts[0] > 0xff || parts[1] > 0xff || in inet_aton()
132 parts[2] > 0xff) { in inet_aton()
135 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in inet_aton()
/xnu-12377.41.6/tools/lldbmacros/
H A Dlog.py87 parts = flag_name.split('_')
88 flag_name = parts[0] + ":" + " ".join(parts[2:])
H A Dxnu.py1347 parts = cpu_num_string.split('-')
1348 if len(parts) != 2 or not (parts[0].isdigit() and parts[1].isdigit()):
1350 firstRange = int(parts[0])
1351 lastRange = int(parts[1])
H A DREADME.md417 …* Kernel debugging is particularly tricky. Many parts of memory may not be readable. There could b…
/xnu-12377.41.6/doc/mach_ipc/
H A Dkmsg.md16 IPC kmsg is meant to wrap a Mach message, which is made of 4 different parts,
74 parts:
123 inline buffer of the kmsg is used to fit all parts of the mach message this way:
/xnu-12377.41.6/bsd/crypto/doc/
H A DKernelCrypto.txt21 * as the author of the parts of the library used.
/xnu-12377.41.6/doc/debugging/
H A Ddebugging.md202 Use code coverage to check which parts of macros have actually been tested.