Home
last modified time | relevance | path

Searched refs:Words (Results 1 – 25 of 71) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/Disassembler/
H A DMSP430Disassembler.cpp205 static const uint8_t *getDecoderTable(AddrMode SrcAM, unsigned Words) { in getDecoderTable() argument
206 assert(0 < Words && Words < 4 && "Incorrect number of words"); in getDecoderTable()
211 assert(Words < 3 && "Incorrect number of words"); in getDecoderTable()
212 return Words == 2 ? DecoderTableAlpha32 : DecoderTableAlpha16; in getDecoderTable()
214 assert(Words < 3 && "Incorrect number of words"); in getDecoderTable()
215 return Words == 2 ? DecoderTableBeta32 : DecoderTableBeta16; in getDecoderTable()
220 assert(Words > 1 && "Incorrect number of words"); in getDecoderTable()
221 return Words == 2 ? DecoderTableGamma32 : DecoderTableGamma48; in getDecoderTable()
224 assert(Words < 3 && "Incorrect number of words"); in getDecoderTable()
225 return Words == 2 ? DecoderTableDelta32 : DecoderTableDelta16; in getDecoderTable()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h72 for (WordType W : Words) in size()
78 std::memset(Words.data(), 0, NumWords*sizeof(WordType)); in clear()
82 for (WordType W : Words) in empty()
89 return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1; in count()
93 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth); in insert()
98 Words[i] |= S.Words[i]; in insert()
103 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth)); in erase()
149 WordType W = Set->Words[SkipWords]; in find_from_pos()
158 WordType W = Set->Words[i]; in find_from_pos()
177 return Words == S.Words;
[all …]
/netbsd-src/usr.bin/make/
H A Dstr.h60 typedef struct Words { struct
64 } Words; argument
302 Words Str_Words(const char *, bool);
305 Words_Free(Words w) in Words_Free()
H A Dstr.c275 Words
279 Words words; in Str_Words()
H A Dcompat.c344 Words words = Str_Words(cmd, false); in Compat_RunCommand()
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dasterix9 >7 string WORD Words Document
14 >29 byte 0x36 Words Document
H A Dapplix8 >7 string WORDS Words Document
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp150 SmallVector<std::pair<StringRef, StringRef>, 16> Words; in demangleLine() local
151 SplitStringDelims(Mangled, Words, IsLegalItaniumChar); in demangleLine()
152 for (const auto &Word : Words) in demangleLine()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp497 SmallVector<SDValue,32> Words; in buildHvxVectorReg() local
505 Words.push_back(DAG.getBitcast(MVT::i32, W)); in buildHvxVectorReg()
508 Words.assign(Values.begin(), Values.end()); in buildHvxVectorReg()
511 unsigned NumWords = Words.size(); in buildHvxVectorReg()
515 if (isUndef(Words[i])) in buildHvxVectorReg()
519 SplatV = Words[i]; in buildHvxVectorReg()
520 else if (SplatV != Words[i]) in buildHvxVectorReg()
621 assert(4*Words.size() == Subtarget.getVectorLength()); in buildHvxVectorReg()
627 {HalfV0, Words[i]}); in buildHvxVectorReg()
629 {HalfV1, Words[i+NumWords/2]}); in buildHvxVectorReg()
[all …]
H A DHexagonIntrinsicsV5.td233 // Combine Words Into Doublewords.
281 // XTYPE / ALU / Logical-logical Words.
H A DHexagonISelLowering.cpp2801 SmallVector<SDValue,4> Words[2]; in LowerCONCAT_VECTORS() local
2812 Words[IdxW].push_back(W); in LowerCONCAT_VECTORS()
2817 Words[IdxW ^ 1].clear(); in LowerCONCAT_VECTORS()
2819 for (unsigned i = 0, e = Words[IdxW].size(); i != e; i += 2) { in LowerCONCAT_VECTORS()
2820 SDValue W0 = Words[IdxW][i], W1 = Words[IdxW][i+1]; in LowerCONCAT_VECTORS()
2824 Words[IdxW ^ 1].push_back(T); in LowerCONCAT_VECTORS()
2832 assert(Scale == 2 && Words[IdxW].size() == 2); in LowerCONCAT_VECTORS()
2835 Words[IdxW][1], Words[IdxW][0]); in LowerCONCAT_VECTORS()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp75 int Words = DistanceInBytes / WordSize; in isInRage() local
76 return isInt<10>(Words); in isInRage()
/netbsd-src/external/bsd/ntp/dist/html/scripts/
H A Dmisc.txt3 <li class='inline'><a href='decode.html'>Event Messages and Status Words</a></li>\
/netbsd-src/games/boggle/boggle/
H A Dhelpfile44 Words are formed by finding a sequence of cubes (letters) that are in the
47 Words consist solely of lower case letters and must be at least 3 letters long.
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dwpm_example.txt20 Words per minute : 84
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dwpm_example.txt20 Words per minute : 84
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp2711 void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) { in tcShiftLeft() argument
2717 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftLeft()
2722 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2724 while (Words-- > WordShift) { in tcShiftLeft()
2725 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2726 if (Words > WordShift) in tcShiftLeft()
2727 Dst[Words] |= in tcShiftLeft()
2728 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2738 void APInt::tcShiftRight(WordType *Dst, unsigned Words, unsigned Count) { in tcShiftRight() argument
2744 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftRight()
[all …]
/netbsd-src/external/bsd/ntp/dist/ntpq/
H A Dntpq.texi45 * Status Words and Kiss Codes::
197 @node Control Message Commands, Status Words and Kiss Codes, Internal Commands, Top
472 @node Status Words and Kiss Codes, System Variables, Control Message Commands, Top
474 @section Status Words and Kiss Codes
482 @url{decode.html, Event Messages and Status Words} page.
494 @node System Variables, Peer Variables, Status Words and Kiss Codes, Top
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1498 ArrayRef<Elf_Word> Words( in dumpARMIndexTableSection()
1503 for (size_t I = 0, E = Words.size(); I != E; I += 2) in dumpARMIndexTableSection()
1504 S->Entries->push_back({(yaml::Hex32)Words[I], (yaml::Hex32)Words[I + 1]}); in dumpARMIndexTableSection()
/netbsd-src/external/gpl3/gcc/dist/libcody/
H A DREADME.md71 Words themselves do not contain WHITESPACE. Lines consisting solely
79 Words containing characters in the set [-+_/%.A-Za-z0-9] need not be
80 quoted. Words containing characters outside that set should be
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPInt.h1990 static void tcShiftLeft(WordType *, unsigned Words, unsigned Count);
1994 static void tcShiftRight(WordType *, unsigned Words, unsigned Count);
/netbsd-src/games/hunt/
H A DREADME15 Words of Warning:
/netbsd-src/external/gpl3/gdb/dist/readline/readline/doc/
H A Dhsuser.texi401 @samp{*}, @samp{-}, or @samp{%}. Words are numbered from the beginning
402 of the line, with the first word being denoted by 0 (zero). Words are
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc3829.txt194 [RFCKeyWords] Bradner, S., "Key Words for use in RFCs to Indicate
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4911 ArrayRef<Elf_Word> Words(reinterpret_cast<const Elf_Word *>(Desc.begin()), in getGNUAbiTag()
4914 if (Words.size() < 4) in getGNUAbiTag()
4921 if (Words[0] < array_lengthof(OSNames)) in getGNUAbiTag()
4922 OSName = OSNames[Words[0]]; in getGNUAbiTag()
4923 uint32_t Major = Words[1], Minor = Words[2], Patch = Words[3]; in getGNUAbiTag()

123