Lines Matching refs:parts
672 unsigned long parts[4] = {0, 0, 0, 0}; in ipv4_normalize() local
694 parts[n] = l; in ipv4_normalize()
719 (unsigned int)(parts[0] >> 24), in ipv4_normalize()
720 (unsigned int)((parts[0] >> 16) & 0xff), in ipv4_normalize()
721 (unsigned int)((parts[0] >> 8) & 0xff), in ipv4_normalize()
722 (unsigned int)(parts[0] & 0xff)); in ipv4_normalize()
725 if((parts[0] > 0xff) || (parts[1] > 0xffffff)) in ipv4_normalize()
729 (unsigned int)(parts[0]), in ipv4_normalize()
730 (unsigned int)((parts[1] >> 16) & 0xff), in ipv4_normalize()
731 (unsigned int)((parts[1] >> 8) & 0xff), in ipv4_normalize()
732 (unsigned int)(parts[1] & 0xff)); in ipv4_normalize()
735 if((parts[0] > 0xff) || (parts[1] > 0xff) || (parts[2] > 0xffff)) in ipv4_normalize()
739 (unsigned int)(parts[0]), in ipv4_normalize()
740 (unsigned int)(parts[1]), in ipv4_normalize()
741 (unsigned int)((parts[2] >> 8) & 0xff), in ipv4_normalize()
742 (unsigned int)(parts[2] & 0xff)); in ipv4_normalize()
745 if((parts[0] > 0xff) || (parts[1] > 0xff) || (parts[2] > 0xff) || in ipv4_normalize()
746 (parts[3] > 0xff)) in ipv4_normalize()
750 (unsigned int)(parts[0]), in ipv4_normalize()
751 (unsigned int)(parts[1]), in ipv4_normalize()
752 (unsigned int)(parts[2]), in ipv4_normalize()
753 (unsigned int)(parts[3])); in ipv4_normalize()