Home
last modified time | relevance | path

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

12345

/freebsd/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
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h288 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF,
295 ELFFile<ELFT> EF;
366 auto SectionsOrErr = EF.sections(); in toDRI()
429 auto SectionsOrErr = EF.sections(); in getBuildAttributes()
435 auto ErrorOrContents = EF.getSectionContents(Sec); in getBuildAttributes()
465 return EF.template getEntry<Elf_Sym>(Sym.d.a, Sym.d.b); in getSymbol()
470 auto RelSecOrErr = EF.getSection(Rel.d.a); in getRelSection()
500 unsigned getPlatformFlags() const override { return EF.getHeader().e_flags; } in getPlatformFlags()
502 const ELFFile<ELFT> &getELFFile() const { return EF; } in getELFFile()
515 void createFakeSections() { EF.createFakeSections(); } in createFakeSections()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILFinalizeLinkage.cpp34 for (Function &EF : M.functions()) { in finalizeLinkage()
35 if (EF.isIntrinsic()) in finalizeLinkage()
37 if (EF.hasExternalLinkage() && EF.hasDefaultVisibility()) in finalizeLinkage()
39 if (EF.hasFnAttribute("hlsl.shader")) in finalizeLinkage()
41 Funcs.push_back(&EF); in finalizeLinkage()
/freebsd/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.cpp192 const ExternalFunctions *EF) { in ParseFlags() argument
204 if (EF->LLVMFuzzerCustomMutator) { in ParseFlags()
207 "Disabling -len_control by default.\n", EF->LLVMFuzzerCustomMutator); in ParseFlags()
650 EF = new ExternalFunctions(); in FuzzerDriver()
651 if (EF->LLVMFuzzerInitialize) in FuzzerDriver()
652 EF->LLVMFuzzerInitialize(argc, argv); in FuzzerDriver()
653 if (EF->__msan_scoped_disable_interceptor_checks) in FuzzerDriver()
654 EF->__msan_scoped_disable_interceptor_checks(); in FuzzerDriver()
662 ParseFlags(Args, EF); in FuzzerDriver()
933 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()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp925 const ELFFile<ELFT> &EF, std::optional<unsigned> TextSectionIndex, in readBBAddrMapImpl() argument
928 bool IsRelocatable = EF.getHeader().e_type == ELF::ET_REL; in readBBAddrMapImpl()
933 const auto &Sections = cantFail(EF.sections()); in readBBAddrMapImpl()
939 Expected<const Elf_Shdr *> TextSecOrErr = EF.getSection(Sec.sh_link); in readBBAddrMapImpl()
942 describe(EF, Sec) + ": " + in readBBAddrMapImpl()
953 EF.getSectionAndRelocations(IsMatch); in readBBAddrMapImpl()
960 describe(EF, *Sec)); in readBBAddrMapImpl()
962 EF.decodeBBAddrMap(*Sec, RelocSec, PGOAnalyses); in readBBAddrMapImpl()
966 return createError("unable to read " + describe(EF, *Sec) + ": " + in readBBAddrMapImpl()
981 readDynsymVersionsImpl(const ELFFile<ELFT> &EF, in readDynsymVersionsImpl() argument
[all …]
H A DELF.cpp736 decodeBBAddrMapImpl(const ELFFile<ELFT> &EF, in decodeBBAddrMapImpl() argument
740 bool IsRelocatable = EF.getHeader().e_type == ELF::ET_REL; in decodeBBAddrMapImpl()
751 Expected<typename ELFFile<ELFT>::RelsOrRelas> Relas = EF.crels(*RelaSec); in decodeBBAddrMapImpl()
754 describe(EF, Sec) + ": " + in decodeBBAddrMapImpl()
761 EF.relas(*RelaSec); in decodeBBAddrMapImpl()
764 describe(EF, Sec) + ": " + in decodeBBAddrMapImpl()
777 " in section " + describe(EF, Sec)); in decodeBBAddrMapImpl()
781 Expected<ArrayRef<uint8_t>> ContentsOrErr = EF.getSectionContents(Sec); in decodeBBAddrMapImpl()
789 Expected<StringRef> SectionNameOrErr = EF.getSectionName(Sec); in decodeBBAddrMapImpl()
794 EF.isLE(), ELFT::Is64Bits); in decodeBBAddrMapImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp349 MCEncodedFragment *EF = cast<MCEncodedFragment>(F); in layoutBundle() local
350 uint64_t FSize = computeFragmentSize(*EF); in layoutBundle()
356 computeBundlePadding(getBundleAlignSize(), EF, EF->Offset, FSize); in layoutBundle()
359 EF->setBundlePadding(static_cast<uint8_t>(RequiredBundlePadding)); in layoutBundle()
360 EF->Offset += RequiredBundlePadding; in layoutBundle()
363 DF->Offset = EF->Offset; in layoutBundle()
484 const MCEncodedFragment &EF, in writeFragmentPadding() argument
488 unsigned BundlePadding = EF.getBundlePadding(); in writeFragmentPadding()
492 assert(EF.hasInstructions() && in writeFragmentPadding()
496 const MCSubtargetInfo *STI = EF.getSubtargetInfo(); in writeFragmentPadding()
[all …]
H A DMCFragment.cpp62 if (const auto *EF = dyn_cast<MCEncodedFragment>(this)) in dump() local
63 if (auto Pad = static_cast<unsigned>(EF->getBundlePadding())) in dump()
/freebsd/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()
/freebsd/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:
/freebsd/secure/caroot/trusted/
H A De-Szigno_Root_CA_2017.pem39 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0
41 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0
48 SHA1 Fingerprint=89:D4:83:03:4F:9E:9A:48:80:5F:72:37:D4:A9:A6:EF:CB:7C:1F:D1
/freebsd/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|
/freebsd/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
/freebsd/tools/test/stress2/misc/
H A Dnamecache2.sh70 fsdb -r /dev/md$mdstart <<-EF heredoc
73 EF
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp454 for (auto EF : Site.ExtraFiles) { in toCodeViewSubsection() local
455 Result->addExtraFile(EF); in toCodeViewSubsection()
589 auto EF = getFileName(Strings, Checksums, L.NameIndex); in fromCodeViewSubsection() local
590 if (!EF) in fromCodeViewSubsection()
591 return EF.takeError(); in fromCodeViewSubsection()
592 Block.FileName = *EF; in fromCodeViewSubsection()
632 for (const auto EF : IL.ExtraFiles) { in fromCodeViewSubsection() local
633 auto ExpF2 = getFileName(Strings, Checksums, EF); in fromCodeViewSubsection()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp100 const ELFFile<ELFT> &EF = Obj->getELFFile(); in getRelocationValueString() local
102 auto SecOrErr = EF.getSection(Rel.d.a); in getRelocationValueString()
148 auto SecName = EF.getSectionName(*SymSec); in getRelocationValueString()
/freebsd/secure/caroot/untrusted/
H A DDigiCert_High_Assurance_EV_Root_CA.pem51 B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3
53 B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3
/freebsd/usr.bin/iscsictl/
H A Dtoken.l103 ef { return EF; }

12345