HomeSort by: relevance | last modified time | path
    Searched refs:EF (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdbsupport/
scope-exit.h 90 template<typename EF>
91 class scope_exit : public scope_exit_base<scope_exit<EF>>
94 friend scope_exit_base<scope_exit<EF>>;
99 typename = gdb::Requires<std::is_constructible<EF, EFP>>>
102 && std::is_nothrow_constructible<EF, EFP>::value)
118 typename = gdb::Requires<std::is_constructible<EF, EFP>>>
120 noexcept (std::is_nothrow_move_constructible<EF>::value
121 || std::is_nothrow_copy_constructible<EF>::value)
139 EF m_exit_function;
142 template <typename EF>
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
scope-exit.h 90 template<typename EF>
91 class scope_exit : public scope_exit_base<scope_exit<EF>>
94 friend scope_exit_base<scope_exit<EF>>;
99 typename = gdb::Requires<std::is_constructible<EF, EFP>>>
102 && std::is_nothrow_constructible<EF, EFP>::value)
118 typename = gdb::Requires<std::is_constructible<EF, EFP>>>
120 noexcept (std::is_nothrow_move_constructible<EF>::value
121 || std::is_nothrow_copy_constructible<EF>::value)
139 EF m_exit_function;
142 template <typename EF>
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerInternal.h 157 if (EF->__msan_scoped_enable_interceptor_checks)
158 EF->__msan_scoped_enable_interceptor_checks();
161 if (EF->__msan_scoped_disable_interceptor_checks)
162 EF->__msan_scoped_disable_interceptor_checks();
168 if (EF->__msan_scoped_disable_interceptor_checks)
169 EF->__msan_scoped_disable_interceptor_checks();
172 if (EF->__msan_scoped_enable_interceptor_checks)
173 EF->__msan_scoped_enable_interceptor_checks();
FuzzerUtil.cpp 187 if (!EF->__sanitizer_symbolize_pc || !l.owns_lock())
190 EF->__sanitizer_symbolize_pc(reinterpret_cast<void*>(PC),
197 if (EF->__sanitizer_symbolize_pc)
205 if (EF->__sanitizer_print_stack_trace && l.owns_lock())
206 EF->__sanitizer_print_stack_trace();
211 if (EF->__sanitizer_print_memory_profile && l.owns_lock())
212 EF->__sanitizer_print_memory_profile(95, 8);
FuzzerLoop.cpp 109 if (TraceLevel >= 2 && EF)
122 if (TraceLevel >= 2 && EF)
144 if (EF->__sanitizer_set_death_callback)
145 EF->__sanitizer_set_death_callback(StaticDeathCallback);
150 if (Options.DetectLeaks && EF->__sanitizer_install_malloc_and_free_hooks)
151 EF->__sanitizer_install_malloc_and_free_hooks(MallocHook, FreeHook);
234 if (EF->__sanitizer_acquire_crash_state)
235 EF->__sanitizer_acquire_crash_state();
250 if (EF->__sanitizer_acquire_crash_state &&
251 !EF->__sanitizer_acquire_crash_state()
    [all...]
FuzzerIO.cpp 109 if (EF->__sanitizer_set_report_fd)
110 EF->__sanitizer_set_report_fd(
FuzzerDefs.h 158 extern ExternalFunctions *EF;
FuzzerDriver.cpp 537 EF = new ExternalFunctions();
538 if (EF->LLVMFuzzerInitialize)
539 EF->LLVMFuzzerInitialize(argc, argv);
540 if (EF->__msan_scoped_disable_interceptor_checks)
541 EF->__msan_scoped_disable_interceptor_checks();
775 ExternalFunctions *EF = nullptr;
FuzzerTracePC.cpp 276 if (!EF->__sanitizer_get_module_and_offset_for_pc(
335 if (!EF->__sanitizer_symbolize_pc ||
336 !EF->__sanitizer_get_module_and_offset_for_pc) {
373 if (EF->__sanitizer_dump_coverage) {
377 EF->__sanitizer_dump_coverage(PCsCopy.data(), PCsCopy.size());
FuzzerMutate.cpp 53 if (EF->LLVMFuzzerCustomMutator)
58 if (EF->LLVMFuzzerCustomCrossOver)
71 return EF->LLVMFuzzerCustomMutator(Data, Size, MaxSize, Rand.Rand());
84 size_t NewSize = EF->LLVMFuzzerCustomCrossOver(
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCWasmStreamer.cpp 39 void MCWasmStreamer::mergeFragment(MCDataFragment *DF, MCDataFragment *EF) {
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());
MCELFStreamer.cpp 53 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->getSubtargetInfo()
    [all...]
MCAssembler.cpp 448 MCEncodedFragment *EF = cast<MCEncodedFragment>(F);
449 uint64_t FSize = Assembler.computeFragmentSize(*this, *EF);
455 computeBundlePadding(Assembler, EF, EF->Offset, FSize);
458 EF->setBundlePadding(static_cast<uint8_t>(RequiredBundlePadding));
459 EF->Offset += RequiredBundlePadding;
474 const MCEncodedFragment &EF,
478 unsigned BundlePadding = EF.getBundlePadding();
482 assert(EF.hasInstructions() &&
486 if (EF.alignToBundleEnd() && TotalLength > getBundleAlignSize())
    [all...]
MCFragment.cpp 365 if (const auto *EF = dyn_cast<MCEncodedFragment>(this))
366 OS << " BundlePadding:" << static_cast<unsigned>(EF->getBundlePadding());
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELFObjectFile.h 247 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF,
254 ELFFile<ELFT> EF;
321 auto SectionsOrErr = EF.sections();
366 auto SectionsOrErr = EF.sections();
373 auto ErrorOrContents = EF.getSectionContents(Sec);
403 return EF.template getEntry<Elf_Sym>(Sym.d.a, Sym.d.b);
408 auto RelSecOrErr = EF.getSection(Rel.d.a);
434 unsigned getPlatformFlags() const override { return EF.getHeader().e_flags; }
436 const ELFFile<ELFT> &getELFFile() const { return EF; }
460 auto SectionsOrErr = EF.sections()
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 48 fuzzer::EF = t.get();
118 fuzzer::EF = t.get();
172 fuzzer::EF = t.get();
208 fuzzer::EF = t.get();
252 fuzzer::EF = t.get();
288 fuzzer::EF = t.get();
324 fuzzer::EF = t.get();
354 fuzzer::EF = t.get();
404 fuzzer::EF = t.get();
417 fuzzer::EF = t.get()
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
ELFDump.cpp 59 const ELFFile<ELFT> &EF = Obj->getELFFile();
61 auto SecOrErr = EF.getSection(Rel.d.a);
103 auto SecName = EF.getSectionName(*SymSec);
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 456 for (auto EF : Site.ExtraFiles) {
457 Result->addExtraFile(EF);
591 auto EF = getFileName(Strings, Checksums, L.NameIndex);
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);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkRunner.cpp 182 const ExecutableFunction EF(State.createTargetMachine(),
184 const auto FnBytes = EF.getFunctionBytes();
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
X86RecognizableInstr.h 74 MAP(EF, 111) \
FixedLenDecoderEmitter.cpp 1124 for (const EncodingField &EF : OpInfo) {
1130 o << "fieldFromInstruction(insn, " << EF.Base << ", " << EF.Width << ')';
1132 o << ", " << EF.Offset << ", " << EF.Width << ')';
1133 else if (EF.Offset != 0)
1134 o << " << " << EF.Offset;
  /src/crypto/external/apache2/openssl/dist/crypto/sha/asm/
sha512-armv8.pl 749 my ($AB,$CD,$EF,$GH)=map("v$_.16b",(26..29));
785 orr $EF,@H[2],@H[2]
832 add.i64 @H[2],@H[2],$EF
  /src/crypto/external/bsd/openssl/dist/crypto/sha/asm/
sha512-armv8.pl 738 my ($AB,$CD,$EF,$GH)=map("v$_.16b",(26..29));
772 orr $EF,@H[2],@H[2]
819 add.i64 @H[2],@H[2],$EF
  /src/crypto/external/bsd/openssl.old/dist/crypto/sha/asm/
sha512-armv8.pl 749 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
  /src/share/terminfo/
terminfo 833 bel=^G, civis=\Ef, clear=\EE, cnorm=\Ee, cr=\r, cub1=\ED,
849 bel=^G, blink=\E[5m, bold=\E[1m, civis=\Ef,
879 bel=^G, blink=\Er, bold=\EyA, civis=\Ef, clear=\EE,
898 bel=^G, blink=\Er, bold=\EyA, civis=\Ef, clear=\EE,
933 bel=^G, civis=\Ef, clear=\EH\EJ, cnorm=\Ee, cr=\r, cub1=\ED,
1417 dch1=\Ef, dl1=\EF, ed=\EJ, el=\EK, home=\EH, ht=^I, ich1=\Ee,
2394 ri=\EI, rmacs=\EG, rmkx=\E>, smacs=\EF, smkx=\E=, u8=\E/[KL],
3637 kRIT3=\Ef, kRIT5=\E[1;5C, use=nsterm-build309,
5642 kdch1=\EP, kend=\EF, khome=\Eh, kich1=\EQ, knp=\ES, kpp=\ET
    [all...]

Completed in 53 milliseconds

1 2