Home
last modified time | relevance | path

Searched refs:Word (Results 1 – 25 of 133) sorted by relevance

123456

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DHashTable.cpp31 uint32_t Word; in readSparseBitVector() local
32 if (auto EC = Stream.readInteger(Word)) in readSparseBitVector()
37 if (Word & (1U << Idx)) in readSparseBitVector()
57 uint32_t Word = 0; in writeSparseBitVector() local
60 Word |= (1 << WordIdx); in writeSparseBitVector()
62 if (auto EC = Writer.writeInteger(Word)) in writeSparseBitVector()
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dinteger_to_string.h204 using Word = typename T::word_type; in extract_decimal_digit() local
219 Word acc_remainder = 0; in extract_decimal_digit()
220 constexpr Word HALFWORD_BITS = T::WORD_SIZE / 2; in extract_decimal_digit()
221 constexpr Word HALFWORD_MASK = ((Word(1) << HALFWORD_BITS) - 1); in extract_decimal_digit()
302 constexpr Word C = Word(-1) / 5 * 4; // calculate 0xCCCC as 4/5 of 0xFFFF in extract_decimal_digit()
303 Word acc_lo = 0, acc_hi = 0; // accumulator of all the half-products so far in extract_decimal_digit()
304 Word carry_bit, carry_word = 0; in extract_decimal_digit()
308 multiword::DoubleWide<Word> product = multiword::mul2(C, value.val[i]); in extract_decimal_digit()
312 acc_lo = add_with_carry<Word>(acc_lo, product[0], 0, carry_bit); in extract_decimal_digit()
318 value.val[i] = add_with_carry<Word>(value.val[i], carry_word, 0, carry_bit); in extract_decimal_digit()
[all …]
/freebsd/contrib/bearssl/T0/
H A DOpcodeCall.cs30 Word target;
36 internal OpcodeCall(Word target) in OpcodeCall()
41 internal override void ResolveTarget(Word target) in ResolveTarget()
54 internal override Word GetReference(T0Comp ctx) in GetReference()
H A DWord.cs39 abstract class Word { class
77 internal Word(T0Comp owner, string name) in Word() method in Word
116 internal virtual List<Word> GetReferences() in GetReferences()
118 return new List<Word>(); in GetReferences()
H A DWordInterpreted.cs32 class WordInterpreted : Word {
80 internal override List<Word> GetReferences() in GetReferences()
83 List<Word> r = new List<Word>(); in GetReferences()
85 Word w = op.GetReference(TC); in GetReferences()
176 Word w = op.GetReference(TC); in AnalyseFlow()
H A DT0Comp.cs215 IDictionary<string, Word> words;
221 Word lastWord;
289 words = new SortedDictionary<string, Word>( in T0Comp()
336 Word w = AddNative(tt, false, cpu2 => { in T0Comp()
507 Word w = wordBuilder.Build(); in T0Comp()
571 Word w = LookupNF(tt); in T0Comp()
623 Word w = new WordData(this, name, tb.Blob, va.x); in T0Comp()
1402 Word w = new WordNative(this, "toplevel", in ProcessInput()
1432 Word w = LookupNF(tt); in CompileStep()
1478 IDictionary<string, Word> wordSet = in Generate()
[all …]
H A DOpcode.cs42 internal virtual void ResolveTarget(Word target) in ResolveTarget()
62 internal virtual Word GetReference(T0Comp ctx) in GetReference()
H A DTPointerXT.cs34 internal Word Target {
44 internal TPointerXT(Word target) in TPointerXT()
H A DWordBuilder.cs72 internal Word Build() in Build()
80 Word w = new WordInterpreted(TC, name, locals.Count, in Build()
227 internal void CallExt(Word wtarget) in CallExt()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDictionary.h51 typedef FixedWord<64> Word; typedef
56 DictionaryEntry(Word W) : W(W) {} in DictionaryEntry()
57 DictionaryEntry(Word W, size_t PositionHint) in DictionaryEntry()
59 const Word &GetW() const { return W; } in GetW()
81 Word W;
91 bool ContainsWord(const Word &W) const { in ContainsWord()
H A DFuzzerTracePC.h51 Word MemMemWords[kSize];
52 Word EmptyWord;
56 Size = std::min(Size, Word::GetMaxSize()); in Add()
60 const Word &Get(size_t Idx) { in Get()
62 const Word &W = MemMemWords[(Idx + i) % kSize]; in Get()
107 TableOfRecentCompares<Word, 32> TORCW;
H A DFuzzerMutate.h90 void AddWordToManualDictionary(const Word &W);
119 DictionaryEntry MakeDictionaryEntryFromCMP(const Word &Arg1, const Word &Arg2,
H A DFuzzerMutate.cpp23 static void PrintASCII(const Word &W, const char *PrintAfter) { in PrintASCII()
186 const Word &W = DE.GetW(); in ApplyDictionaryEntry()
218 Word W; in MakeDictionaryEntryFromCMP()
255 const Word &Arg1, const Word &Arg2, const uint8_t *Data, size_t Size) { in MakeDictionaryEntryFromCMP()
262 Word W; in Mutate_AddWordFromTORC()
591 void MutationDispatcher::AddWordToManualDictionary(const Word &W) { in AddWordToManualDictionary()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h53 using Word = support::ulittle32_t; variable
57 Word Offset, Size;
66 Word Offset, Size;
76 Word Begin, End;
79 Word UncBegin;
87 Word SelectionKind;
101 Word ComdatIndex;
103 Word Flags;
124 Word CommonSize, CommonAlign;
139 Word Version;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFTypePrinter.h27 bool Word = true; member
186 if (Word) in appendPointerLikeTypeBefore()
191 Word = false; in appendPointerLikeTypeBefore()
198 Word = true; in appendUnqualifiedNameBefore()
213 if (Word) { in appendUnqualifiedNameBefore()
216 Word = false; in appendUnqualifiedNameBefore()
233 else if (Word) in appendUnqualifiedNameBefore()
242 Word = false; in appendUnqualifiedNameBefore()
263 Word = true; in appendUnqualifiedNameBefore()
280 Word = true; in appendUnqualifiedNameBefore()
[all …]
/freebsd/contrib/llvm-project/libc/src/__support/OSUtil/linux/
H A Dvdso.cpp32 ElfW(Word) vda_name; /* Version or dependency names */
33 ElfW(Word) vda_next; /* Offset in bytes to next verdaux
41 ElfW(Word) vd_hash; /* Version name hash value */
42 ElfW(Word) vd_aux; /* Offset in bytes to verdaux array */
43 ElfW(Word) vd_next; /* Offset in bytes to next verdef entry */
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp151 for (const auto &Word : Words) in demangleLine() local
153 ::demangle(std::string(Word.first), Word.second) + Word.second.str(); in demangleLine()
/freebsd/contrib/file/magic/Magdir/
H A Drtf22 # 1 mostly, 2 for newer Pocket Word documents, space for test like fdo78502.rtf, { for some urtf
82 # Note: called by TrID "Pocket Word document"
83 # by PlanMaker "Pocket Word-Handheld PC" for pwd
84 # by PlanMaker "Pocket Word-Pocket PC" for psw
85 0 string {\\pwd Pocket Word document or template
/freebsd/sys/contrib/edk2/Include/Uefi/
H A DUefiPxe.h1204 UINT16 Word[128]; member
1230 PXE_UINT16 Word[128]; member
1501 PXE_UINT16 Word; member
1520 PXE_UINT16 Word[MAX_EEPROM_LEN << 1]; member
1541 PXE_UINT16 Word[MAX_EEPROM_LEN << 1]; member
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp35 StringRef Word; member
676 for (const auto [Kind, Word] : PreprocessorDirs) { in prepIsDirective()
677 if (StringRef(CurPtr, Word.size()) != Word) in prepIsDirective()
679 int NextChar = peekNextChar(Word.size()); in prepIsDirective()
707 NextChar = peekNextChar(Word.size() + 1); in prepIsDirective()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h327 typedef typename ET::Word Elf_Word;
477 const support::ulittle32_t Word = in PrintExceptionTable() local
480 if (Word & 0x80000000) { in PrintExceptionTable()
483 unsigned PersonalityIndex = (Word & 0x0f000000) >> 24; in PrintExceptionTable()
492 unsigned AdditionalWords = (Word & 0x00ff0000) >> 16; in PrintExceptionTable()
501 ? PREL31(Word, EHT.sh_addr) in PrintExceptionTable()
502 : PREL31(Word, EHT.sh_addr + TableEntryOffset); in PrintExceptionTable()
/freebsd/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/contrib/file/tests/
H A Dissue311docx.result1 Microsoft Word 2007+
H A DHWP2016.hwp.result1 Hancom HWP (Hangul Word Processor) file, version 5.0
H A DHWP2016.hwpx.zip.result1 Hancom HWP (Hangul Word Processor) file, HWPX

123456