/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | HashTable.cpp | 31 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/bearssl/T0/ |
H A D | OpcodeCall.cs | 30 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 D | Word.cs | 39 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 D | WordInterpreted.cs | 32 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 D | T0Comp.cs | 215 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 D | Opcode.cs | 42 internal virtual void ResolveTarget(Word target) in ResolveTarget() 62 internal virtual Word GetReference(T0Comp ctx) in GetReference()
|
H A D | TPointerXT.cs | 34 internal Word Target { 44 internal TPointerXT(Word target) in TPointerXT()
|
H A D | WordBuilder.cs | 72 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 D | FuzzerDictionary.h | 49 typedef FixedWord<64> Word; typedef 54 DictionaryEntry(Word W) : W(W) {} in DictionaryEntry() 55 DictionaryEntry(Word W, size_t PositionHint) in DictionaryEntry() 57 const Word &GetW() const { return W; } in GetW() 79 Word W; 89 bool ContainsWord(const Word &W) const { in ContainsWord()
|
H A D | FuzzerTracePC.h | 51 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 D | FuzzerMutate.h | 90 void AddWordToManualDictionary(const Word &W); 119 DictionaryEntry MakeDictionaryEntryFromCMP(const Word &Arg1, const Word &Arg2,
|
H A D | FuzzerMutate.cpp | 23 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 D | IRSymtab.h | 52 using Word = support::ulittle32_t; variable 56 Word Offset, Size; 65 Word Offset, Size; 75 Word Begin, End; 78 Word UncBegin; 86 Word SelectionKind; 100 Word ComdatIndex; 102 Word Flags; 123 Word CommonSize, CommonAlign; 138 Word Version;
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFTypePrinter.cpp | 88 if (Word) in appendPointerLikeTypeBefore() 93 Word = false; in appendPointerLikeTypeBefore() 100 Word = true; in appendUnqualifiedNameBefore() 115 if (Word) { in appendUnqualifiedNameBefore() 118 Word = false; in appendUnqualifiedNameBefore() 135 else if (Word) in appendUnqualifiedNameBefore() 143 Word = false; in appendUnqualifiedNameBefore() 164 Word = true; in appendUnqualifiedNameBefore() 181 Word = true; in appendUnqualifiedNameBefore() 207 Word = true; in appendUnqualifiedNameBefore() [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | rtf | 22 # 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 D | UefiPxe.h | 1207 UINT16 Word[128]; member 1233 PXE_UINT16 Word[128]; member 1504 PXE_UINT16 Word; member 1523 PXE_UINT16 Word[MAX_EEPROM_LEN << 1]; member 1544 PXE_UINT16 Word[MAX_EEPROM_LEN << 1]; member
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/ |
H A D | llvm-cxxfilt.cpp | 139 for (const auto &Word : Words) in demangleLine() 140 Result += ::demangle(std::string(Word.first)) + Word.second.str(); in demangleLine() 143 for (const auto &Word : Words) demangleLine() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/ |
H A D | M68kMCCodeEmitter.cpp | 241 for (uint64_t Word : Data) { 243 support::endian::write<uint16_t>(CB, static_cast<uint16_t>(Word), 245 Word >>= 16; 218 for (uint64_t Word : Data) { encodeInstruction() local
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ARMEHABIPrinter.h | 327 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 D | xray_trampoline_arm.S | 9 @ Word-aligned function entry point 40 @ Word-aligned function entry point 72 @ Word-aligned function entry point
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | COFFModuleDefinition.cpp | 114 StringRef Word = Buf.substr(0, End); in lex() local 115 Kind K = llvm::StringSwitch<Kind>(Word) in lex() 130 return Token(K, Word); in lex()
|
/freebsd/contrib/file/tests/ |
H A D | issue311docx.result | 1 Microsoft Word 2007+
|
H A D | HWP2016.hwp.result | 1 Hancom HWP (Hangul Word Processor) file, version 5.0
|
H A D | HWP2016.hwpx.zip.result | 1 Hancom HWP (Hangul Word Processor) file, HWPX
|
H A D | HWP97.hwp.result | 1 Hancom HWP (Hangul Word Processor) file, version 3.0
|