Searched refs:Word (Results 1 - 25 of 58) sorted by relevance

123

/freebsd-13-stable/contrib/bearssl/T0/
H A DOpcodeCall.cs30 Word target;
36 internal OpcodeCall(Word target)
41 internal override void ResolveTarget(Word target)
54 internal override Word GetReference(T0Comp ctx)
H A DWord.cs39 abstract class Word { class
77 internal Word(T0Comp owner, string name) method in class:Word
116 internal virtual List<Word> GetReferences()
118 return new List<Word>();
135 throw new Exception("Word does not yield code elements");
H A DOpcode.cs42 internal virtual void ResolveTarget(Word target)
58 * Get the Word that this opcode references; this can happen
62 internal virtual Word GetReference(T0Comp ctx)
H A DTPointerXT.cs34 internal Word Target {
44 internal TPointerXT(Word target)
H A DWordNative.cs32 class WordNative : Word {
H A DWordInterpreted.cs32 class WordInterpreted : Word {
80 internal override List<Word> GetReferences()
83 List<Word> r = new List<Word>();
85 Word w = op.GetReference(TC);
176 Word w = op.GetReference(TC);
H A DWordBuilder.cs72 internal Word Build()
80 Word w = new WordInterpreted(TC, name, locals.Count,
227 internal void CallExt(Word wtarget)
H A DT0Comp.cs215 IDictionary<string, Word> words;
221 Word lastWord;
289 words = new SortedDictionary<string, Word>(
336 Word w = AddNative(tt, false, cpu2 => {
507 Word w = wordBuilder.Build();
511 "Word already defined: " + name);
571 Word w = LookupNF(tt);
623 Word w = new WordData(this, name, tb.Blob, va.x);
626 "Word already defined: " + name);
1023 "Word alread
[all...]
H A DOpcodeConst.cs42 internal override Word GetReference(T0Comp ctx)
H A DWordData.cs28 class WordData : Word {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DHashTable.cpp34 uint32_t Word; local
35 if (auto EC = Stream.readInteger(Word))
40 if (Word & (1U << Idx))
60 uint32_t Word = 0; local
63 Word |= (1 << WordIdx);
65 if (auto EC = Writer.writeInteger(Word))
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDictionary.h47 typedef FixedWord<64> Word; typedef in namespace:fuzzer
52 DictionaryEntry(Word W) : W(W) {}
53 DictionaryEntry(Word W, size_t PositionHint) : W(W), PositionHint(PositionHint) {}
54 const Word &GetW() const { return W; }
74 Word W;
84 bool ContainsWord(const Word &W) const {
H A DFuzzerTracePC.h51 Word MemMemWords[kSize];
52 Word EmptyWord;
56 Size = std::min(Size, Word::GetMaxSize());
60 const Word &Get(size_t Idx) {
62 const Word &W = MemMemWords[(Idx + i) % kSize];
107 TableOfRecentCompares<Word, 32> TORCW;
H A DFuzzerMutate.h87 void AddWordToManualDictionary(const Word &W);
116 DictionaryEntry MakeDictionaryEntryFromCMP(const Word &Arg1, const Word &Arg2,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h51 using Word = support::ulittle32_t;
55 Word Offset, Size;
64 Word Offset, Size;
74 Word Begin, End;
77 Word UncBegin;
96 Word ComdatIndex;
98 Word Flags;
119 Word CommonSize, CommonAlign;
134 Word Version;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp147 for (const auto &Word : Words)
148 Result += ::demangle(std::string(Word.first)) + Word.second.str();
/freebsd-13-stable/sys/sys/
H A Delf_generic.h64 __ElfType(Word); variable
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_arm.S9 @ Word-aligned function entry point
40 @ Word-aligned function entry point
72 @ Word-aligned function entry point
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp319 // Word type: uint32_t for Elf32, and uint64_t for Elf64.
320 typedef typename ELFT::uint Word; typedef
322 // Word size in number of bytes.
323 const size_t WordSize = sizeof(Word);
329 Word Base = 0;
331 Word Entry = R;
342 Word Offset = Base;
H A DCOFFModuleDefinition.cpp122 StringRef Word = Buf.substr(0, End); local
123 Kind K = llvm::StringSwitch<Kind>(Word)
137 return Token(K, Word);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h328 typedef typename ET::Word Elf_Word;
463 const support::ulittle32_t Word = local
466 if (Word & 0x80000000) {
469 unsigned PersonalityIndex = (Word & 0x0f000000) >> 24;
478 unsigned AdditionalWords = (Word & 0x00ff0000) >> 16;
486 uint64_t Address = PREL31(Word, EHT->sh_addr);
/freebsd-13-stable/contrib/elftoolchain/libelf/
H A Dlibelf_align.c83 [ELF_T_WORD] = MALIGN(Word),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp37 const char *Word; member in struct:__anon3830::__anon3831
606 for (; I < strlen(PreprocessorDirs[ID].Word); ++I) {
607 if (NextChar != PreprocessorDirs[ID].Word[I]) {
662 CurPtr += strlen(PreprocessorDirs[ID].Word);
/freebsd-13-stable/sys/cddl/compat/opensolaris/sys/
H A Delf.h54 __sElfN(Word); variable
/freebsd-13-stable/sys/dev/mpr/mpi/
H A Dmpi2_raid.h173 U32 Word; member in union:_MPI2_RAID_ACTION_DATA
365 U32 Word[6]; member in union:_MPI2_RAID_ACTION_REPLY_DATA

Completed in 331 milliseconds

123