Lines Matching refs:ul
386 uint32_t ul; in bootp_print() local
388 ul = EXTRACT_32BITS(&bp->bp_vend); in bootp_print()
389 if (ul != 0) in bootp_print()
390 ND_PRINT((ndo, "\n\t Vendor-#0x%x", ul)); in bootp_print()
599 uint32_t ul; in rfc1048_print() local
719 while (len >= sizeof(ul)) { in rfc1048_print()
722 ul = EXTRACT_32BITS(bp); in rfc1048_print()
724 ul = htonl(ul); in rfc1048_print()
725 ND_PRINT((ndo, "%s", ipaddr_string(ndo, &ul))); in rfc1048_print()
727 ND_PRINT((ndo, "%d", ul)); in rfc1048_print()
729 ND_PRINT((ndo, "%u", ul)); in rfc1048_print()
730 bp += sizeof(ul); in rfc1048_print()
731 len -= sizeof(ul); in rfc1048_print()
738 while (len >= 2*sizeof(ul)) { in rfc1048_print()
741 memcpy((char *)&ul, (const char *)bp, sizeof(ul)); in rfc1048_print()
742 ND_PRINT((ndo, "(%s:", ipaddr_string(ndo, &ul))); in rfc1048_print()
743 bp += sizeof(ul); in rfc1048_print()
744 memcpy((char *)&ul, (const char *)bp, sizeof(ul)); in rfc1048_print()
745 ND_PRINT((ndo, "%s)", ipaddr_string(ndo, &ul))); in rfc1048_print()
746 bp += sizeof(ul); in rfc1048_print()
747 len -= 2*sizeof(ul); in rfc1048_print()
970 memcpy((char *)&ul, (const char *)bp, sizeof(ul)); in rfc1048_print()
971 ND_PRINT((ndo, ":%s)", ipaddr_string(ndo, &ul))); in rfc1048_print()
972 bp += sizeof(ul); in rfc1048_print()