Searched refs:sec (Results 201 - 225 of 561) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lld/ELF/Arch/
H A DLoongArch.cpp217 for (const auto *sec : f->getSections())
218 if (sec && sec->flags & SHF_EXECINSTR)
687 static bool relax(InputSection &sec) {
688 const uint64_t secAddr = sec.getVA();
689 const MutableArrayRef<Relocation> relocs = sec.relocs();
690 auto &aux = *sec.relaxAux;
752 sec.bytesDropped = delta;
775 for (InputSection *sec : getInputSections(*osec, storage))
776 changed |= relax(*sec);
[all...]
H A DX86_64.cpp47 void relocateAlloc(InputSectionBase &sec, uint8_t *buf) const override;
326 for (InputSection *sec : getInputSections(*osec, storage)) {
327 for (Relocation &rel : sec->relocs()) {
331 uint64_t v = sec->getRelocTargetVA(sec->file, rel.type, rel.addend,
332 sec->getOutputSection()->addr +
333 sec->outSecOff + rel.offset,
1032 void X86_64::relocateAlloc(InputSectionBase &sec, uint8_t *buf) const { argument
1033 uint64_t secAddr = sec.getOutputSection()->addr;
1034 if (auto *s = dyn_cast<InputSection>(&sec))
[all...]
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DMapFile.cpp116 static void printEhFrame(raw_ostream &os, const EhFrameSection *sec) { argument
123 if (last.sec == p.sec && last.inputOff + last.size == p.inputOff &&
133 for (const CieRecord *rec : sec->getCieRecords()) {
140 const OutputSection *osec = sec->getOutputSection();
144 os << indent8 << toString(p.sec->file) << ":(" << p.sec->name << "+0x"
H A DInputSection.cpp40 std::string lld::toString(const InputSectionBase *sec) { argument
41 return (toString(sec->file) + ":(" + sec->name + ")").str();
111 static void decompressAux(const InputSectionBase &sec, uint8_t *out, argument
113 auto *hdr = reinterpret_cast<const typename ELFT::Chdr *>(sec.content_);
114 auto compressed = ArrayRef<uint8_t>(sec.content_, sec.compressedSize)
119 fatal(toString(&sec) +
193 InputSection *sec; local
195 sec
361 InputSectionBase *sec = getRelocatedSection(); local
394 InputSectionBase *sec = getRelocatedSection(); local
433 Elf_Shdr_Impl<ELFT> sec = file->template getELFShdrs<ELFT>()[secIdx]; local
1055 auto *sec = cast<InputSection>(this); local
[all...]
H A DInputFiles.h139 std::string getSrcMsg(const Symbol &sym, const InputSectionBase &sec,
243 const Elf_Shdr &sec);
300 InputSectionBase *getRelocTarget(uint32_t idx, const Elf_Shdr &sec,
302 InputSectionBase *createInputSection(uint32_t idx, const Elf_Shdr &sec,
305 bool shouldMerge(const Elf_Shdr &sec, StringRef name);
373 const typename ELFT::Shdr *sec);
/freebsd-current/sys/dev/qat/qat_common/
H A Dadf_cfg_device.c1166 struct adf_cfg_section *sec; local
1193 sec = list_entry(list, struct adf_cfg_section, list);
1194 if (!strcmp(sec->name, ADF_GENERAL_SEC)) {
1196 sec->name,
1200 sec->processed = true;
1207 sec = list_entry(list, struct adf_cfg_section, list);
1208 if (!strcmp(sec->name, ADF_KERNEL_SEC)) {
1210 sec->name,
1214 sec->processed = true;
1221 sec
[all...]
/freebsd-current/contrib/wpa/src/utils/
H A Dos_unix.c50 void os_sleep(os_time_t sec, os_time_t usec) argument
53 const struct timespec req = { sec, usec * 1000 };
57 if (sec)
58 sleep(sec);
70 t->sec = tv.tv_sec;
94 t->sec = ts.tv_sec;
131 t->sec = nano / NSEC_PER_SEC;
132 t->usec = (nano - (((uint64_t) t->sec) * NSEC_PER_SEC)) / NSEC_PER_USEC;
139 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
147 hour < 0 || hour > 23 || min < 0 || min > 59 || sec <
[all...]
/freebsd-current/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_init.c35 Dwarf_Obj_Access_Section sec; local
79 if (m->get_section_info(obj, i, &sec, &ret) != DW_DLV_OK) {
84 dbg->dbg_section[i].ds_addr = sec.addr;
85 dbg->dbg_section[i].ds_size = sec.size;
86 dbg->dbg_section[i].ds_name = sec.name;
/freebsd-current/sys/dev/iwm/
H A Dif_iwm_fw.c154 * non paged to CPU2 paging sec
159 if (image->sec[sec_idx].offset == IWM_PAGING_SEPARATOR_SECTION) {
169 if (sec_idx >= nitems(image->sec) - 1) {
178 "Paging: load paging CSS to FW, sec = %d\n",
182 image->sec[sec_idx].data,
199 (const char *)image->sec[sec_idx].data + offset,
213 (const char *)image->sec[sec_idx].data + offset,
/freebsd-current/sys/dev/iicbus/rtc/
H A Disl12xx.c118 uint8_t sec, min, hour, day, month, year; member in struct:time_regs
267 bct.sec = tregs.sec;
303 tregs.sec = bct.sec;
H A Drtc8583.c64 uint8_t msec, sec, min, hour, day, month; member in struct:time_regs
235 bct.sec = tregs.sec;
262 tregs.sec = bct.sec;
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Dbcm2835_wdog.c163 uint64_t sec; local
172 sec = ((uint64_t)1 << (cmd & WD_INTERVAL)) / 1000000000;
173 if (sec == 0 || sec > 15) {
188 ticks = (sec << 16) & BCM2835_WDOG_TIME_MASK;
/freebsd-current/crypto/heimdal/lib/krb5/
H A Drd_safe.c156 krb5_timestamp sec; local
158 krb5_timeofday (context, &sec);
162 abs(*safe.safe_body.timestamp - sec) > context->max_skew) {
H A Drd_priv.c134 krb5_timestamp sec; local
136 krb5_timeofday (context, &sec);
139 abs(*part.timestamp - sec) > context->max_skew) {
/freebsd-current/crypto/openssl/crypto/crmf/
H A Dcrmf_pbm.c122 * |sec| key to use
131 const unsigned char *sec, size_t seclen,
146 || pbmp->mac->algorithm == NULL || msg == NULL || sec == NULL) {
171 if (!EVP_DigestUpdate(ctx, sec, seclen))
128 OSSL_CRMF_pbm_new(OSSL_LIB_CTX *libctx, const char *propq, const OSSL_CRMF_PBMPARAMETER *pbmp, const unsigned char *msg, size_t msglen, const unsigned char *sec, size_t seclen, unsigned char **out, size_t *outlen) argument
/freebsd-current/sys/contrib/openzfs/lib/libzpool/
H A Dutil.c50 uint64_t sec; local
86 sec = MAX(1, vs->vs_timestamp / NANOSEC);
90 nicenum(vs->vs_ops[ZIO_TYPE_READ] / sec, rops, sizeof (rops));
91 nicenum(vs->vs_ops[ZIO_TYPE_WRITE] / sec, wops, sizeof (wops));
92 nicenum(vs->vs_bytes[ZIO_TYPE_READ] / sec, rbytes,
94 nicenum(vs->vs_bytes[ZIO_TYPE_WRITE] / sec, wbytes,
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/predicates/
H A Dtst.predcache.ksh106 tick-1sec
126 tick-1sec
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.depth.ksh58 tick-1sec
/freebsd-current/contrib/ntp/scripts/build/
H A DupdateBEDate26 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
/freebsd-current/crypto/openssl/crypto/asn1/
H A Da_time.c552 int day, sec; local
560 if (!OPENSSL_gmtime_diff(&day, &sec, &ttm, &stm))
563 if (day > 0 || sec > 0)
565 if (day < 0 || sec < 0)
582 int day, sec; local
584 if (!ASN1_TIME_diff(&day, &sec, b, a))
586 if (day > 0 || sec > 0)
588 if (day < 0 || sec < 0)
/freebsd-current/sys/powerpc/pseries/
H A Drtas_dev.c124 ct.sec = tod[6];
143 ct.min, ct.sec, ct.nsec, &status);
/freebsd-current/contrib/unbound/validator/
H A Dval_nsec.c209 enum sec_status sec; local
227 sec = val_nsec_proves_no_ds(nsec, qinfo);
228 if(sec == sec_status_bogus) {
232 return sec;
233 } else if(sec == sec_status_insecure) {
235 return sec;
236 } else if(sec == sec_status_secure) {
239 return sec;
/freebsd-current/contrib/tcpdump/
H A Dprint-pfsync.c282 int min, sec; local
286 sec = endtime % 60;
304 htonl(b->creatorid), endtime, min, sec, status);
395 int min, sec; local
442 sec = creation % 60;
446 ND_PRINT("\n\tage %.2u:%.2u:%.2u", creation, min, sec);
447 sec = expire % 60;
451 ND_PRINT(", expires in %.2u:%.2u:%.2u", expire, min, sec);
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Dqlnx_os.h110 static __inline int qlnx_sec_to_hz(int sec) argument
114 t.tv_sec = sec;
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DInputFiles.cpp101 std::string lld::toString(const Section &sec) { argument
102 return (toString(sec.file) + ":(" + sec.name + ")").str();
345 for (const SectionHeader &sec : sectionHeaders) {
347 StringRef(sec.sectname, strnlen(sec.sectname, sizeof(sec.sectname)));
349 StringRef(sec.segname, strnlen(sec.segname, sizeof(sec
501 validateRelocationInfo(InputFile *file, const SectionHeader &sec, relocation_info rel) argument
533 parseRelocations(ArrayRef<SectionHeader> sectionHeaders, const SectionHeader &sec, Section &section) argument
1371 Section *sec = findContainingSection(sections, &addr); local
1503 Section *sec = findContainingSection(sections, &lsdaAddr); local
[all...]

Completed in 583 milliseconds

1234567891011>>