Searched refs:parts (Results 1 – 5 of 5) 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()
1036 parts = cpu_num_string.split('-')1037 if len(parts) != 2 or not (parts[0].isdigit() and parts[1].isdigit()):1039 firstRange = int(parts[0])1040 lastRange = int(parts[1])
405 …* Kernel debugging is particularly tricky. Many parts of memory may not be readable. There could b…
21 * as the author of the parts of the library used.
322 Use code coverage to check which parts of macros have actually been tested.