Lines Matching refs:ar_date
779 if (ar_hdr->ar_date[sizeof (ar_hdr->ar_date) - 1] == ' ')
781 if (ar_hdr->ar_date[0] == ' ')
782 elf_ar_hdr->ar_date = 0;
784 elf_ar_hdr->ar_date = (sizeof (time_t) <= sizeof (long int)
785 ? (time_t) atol (ar_hdr->ar_date)
786 : (time_t) atoll (ar_hdr->ar_date));
790 char buf[sizeof (ar_hdr->ar_date) + 1];
791 *((char *) __mempcpy (buf, ar_hdr->ar_date, sizeof (ar_hdr->ar_date)))
793 elf_ar_hdr->ar_date = (sizeof (time_t) <= sizeof (long int)
794 ? (time_t) atol (ar_hdr->ar_date)
795 : (time_t) atoll (ar_hdr->ar_date));