Lines Matching refs:ul
384 uint32_t ul; in bootp_print() local
386 ul = EXTRACT_32BITS(&bp->bp_vend); in bootp_print()
387 if (ul != 0) in bootp_print()
388 ND_PRINT((ndo, "\n\t Vendor-#0x%x", ul)); in bootp_print()
597 uint32_t ul; in rfc1048_print() local
717 while (len >= sizeof(ul)) { in rfc1048_print()
720 ul = EXTRACT_32BITS(bp); in rfc1048_print()
722 ul = htonl(ul); in rfc1048_print()
723 ND_PRINT((ndo, "%s", ipaddr_string(ndo, &ul))); in rfc1048_print()
725 ND_PRINT((ndo, "%d", ul)); in rfc1048_print()
727 ND_PRINT((ndo, "%u", ul)); in rfc1048_print()
728 bp += sizeof(ul); in rfc1048_print()
729 len -= sizeof(ul); in rfc1048_print()
736 while (len >= 2*sizeof(ul)) { in rfc1048_print()
739 memcpy((char *)&ul, (const char *)bp, sizeof(ul)); in rfc1048_print()
740 ND_PRINT((ndo, "(%s:", ipaddr_string(ndo, &ul))); in rfc1048_print()
741 bp += sizeof(ul); in rfc1048_print()
742 memcpy((char *)&ul, (const char *)bp, sizeof(ul)); in rfc1048_print()
743 ND_PRINT((ndo, "%s)", ipaddr_string(ndo, &ul))); in rfc1048_print()
744 bp += sizeof(ul); in rfc1048_print()
745 len -= 2*sizeof(ul); in rfc1048_print()
968 memcpy((char *)&ul, (const char *)bp, sizeof(ul)); in rfc1048_print()
969 ND_PRINT((ndo, ":%s)", ipaddr_string(ndo, &ul))); in rfc1048_print()
970 bp += sizeof(ul); in rfc1048_print()