Home
last modified time | relevance | path

Searched refs:EF (Results 1 – 25 of 125) sorted by relevance

12345

/src/contrib/bmake/
H A Dmkdeps.sh69 EF=/tmp/deperr.$$
70 > $EF
132 if [ -s $EF ]; then
133 egrep -vi "included from|warning" $EF > ${EF}2
134 if [ -s ${EF}2 ]; then
135 cat $EF >&2
140 rm -f $TF $EF*
158 $cpp $cpp_opts $cc_include $* 2>> $EF | egrep '^#.*\.h"' | sed 's,^#.*"\(.*\)".*,\1,' |
180 echo "\"$file\", line $iline: cannot find include file \"$ifile\"" >> $EF
/src/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h285 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF,
292 ELFFile<ELFT> EF;
363 auto SectionsOrErr = EF.sections(); in toDRI()
423 auto SectionsOrErr = EF.sections(); in getBuildAttributes()
429 auto ErrorOrContents = EF.getSectionContents(Sec); in getBuildAttributes()
459 return EF.template getEntry<Elf_Sym>(Sym.d.a, Sym.d.b); in getSymbol()
464 auto RelSecOrErr = EF.getSection(Rel.d.a); in getRelSection()
494 unsigned getPlatformFlags() const override { return EF.getHeader().e_flags; } in getPlatformFlags()
496 const ELFFile<ELFT> &getELFFile() const { return EF; } in getELFFile()
509 void createFakeSections() { EF.createFakeSections(); } in createFakeSections()
[all …]
/src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInternal.h156 if (EF->__msan_scoped_enable_interceptor_checks) in ScopedEnableMsanInterceptorChecks()
157 EF->__msan_scoped_enable_interceptor_checks(); in ScopedEnableMsanInterceptorChecks()
160 if (EF->__msan_scoped_disable_interceptor_checks) in ~ScopedEnableMsanInterceptorChecks()
161 EF->__msan_scoped_disable_interceptor_checks(); in ~ScopedEnableMsanInterceptorChecks()
167 if (EF->__msan_scoped_disable_interceptor_checks) in ScopedDisableMsanInterceptorChecks()
168 EF->__msan_scoped_disable_interceptor_checks(); in ScopedDisableMsanInterceptorChecks()
171 if (EF->__msan_scoped_enable_interceptor_checks) in ~ScopedDisableMsanInterceptorChecks()
172 EF->__msan_scoped_enable_interceptor_checks(); in ~ScopedDisableMsanInterceptorChecks()
H A DFuzzerLoop.cpp106 if (TraceLevel >= 2 && EF) in MallocHook()
119 if (TraceLevel >= 2 && EF) in FreeHook()
141 if (EF->__sanitizer_set_death_callback) in Fuzzer()
142 EF->__sanitizer_set_death_callback(StaticDeathCallback); in Fuzzer()
147 if (Options.DetectLeaks && EF->__sanitizer_install_malloc_and_free_hooks) in Fuzzer()
148 EF->__sanitizer_install_malloc_and_free_hooks(MallocHook, FreeHook); in Fuzzer()
227 if (EF->__sanitizer_acquire_crash_state && in CrashCallback()
228 !EF->__sanitizer_acquire_crash_state()) in CrashCallback()
244 if (EF->__sanitizer_acquire_crash_state && in ExitCallback()
245 !EF->__sanitizer_acquire_crash_state()) in ExitCallback()
[all …]
H A DFuzzerUtil.cpp191 if (!EF->__sanitizer_symbolize_pc || !l.owns_lock()) in DescribePC()
194 EF->__sanitizer_symbolize_pc(reinterpret_cast<void*>(PC), in DescribePC()
201 if (EF->__sanitizer_symbolize_pc) in PrintPC()
209 if (EF->__sanitizer_print_stack_trace && l.owns_lock()) in PrintStackTrace()
210 EF->__sanitizer_print_stack_trace(); in PrintStackTrace()
215 if (EF->__sanitizer_print_memory_profile && l.owns_lock()) in PrintMemoryProfile()
216 EF->__sanitizer_print_memory_profile(95, 8); in PrintMemoryProfile()
H A DFuzzerMutate.cpp53 if (EF->LLVMFuzzerCustomMutator) in MutationDispatcher()
58 if (EF->LLVMFuzzerCustomCrossOver) in MutationDispatcher()
72 if (EF->__msan_unpoison) in Mutate_Custom()
73 EF->__msan_unpoison(Data, Size); in Mutate_Custom()
74 if (EF->__msan_unpoison_param) in Mutate_Custom()
75 EF->__msan_unpoison_param(4); in Mutate_Custom()
76 return EF->LLVMFuzzerCustomMutator(Data, Size, MaxSize, in Mutate_Custom()
91 if (EF->__msan_unpoison) { in Mutate_CustomCrossOver()
92 EF->__msan_unpoison(Data, Size); in Mutate_CustomCrossOver()
93 EF->__msan_unpoison(Other.data(), Other.size()); in Mutate_CustomCrossOver()
[all …]
H A DFuzzerDriver.cpp191 const ExternalFunctions *EF) { in ParseFlags() argument
203 if (EF->LLVMFuzzerCustomMutator) { in ParseFlags()
206 "Disabling -len_control by default.\n", EF->LLVMFuzzerCustomMutator); in ParseFlags()
649 EF = new ExternalFunctions(); in FuzzerDriver()
650 if (EF->LLVMFuzzerInitialize) in FuzzerDriver()
651 EF->LLVMFuzzerInitialize(argc, argv); in FuzzerDriver()
652 if (EF->__msan_scoped_disable_interceptor_checks) in FuzzerDriver()
653 EF->__msan_scoped_disable_interceptor_checks(); in FuzzerDriver()
661 ParseFlags(Args, EF); in FuzzerDriver()
932 ExternalFunctions *EF = nullptr; variable
H A DFuzzerDefs.h39 extern ExternalFunctions *EF;
H A DFuzzerIO.cpp142 if (EF->__sanitizer_set_report_fd) in DupAndCloseStderr()
143 EF->__sanitizer_set_report_fd( in DupAndCloseStderr()
/src/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp880 const ELFFile<ELFT> &EF, std::optional<unsigned> TextSectionIndex, in readBBAddrMapImpl() argument
883 bool IsRelocatable = EF.getHeader().e_type == ELF::ET_REL; in readBBAddrMapImpl()
888 const auto &Sections = cantFail(EF.sections()); in readBBAddrMapImpl()
895 Expected<const Elf_Shdr *> TextSecOrErr = EF.getSection(Sec.sh_link); in readBBAddrMapImpl()
898 describe(EF, Sec) + ": " + in readBBAddrMapImpl()
909 EF.getSectionAndRelocations(IsMatch); in readBBAddrMapImpl()
916 describe(EF, *Sec)); in readBBAddrMapImpl()
918 EF.decodeBBAddrMap(*Sec, RelocSec, PGOAnalyses); in readBBAddrMapImpl()
922 return createError("unable to read " + describe(EF, *Sec) + ": " + in readBBAddrMapImpl()
937 readDynsymVersionsImpl(const ELFFile<ELFT> &EF, in readDynsymVersionsImpl() argument
[all …]
H A DELF.cpp734 decodeBBAddrMapImpl(const ELFFile<ELFT> &EF, in decodeBBAddrMapImpl() argument
738 bool IsRelocatable = EF.getHeader().e_type == ELF::ET_REL; in decodeBBAddrMapImpl()
748 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = EF.relas(*RelaSec); in decodeBBAddrMapImpl()
751 describe(EF, Sec) + ": " + in decodeBBAddrMapImpl()
763 " in section " + describe(EF, Sec)); in decodeBBAddrMapImpl()
767 Expected<ArrayRef<uint8_t>> ContentsOrErr = EF.getSectionContents(Sec); in decodeBBAddrMapImpl()
771 DataExtractor Data(Content, EF.isLE(), ELFT::Is64Bits ? 8 : 4); in decodeBBAddrMapImpl()
832 describe(EF, Sec)); in decodeBBAddrMapImpl()
/src/crypto/openssl/test/certs/
H A DembeddedSCTs3.sct16 46:76:B9:BC:99:11:5C:C0:EF:94:98:55:D6:89:D0:DD
22 EF:2A:4E:74:02:21:00:8E:B7:BB:ED:85:5D:85:1B:54:
35 D9:2D:37:53:4A:3B:F0:AE:03:E4:21:76:37:EF:AF:B4:
H A DembeddedSCTs1.sct8 30:45:02:20:55:52:EF:85:00:1E:C7:6A:26:94:59:DB:
9 F8:C7:33:61:38:EF:50:44:CC:49:6E:84:78:02:31:3E:
/src/contrib/llvm-project/clang/lib/Frontend/
H A DSARIFDiagnostic.cpp108 FullSourceLoc BF(B, SM), EF(E, SM); in addLocationToResult() local
112 EF.getFileID(), EF.getLineNumber(), EF.getColumnNumber() + TokSize); in addLocationToResult()
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp418 MCEncodedFragment *EF = cast<MCEncodedFragment>(F); in layoutBundle() local
419 uint64_t FSize = computeFragmentSize(*EF); in layoutBundle()
425 computeBundlePadding(getBundleAlignSize(), EF, EF->Offset, FSize); in layoutBundle()
428 EF->setBundlePadding(static_cast<uint8_t>(RequiredBundlePadding)); in layoutBundle()
429 EF->Offset += RequiredBundlePadding; in layoutBundle()
432 DF->Offset = EF->Offset; in layoutBundle()
578 const MCEncodedFragment &EF, in writeFragmentPadding() argument
582 unsigned BundlePadding = EF.getBundlePadding(); in writeFragmentPadding()
586 assert(EF.hasInstructions() && in writeFragmentPadding()
590 const MCSubtargetInfo *STI = EF.getSubtargetInfo(); in writeFragmentPadding()
[all …]
H A DMCFragment.cpp133 if (const auto *EF = dyn_cast<MCEncodedFragment>(this)) in dump() local
134 OS << " BundlePadding:" << static_cast<unsigned>(EF->getBundlePadding()); in dump()
/src/secure/caroot/trusted/
H A De-Szigno_Root_CA_2017.pem42 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0
44 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0
51 SHA1 Fingerprint=89:D4:83:03:4F:9E:9A:48:80:5F:72:37:D4:A9:A6:EF:CB:7C:1F:D1
H A DCommScope_Public_Trust_ECC_Root-02.pem44 E6:18:75:FF:EF:60:DE:84:A4:F5:46:C7:DE:4A:55:E3:32:36:79:F5
53 SHA1 Fingerprint=3C:3F:EF:57:0F:FE:65:93:86:9E:A0:FE:B0:F6:ED:8E:D1:13:C7:E5
H A DDigiCert_High_Assurance_EV_Root_CA.pem54 B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3
56 B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3
/src/bin/dd/
H A Dref.parodd5 00000040 40 c1 c2 43 c4 45 46 c7 c8 49 4a cb 4c cd ce 4f |@..C.EF..IJ.L..O|
13 000000c0 40 c1 c2 43 c4 45 46 c7 c8 49 4a cb 4c cd ce 4f |@..C.EF..IJ.L..O|
/src/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected35 A3 D1 6F E1 EF 7B 6D 2F 4F 93 48 90 02 0D F1 8A
53 AD 96 1C 40 05 54 CB 0E 37 32 AE 2C 64 DB EF 8E
122 AD 96 1C 40 05 54 CB 0E 37 32 AE 2C 64 DB EF 8E
123 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17 96
196 AD 96 1C 40 05 54 CB 0E 37 32 AE 2C 64 DB EF 8E
198 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17
/src/tools/test/stress2/misc/
H A Dnamecache2.sh70 fsdb -r /dev/md$mdstart <<-EF heredoc
73 EF
/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp456 for (auto EF : Site.ExtraFiles) { in toCodeViewSubsection() local
457 Result->addExtraFile(EF); in toCodeViewSubsection()
591 auto EF = getFileName(Strings, Checksums, L.NameIndex); in fromCodeViewSubsection() local
592 if (!EF) in fromCodeViewSubsection()
593 return EF.takeError(); in fromCodeViewSubsection()
594 Block.FileName = *EF; in fromCodeViewSubsection()
634 for (const auto EF : IL.ExtraFiles) { in fromCodeViewSubsection() local
635 auto ExpF2 = getFileName(Strings, Checksums, EF); in fromCodeViewSubsection()
/src/usr.bin/iscsictl/
H A Dtoken.l103 ef { return EF; }
/src/crypto/openssl/doc/
H A Dfingerprints.txt16 BA54 73A2 B058 7B07 FB27 CF2D 2160 94DF D0CB 81EF

12345