Searched refs:parts (Results 1 – 7 of 7) sorted by relevance
43 u_long parts[4]; in inet_aton() local77 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()
87 parts = flag_name.split('_')88 flag_name = parts[0] + ":" + " ".join(parts[2:])
1347 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])
417 …* Kernel debugging is particularly tricky. Many parts of memory may not be readable. There could b…
16 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:
21 * as the author of the parts of the library used.
202 Use code coverage to check which parts of macros have actually been tested.