Lines Matching defs:tv32
140 struct tv32 {
155 #define PHDR_LEN sizeof(struct tv32) /* size of timestamp header */
896 struct tv32 tv32;
945 tv32.tv32_sec = (uint32_t)htonl(now.tv_sec);
946 tv32.tv32_usec = htonl(now.tv_nsec / 1000);
947 (void) memcpy(&opack_icmp.icmp_data[0], &tv32, sizeof(tv32));
1108 struct tv32 tv32;
1110 (void)memcpy(&tv32, icp->icmp_data, sizeof(tv32));
1111 tv.tv_sec = (uint32_t)ntohl(tv32.tv32_sec);
1112 tv.tv_nsec = ntohl(tv32.tv32_usec) * 1000;