Home
last modified time | relevance | path

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

123456

/openbsd-src/games/hangman/
H A Dgetword.c64 if (fgets(Word, BUFSIZ, inf) == NULL) in getword()
66 if (fgets(Word, BUFSIZ, inf) == NULL) in getword()
68 wordlen = strlen(Word); in getword()
69 if (wordlen > 0 && Word[wordlen - 1] == '\n') in getword()
70 Word[wordlen - 1] = '\0'; in getword()
73 for (wp = Word; *wp; wp++) in getword()
86 wp = Word; in getword()
H A Dgetguess.c94 for (i = 0; Word[i] != '\0'; i++) in getguess()
95 if (Word[i] == ch) { in getguess()
98 } else if (Word[i] == uch) { in getguess()
H A Dksyms.c87 strlcpy(Word, sym, sizeof Word); in sym_getword()
H A Dextern.c38 char Word[BUFSIZ], Known[BUFSIZ]; variable
H A Dendgame.c54 printw("Sorry, the word was \"%s\"\n", Word); in endgame()
H A Dhangman.h65 extern char Word[BUFSIZ], Known[BUFSIZ];
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerDictionary.h49 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 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()
H A DFuzzerTracePC.cpp351 size_t Len = std::min(n, Word::GetMaxSize()); in AddValueForMemcmp()
354 uint8_t B1[Word::kMaxSize]; in AddValueForMemcmp()
355 uint8_t B2[Word::kMaxSize]; in AddValueForMemcmp()
377 TORCW.Insert(Idx ^ Hash, Word(B1, Len), Word(B2, Len)); in AddValueForMemcmp()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DIRSymtab.h52 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;
/openbsd-src/usr.bin/file/magdir/
H A Dwordprocessors6 ####### PWP file format used on Smith Corona Personal Word Processors:
107 # Hangul (Korean) Word Processor File
108 0 string HWP\ Document\ File Hangul (Korean) Word Processor File 3.0
110 512 string R\0o\0o\0t\0 Hangul (Korean) Word Processor File 2000
135 # ichitaro456: file(1) magic for Just System Word Processor Ichitaro
142 >43 byte 0x14 Just System Word Processor Ichitaro v4
147 >43 byte 0x15 Just System Word Processor Ichitaro v5
151 >43 byte 0x16 Just System Word Processor Ichitaro v6
H A Depoc8 >>8 lelong 0x1000007F Word
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFTypePrinter.cpp88 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()
208 Word = true; in appendUnqualifiedNameBefore()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dmentor1.C4 struct Word { struct
8 Word o; argument
/openbsd-src/gnu/llvm/llvm/lib/Target/M68k/MCTargetDesc/
H A DM68kMCCodeEmitter.cpp217 for (uint64_t Word : Data) { in encodeInstruction() local
219 support::endian::write<uint16_t>(OS, static_cast<uint16_t>(Word), in encodeInstruction()
221 Word >>= 16; in encodeInstruction()
/openbsd-src/gnu/llvm/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp140 for (const auto &Word : Words) in demangleLine() local
141 Result += ::demangle(std::string(Word.first)) + Word.second.str(); in demangleLine()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DCOFFModuleDefinition.cpp115 StringRef Word = Buf.substr(0, End); in lex() local
116 Kind K = llvm::StringSwitch<Kind>(Word) in lex()
130 return Token(K, Word); in lex()
/openbsd-src/gnu/usr.sbin/mkhybrid/src/
H A Dmapping6 .doc Raw 'MSWD' 'WDBN' "Word file"
H A Dmore.mapping57 .doc Raw 'MSWD' 'WDBN' "Microsoft Word - Word Document (application/msword)"
58 .dot Raw 'MSWD' 'sDBN' "Microsoft Word - Word for Windows Template"
116 .mcw Raw 'MSWD' 'WDBN' "Microsoft Word - Mac Word Document"
203 .rtf Ascii 'MSWD' 'TEXT' "Microsoft Word - Rich Text Format (application/rtf)"
265 .wri Raw 'MSWD' 'WDBN' "Microsoft Word - MS Write/Windows"
/openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVUtils.cpp31 uint32_t Word = 0u; // Build up this 32-bit word from 4 8-bit chars. in convertCharsToWord() local
38 Word |= (CharToAdd << (WordIndex * 8)); in convertCharsToWord()
40 return Word; in convertCharsToWord()

123456