Home
last modified time | relevance | path

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

12345

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DELFObjectFile.h247 ELFObjectFile(MemoryBufferRef Object, ELFFile<ELFT> EF,
254 ELFFile<ELFT> EF;
321 auto SectionsOrErr = EF.sections(); in toDRI()
366 auto SectionsOrErr = EF.sections(); in getBuildAttributes()
373 auto ErrorOrContents = EF.getSectionContents(Sec); in getBuildAttributes()
403 return EF.template getEntry<Elf_Sym>(Sym.d.a, Sym.d.b); in getSymbol()
408 auto RelSecOrErr = EF.getSection(Rel.d.a); in getRelSection()
434 unsigned getPlatformFlags() const override { return EF.getHeader().e_flags; } in getPlatformFlags()
436 const ELFFile<ELFT> &getELFFile() const { return EF; } in getELFFile()
460 auto SectionsOrErr = EF.sections(); in initContent()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCWasmStreamer.cpp39 void MCWasmStreamer::mergeFragment(MCDataFragment *DF, MCDataFragment *EF) { in mergeFragment() argument
42 for (unsigned I = 0, E = EF->getFixups().size(); I != E; ++I) { in mergeFragment()
43 EF->getFixups()[I].setOffset(EF->getFixups()[I].getOffset() + in mergeFragment()
45 DF->getFixups().push_back(EF->getFixups()[I]); in mergeFragment()
47 if (DF->getSubtargetInfo() == nullptr && EF->getSubtargetInfo()) in mergeFragment()
48 DF->setHasInstructions(*EF->getSubtargetInfo()); in mergeFragment()
49 DF->getContents().append(EF->getContents().begin(), EF->getContents().end()); in mergeFragment()
H A DMCELFStreamer.cpp53 MCDataFragment *EF) { in mergeFragment() argument
57 uint64_t FSize = EF->getContents().size(); in mergeFragment()
63 Assembler, EF, DF->getContents().size(), FSize); in mergeFragment()
71 EF->setBundlePadding(static_cast<uint8_t>(RequiredBundlePadding)); in mergeFragment()
72 Assembler.writeFragmentPadding(VecOS, *EF, FSize); in mergeFragment()
80 for (unsigned i = 0, e = EF->getFixups().size(); i != e; ++i) { in mergeFragment()
81 EF->getFixups()[i].setOffset(EF->getFixups()[i].getOffset() + in mergeFragment()
83 DF->getFixups().push_back(EF->getFixups()[i]); in mergeFragment()
85 if (DF->getSubtargetInfo() == nullptr && EF->getSubtargetInfo()) in mergeFragment()
86 DF->setHasInstructions(*EF->getSubtargetInfo()); in mergeFragment()
[all …]
H A DMCAssembler.cpp448 MCEncodedFragment *EF = cast<MCEncodedFragment>(F); in layoutFragment() local
449 uint64_t FSize = Assembler.computeFragmentSize(*this, *EF); in layoutFragment()
455 computeBundlePadding(Assembler, EF, EF->Offset, FSize); in layoutFragment()
458 EF->setBundlePadding(static_cast<uint8_t>(RequiredBundlePadding)); in layoutFragment()
459 EF->Offset += RequiredBundlePadding; in layoutFragment()
474 const MCEncodedFragment &EF, in writeFragmentPadding() argument
478 unsigned BundlePadding = EF.getBundlePadding(); in writeFragmentPadding()
482 assert(EF.hasInstructions() && in writeFragmentPadding()
486 if (EF.alignToBundleEnd() && TotalLength > getBundleAlignSize()) { in writeFragmentPadding()
515 if (const MCEncodedFragment *EF = dyn_cast<MCEncodedFragment>(&F)) in writeFragment() local
[all …]
H A DMCFragment.cpp365 if (const auto *EF = dyn_cast<MCEncodedFragment>(this)) in dump() local
366 OS << " BundlePadding:" << static_cast<unsigned>(EF->getBundlePadding()); in dump()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerInternal.h157 if (EF->__msan_scoped_enable_interceptor_checks) in ScopedEnableMsanInterceptorChecks()
158 EF->__msan_scoped_enable_interceptor_checks(); in ScopedEnableMsanInterceptorChecks()
161 if (EF->__msan_scoped_disable_interceptor_checks) in ~ScopedEnableMsanInterceptorChecks()
162 EF->__msan_scoped_disable_interceptor_checks(); in ~ScopedEnableMsanInterceptorChecks()
168 if (EF->__msan_scoped_disable_interceptor_checks) in ScopedDisableMsanInterceptorChecks()
169 EF->__msan_scoped_disable_interceptor_checks(); in ScopedDisableMsanInterceptorChecks()
172 if (EF->__msan_scoped_enable_interceptor_checks) in ~ScopedDisableMsanInterceptorChecks()
173 EF->__msan_scoped_enable_interceptor_checks(); in ~ScopedDisableMsanInterceptorChecks()
H A DFuzzerLoop.cpp109 if (TraceLevel >= 2 && EF) in MallocHook()
122 if (TraceLevel >= 2 && EF) in FreeHook()
144 if (EF->__sanitizer_set_death_callback) in Fuzzer()
145 EF->__sanitizer_set_death_callback(StaticDeathCallback); in Fuzzer()
150 if (Options.DetectLeaks && EF->__sanitizer_install_malloc_and_free_hooks) in Fuzzer()
151 EF->__sanitizer_install_malloc_and_free_hooks(MallocHook, FreeHook); in Fuzzer()
234 if (EF->__sanitizer_acquire_crash_state) in CrashCallback()
235 EF->__sanitizer_acquire_crash_state(); in CrashCallback()
250 if (EF->__sanitizer_acquire_crash_state && in ExitCallback()
251 !EF->__sanitizer_acquire_crash_state()) in ExitCallback()
[all …]
H A DFuzzerUtil.cpp187 if (!EF->__sanitizer_symbolize_pc || !l.owns_lock()) in DescribePC()
190 EF->__sanitizer_symbolize_pc(reinterpret_cast<void*>(PC), in DescribePC()
197 if (EF->__sanitizer_symbolize_pc) in PrintPC()
205 if (EF->__sanitizer_print_stack_trace && l.owns_lock()) in PrintStackTrace()
206 EF->__sanitizer_print_stack_trace(); in PrintStackTrace()
211 if (EF->__sanitizer_print_memory_profile && l.owns_lock()) in PrintMemoryProfile()
212 EF->__sanitizer_print_memory_profile(95, 8); in PrintMemoryProfile()
H A DFuzzerIO.cpp109 if (EF->__sanitizer_set_report_fd) in DupAndCloseStderr()
110 EF->__sanitizer_set_report_fd( in DupAndCloseStderr()
H A DFuzzerDriver.cpp537 EF = new ExternalFunctions(); in FuzzerDriver()
538 if (EF->LLVMFuzzerInitialize) in FuzzerDriver()
539 EF->LLVMFuzzerInitialize(argc, argv); in FuzzerDriver()
540 if (EF->__msan_scoped_disable_interceptor_checks) in FuzzerDriver()
541 EF->__msan_scoped_disable_interceptor_checks(); in FuzzerDriver()
775 ExternalFunctions *EF = nullptr; variable
H A DFuzzerTracePC.cpp276 if (!EF->__sanitizer_get_module_and_offset_for_pc( in GetModuleName()
335 if (!EF->__sanitizer_symbolize_pc || in PrintCoverage()
336 !EF->__sanitizer_get_module_and_offset_for_pc) { in PrintCoverage()
373 if (EF->__sanitizer_dump_coverage) { in DumpCoverage()
377 EF->__sanitizer_dump_coverage(PCsCopy.data(), PCsCopy.size()); in DumpCoverage()
H A DFuzzerMutate.cpp53 if (EF->LLVMFuzzerCustomMutator) in MutationDispatcher()
58 if (EF->LLVMFuzzerCustomCrossOver) in MutationDispatcher()
71 return EF->LLVMFuzzerCustomMutator(Data, Size, MaxSize, Rand.Rand()); in Mutate_Custom()
84 size_t NewSize = EF->LLVMFuzzerCustomCrossOver( in Mutate_CustomCrossOver()
/netbsd-src/crypto/external/bsd/openssl.old/dist/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:
/netbsd-src/crypto/external/bsd/openssl/dist/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:
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
H A DFuzzerUnittest.cpp48 fuzzer::EF = t.get(); in TEST()
118 fuzzer::EF = t.get(); in TestEraseBytes()
172 fuzzer::EF = t.get(); in TestInsertByte()
208 fuzzer::EF = t.get(); in TestInsertRepeatedBytes()
252 fuzzer::EF = t.get(); in TestChangeByte()
288 fuzzer::EF = t.get(); in TestChangeBit()
324 fuzzer::EF = t.get(); in TestShuffleBytes()
354 fuzzer::EF = t.get(); in TestCopyPart()
404 fuzzer::EF = t.get(); in TEST()
417 fuzzer::EF = t.get(); in TestAddWordFromDictionary()
[all …]
/netbsd-src/usr.sbin/altq/altqd/altq.conf.samples/
H A Dcbq.diffedge10 # EF conditioner
39 # EF class
H A Dhfsc.diffedge9 # EF conditioner
37 # EF class
H A Dcdnr.sample19 # EF style conditioner (a simple token bucket)
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DELFDump.cpp59 const ELFFile<ELFT> &EF = Obj->getELFFile(); in getRelocationValueString() local
61 auto SecOrErr = EF.getSection(Rel.d.a); in getRelocationValueString()
103 auto SecName = EF.getSectionName(*SymSec); in getRelocationValueString()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkRunner.cpp182 const ExecutableFunction EF(State.createTargetMachine(), in runConfiguration() local
184 const auto FnBytes = EF.getFunctionBytes(); in runConfiguration()
/netbsd-src/crypto/external/bsd/openssl.old/dist/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
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/sha/asm/
H A Dsha512-armv8.pl738 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
/netbsd-src/external/gpl2/groff/dist/contrib/mm/examples/
H A DMOVE6 .EF "'oj�mn'%'sida'"

12345