HomeSort by: relevance | last modified time | path
    Searched defs:EF (Results 1 - 6 of 6) sorted by relevancy

  /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/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
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;
  /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/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/external/apache2/llvm/dist/llvm/lib/MC/
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...]

Completed in 34 milliseconds