Searched refs:parts (Results 1 – 6 of 6) 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:])
1283 parts = cpu_num_string.split('-')1284 if len(parts) != 2 or not (parts[0].isdigit() and parts[1].isdigit()):1286 firstRange = int(parts[0])1287 lastRange = int(parts[1])
409 …* 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.
206 Use code coverage to check which parts of macros have actually been tested.