Searched refs:EF (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInternal.h150 if (EF->__msan_scoped_enable_interceptor_checks)
151 EF->__msan_scoped_enable_interceptor_checks();
154 if (EF->__msan_scoped_disable_interceptor_checks)
155 EF->__msan_scoped_disable_interceptor_checks();
161 if (EF->__msan_scoped_disable_interceptor_checks)
162 EF->__msan_scoped_disable_interceptor_checks();
165 if (EF->__msan_scoped_enable_interceptor_checks)
166 EF->__msan_scoped_enable_interceptor_checks();
H A DFuzzerUtil.cpp186 if (!EF->__sanitizer_symbolize_pc || !l.owns_lock())
189 EF->__sanitizer_symbolize_pc(reinterpret_cast<void*>(PC),
196 if (EF->__sanitizer_symbolize_pc)
204 if (EF->__sanitizer_print_stack_trace && l.owns_lock())
205 EF->__sanitizer_print_stack_trace();
210 if (EF->__sanitizer_print_memory_profile && l.owns_lock())
211 EF->__sanitizer_print_memory_profile(95, 8);
H A DFuzzerLoop.cpp105 if (TraceLevel >= 2 && EF)
118 if (TraceLevel >= 2 && EF)
140 if (EF->__sanitizer_set_death_callback)
141 EF->__sanitizer_set_death_callback(StaticDeathCallback);
146 if (Options.DetectLeaks && EF->__sanitizer_install_malloc_and_free_hooks)
147 EF->__sanitizer_install_malloc_and_free_hooks(MallocHook, FreeHook);
228 if (EF->__sanitizer_acquire_crash_state &&
229 !EF->__sanitizer_acquire_crash_state())
245 if (EF->__sanitizer_acquire_crash_state &&
246 !EF
[all...]
H A DFuzzerIO.cpp118 if (EF->__sanitizer_set_report_fd)
119 EF->__sanitizer_set_report_fd(
H A DFuzzerDriver.cpp186 const ExternalFunctions *EF) {
198 if (EF->LLVMFuzzerCustomMutator)
614 EF = new ExternalFunctions();
615 if (EF->LLVMFuzzerInitialize)
616 EF->LLVMFuzzerInitialize(argc, argv);
617 if (EF->__msan_scoped_disable_interceptor_checks)
618 EF->__msan_scoped_disable_interceptor_checks();
626 ParseFlags(Args, EF);
840 ExternalFunctions *EF = nullptr; member in namespace:fuzzer
185 ParseFlags(const Vector<std::string> &Args, const ExternalFunctions *EF) argument
H A DFuzzerDefs.h189 extern ExternalFunctions *EF;
H A DFuzzerMutate.cpp52 if (EF->LLVMFuzzerCustomMutator)
57 if (EF->LLVMFuzzerCustomCrossOver)
70 return EF->LLVMFuzzerCustomMutator(Data, Size, MaxSize, Rand.Rand());
83 size_t NewSize = EF->LLVMFuzzerCustomCrossOver(
H A DFuzzerTracePC.cpp216 if (!EF->__sanitizer_get_module_and_offset_for_pc(
266 if (!EF->__sanitizer_symbolize_pc ||
267 !EF->__sanitizer_get_module_and_offset_for_pc) {
H A DFuzzerUtilFuchsia.cpp350 if (EF->__sanitizer_log_write)
/freebsd-12-stable/contrib/bmake/
H A Dmkdeps.sh69 EF=/tmp/deperr.$$
70 > $EF
125 if [ -s $EF ]; then
126 egrep -vi "included from|warning" $EF > ${EF}2
127 if [ -s ${EF}2 ]; then
128 cat $EF >&2
133 rm -f $TF $EF*
151 $cpp $cpp_opts $cc_include $* 2>> $EF | egrep '^#.*\.h"' | sed 's,^#.*"\(.*\)".*,\1,' |
173 echo "\"$file\", line $iline: cannot find include file \"$ifile\"" >> $EF
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCWasmStreamer.cpp39 void MCWasmStreamer::mergeFragment(MCDataFragment *DF, MCDataFragment *EF) { argument
42 for (unsigned I = 0, E = EF->getFixups().size(); I != E; ++I) {
43 EF->getFixups()[I].setOffset(EF->getFixups()[I].getOffset() +
45 DF->getFixups().push_back(EF->getFixups()[I]);
47 if (DF->getSubtargetInfo() == nullptr && EF->getSubtargetInfo())
48 DF->setHasInstructions(*EF->getSubtargetInfo());
49 DF->getContents().append(EF->getContents().begin(), EF->getContents().end());
H A DMCELFStreamer.cpp53 MCDataFragment *EF) {
57 uint64_t FSize = EF->getContents().size();
63 Assembler, EF, DF->getContents().size(), FSize);
71 EF->setBundlePadding(static_cast<uint8_t>(RequiredBundlePadding));
72 Assembler.writeFragmentPadding(VecOS, *EF, FSize);
80 for (unsigned i = 0, e = EF->getFixups().size(); i != e; ++i) {
81 EF->getFixups()[i].setOffset(EF->getFixups()[i].getOffset() +
83 DF->getFixups().push_back(EF->getFixups()[i]);
85 if (DF->getSubtargetInfo() == nullptr && EF
52 mergeFragment(MCDataFragment *DF, MCDataFragment *EF) argument
[all...]
H A DMCAssembler.cpp438 MCEncodedFragment *EF = cast<MCEncodedFragment>(F); local
439 uint64_t FSize = Assembler.computeFragmentSize(*this, *EF);
445 computeBundlePadding(Assembler, EF, EF->Offset, FSize);
448 EF->setBundlePadding(static_cast<uint8_t>(RequiredBundlePadding));
449 EF->Offset += RequiredBundlePadding;
464 const MCEncodedFragment &EF,
468 unsigned BundlePadding = EF.getBundlePadding();
472 assert(EF.hasInstructions() &&
476 if (EF
463 writeFragmentPadding(raw_ostream &OS, const MCEncodedFragment &EF, uint64_t FSize) const argument
[all...]
H A DMCFragment.cpp334 if (const auto *EF = dyn_cast<MCEncodedFragment>(this))
335 OS << " BundlePadding:" << static_cast<unsigned>(EF->getBundlePadding());
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h247 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF,
252 ELFFile<ELFT> EF; member in class:llvm::object::ELFObjectFile
308 auto RelSecOrErr = EF.getSection(Rel.d.a);
324 auto SectionsOrErr = EF.sections();
369 auto SectionsOrErr = EF.sections();
375 auto ErrorOrContents = EF.getSectionContents(&Sec);
403 auto Ret = EF.template getEntry<Elf_Sym>(Sym.d.a, Sym.d.b);
429 unsigned getPlatformFlags() const override { return EF.getHeader()->e_flags; }
431 const ELFFile<ELFT> *getELFFile() const { return &EF; }
457 auto SymTabOrErr = EF
987 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF, const Elf_Shdr *DotDynSymSec, const Elf_Shdr *DotSymtabSec, ArrayRef<Elf_Word> ShndxTable) argument
[all...]
/freebsd-12-stable/usr.bin/iscsictl/
H A Dtoken.l103 ef { return EF; }
H A Dparse.y68 %token BE EF CS0 CS1 CS2 CS3 CS4 CS5 CS6 CS7
324 | DSCP EQUALS EF { target->t_dscp = IPTOS_DSCP_EF >> 2 ; }
/freebsd-12-stable/usr.sbin/ctld/
H A Dtoken.l102 ef { return EF; }
H A Dparse.y71 %token BE EF CS0 CS1 CS2 CS3 CS4 CS5 CS6 CS7
492 | DSCP EF { portal_group->pg_dscp = IPTOS_DSCP_EF >> 2 ; }
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp56 const ELFFile<ELFT> &EF = *Obj->getELFFile(); local
58 auto SecOrErr = EF.getSection(Rel.d.a);
92 auto SecName = EF.getSectionName(SymSec);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp456 for (auto EF : Site.ExtraFiles) {
457 Result->addExtraFile(EF);
591 auto EF = getFileName(Strings, Checksums, L.NameIndex); local
592 if (!EF)
593 return EF.takeError();
594 Block.FileName = *EF;
634 for (const auto EF : IL.ExtraFiles) {
635 auto ExpF2 = getFileName(Strings, Checksums, EF);
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h74 MAP(EF, 111) \
H A DFixedLenDecoderEmitter.cpp1115 for (const EncodingField &EF : OpInfo) {
1119 << "(insn, " << EF.Base << ", " << EF.Width << ')';
1120 if (OpInfo.numFields() != 1 || EF.Offset != 0)
1121 o << " << " << EF.Offset;
/freebsd-12-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-armv8.pl749 my ($AB,$CD,$EF,$GH)=map("v$_.16b",(26..29));
783 orr $EF,@H[2],@H[2]
830 add.i64 @H[2],@H[2],$EF
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp2560 EF = MethodDecl->param_end();
2561 IM != EM && IF != EF; ++IM, ++IF) {
2583 EF = Overridden->param_end();
2584 IM != EM && IF != EF; ++IM, ++IF) {
2617 EF = MethodDecl->param_end();
2618 IM != EM && IF != EF; ++IM, ++IF) {

Completed in 151 milliseconds

12