Lines Matching refs:nanoseconds
90 uint32_t nanoseconds) in arista_print_date_hms_time() argument
95 ts = seconds + (nanoseconds / 1000000000); in arista_print_date_hms_time()
96 nanoseconds %= 1000000000; in arista_print_date_hms_time()
99 gmtime(&ts)), nanoseconds); in arista_print_date_hms_time()
121 uint32_t nanoseconds; in arista_ethertype_print() local
143 nanoseconds = GET_BE_U_4(bp + 4); in arista_ethertype_print()
144 arista_print_date_hms_time(ndo, seconds, nanoseconds); in arista_ethertype_print()
149 nanoseconds = GET_BE_U_4(bp + 2); in arista_ethertype_print()
150 seconds += nanoseconds / 1000000000; in arista_ethertype_print()
151 nanoseconds %= 1000000000; in arista_ethertype_print()
152 ND_PRINT("%" PRIu64 ".%09u", seconds, nanoseconds); in arista_ethertype_print()