Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/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 …]
/freebsd/contrib/file/magic/Magdir/
H A Dasterix9 >7 string WORD Words Document
14 >29 byte 0x36 Words Document
H A Dapplix8 >7 string WORDS Words Document
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.h72 for (WordType W : Words) in size()
77 void clear() { std::memset(Words.data(), 0, NumWords * sizeof(WordType)); } in clear()
80 for (WordType W : Words) in empty()
87 return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1; in count()
91 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth); in insert()
96 Words[i] |= S.Words[i]; in insert()
101 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth)); in erase()
147 WordType W = Set->Words[SkipWords]; in find_from_pos()
156 WordType W = Set->Words[i]; in find_from_pos()
175 return Words == S.Words;
[all …]
/freebsd/contrib/bmake/
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.c342 Words words = Str_Words(cmd, false); in Compat_RunCommand()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp137 SmallVector<std::pair<StringRef, StringRef>, 16> Words;
138 SplitStringDelims(Mangled, Words, IsLegalItaniumChar); in demangleLine()
139 for (const auto &Word : Words) in demangleLine()
141 SmallVector<std::pair<StringRef, StringRef>, 16> Words; demangleLine() local
/freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp75 int Words = DistanceInBytes / WordSize; in isInRage() local
76 return isInt<10>(Words); in isInRage()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp791 SmallVector<SDValue,32> Words; in buildHvxVectorReg() local
801 Words.push_back(DAG.getBitcast(MVT::i32, W)); in buildHvxVectorReg()
805 Words.push_back(DAG.getBitcast(MVT::i32, V)); in buildHvxVectorReg()
825 unsigned NumWords = Words.size(); in buildHvxVectorReg()
827 bool IsSplat = isSplat(Words, SplatV); in buildHvxVectorReg()
926 assert(4*Words.size() == Subtarget.getVectorLength()); in buildHvxVectorReg()
931 if (Words[i].isUndef()) in buildHvxVectorReg()
934 if (Words[i] == Words[j]) in buildHvxVectorReg()
943 SDValue SplatV = DAG.getNode(ISD::SPLAT_VECTOR, dl, VecTy, Words[ in buildHvxVectorReg()
1038 SmallVector<SDValue,4> Words[2]; createHvxPrefixPred() local
1982 SmallVector<SDValue,4> Words; LowerHvxBitcast() local
[all...]
H A DHexagonIntrinsicsV5.td233 // Combine Words Into Doublewords.
281 // XTYPE / ALU / Logical-logical Words.
H A DHexagonISelLowering.cpp3020 SmallVector<SDValue,4> Words[2]; in LowerCONCAT_VECTORS() local
3030 Words[IdxW].push_back(W); in LowerCONCAT_VECTORS()
3035 Words[IdxW ^ 1].clear(); in LowerCONCAT_VECTORS()
3037 for (unsigned i = 0, e = Words[IdxW].size(); i != e; i += 2) { in LowerCONCAT_VECTORS()
3038 SDValue W0 = Words[IdxW][i], W1 = Words[IdxW][i+1]; in LowerCONCAT_VECTORS()
3042 Words[IdxW ^ 1].push_back(T); in LowerCONCAT_VECTORS()
3049 assert(Scale == 2 && Words[IdxW].size() == 2); in LowerCONCAT_VECTORS()
3051 SDValue WW = getCombine(Words[IdxW][1], Words[IdxW][0], dl, MVT::i64, DAG); in LowerCONCAT_VECTORS()
/freebsd/contrib/ntp/html/scripts/
H A Dmisc.txt3 <li class='inline'><a href='decode.html'>Event Messages and Status Words</a></li>\
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp426 std::array<uint64_t, 2> Words; in getModuleContextHash() local
427 static_assert(sizeof(Hash) == sizeof(Words), "Hash must match Words"); in getModuleContextHash()
428 std::memcpy(Words.data(), Hash.data(), sizeof(Hash)); in getModuleContextHash()
429 return toString(llvm::APInt(sizeof(Words) * 8, Words), 36, /*Signed=*/false); in getModuleContextHash()
/freebsd/sys/dev/mpi3mr/mpi/
H A Dmpi30_transport.h444 U32 Words[4]; member
509 U32 Words[4]; member
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp2668 void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) { in tcShiftLeft() argument
2674 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftLeft()
2679 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2681 while (Words-- > WordShift) { in tcShiftLeft()
2682 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2683 if (Words > WordShift) in tcShiftLeft()
2684 Dst[Words] |= in tcShiftLeft()
2685 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2695 void APInt::tcShiftRight(WordType *Dst, unsigned Words, unsigned Count) { in tcShiftRight() argument
2701 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftRight()
[all …]
/freebsd/stand/ficl/softwords/
H A Dfreebsd.fr26 \ Words for use in scripts:
/freebsd/share/examples/bootforth/
H A Dframes.4th1 \ Words implementing frame drawing
/freebsd/sys/dev/mps/mpi/
H A Dmpi2.h388 U64 Words; member
494 U64 Words; member
/freebsd/contrib/ntp/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
/freebsd/sys/dev/mpr/mpi/
H A Dmpi2.h503 U64 Words; member
653 U64 Words; member
/freebsd/contrib/tcsh/nls/C/
H A Dset122 20 Words not parenthesized
/freebsd/sys/dev/mpr/
H A Dmpr.c1147 rd.u.low = cm->cm_desc.Words.Low; in mpr_enqueue_request()
1151 rd.u.low = htole32(cm->cm_desc.Words.Low); in mpr_enqueue_request()
1152 rd.u.high = htole32(cm->cm_desc.Words.High); in mpr_enqueue_request()
2128 hdr.deschi = cm->cm_desc.Words.High; in mpr_dump_reqs()
2129 hdr.desclo = cm->cm_desc.Words.Low; in mpr_dump_reqs()
2551 (le32toh(desc->Words.High) == 0xffffffff)) in mpr_intr_locked()
/freebsd/sys/dev/mps/
H A Dmps.c1107 rd.u.low = cm->cm_desc.Words.Low; in mps_enqueue_request()
1108 rd.u.high = cm->cm_desc.Words.High; in mps_enqueue_request()
1984 hdr.deschi = cm->cm_desc.Words.High; in mps_dump_reqs()
1985 hdr.desclo = cm->cm_desc.Words.Low; in mps_dump_reqs()
2402 || (le32toh(desc->Words.High) == 0xffffffff)) in mps_intr_locked()
/freebsd/sys/dev/mrsas/
H A Dmrsas.c1676 desc_val.word = desc->Words; in mrsas_complete_cmd()
1770 desc->Words = ~((uint64_t)0x00); /* set it back to all in mrsas_complete_cmd()
1783 desc_val.word = desc->Words; in mrsas_complete_cmd()
2766 req_desc.addr.Words = htole64((bus_addr_t)sc->ioc_init_phys_mem); in mrsas_ioc_init()
2900 reply_desc->Words = MRSAS_ULONG_MAX; in mrsas_alloc_mpt_cmds()
3199 reply_desc->Words = MRSAS_ULONG_MAX; in mrsas_reset_reply_desc()
3887 req_desc->addr.Words = 0; in mrsas_build_mpt_cmd()

123