Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/Disassembler/
H A DMSP430Disassembler.cpp206 assert(0 < Words && Words < 4 && "Incorrect number of words"); in getDecoderTable()
241 unsigned Words = 1; in getInstructionI() local
247 if (Bytes.size() < (Words + 1) * 2) { in getInstructionI()
252 ++Words; in getInstructionI()
261 if (Bytes.size() < (Words + 1) * 2) { in getInstructionI()
266 << (Words * 16); in getInstructionI()
267 ++Words; in getInstructionI()
276 Size = Words * 2; in getInstructionI()
295 unsigned Words = 1; in getInstructionII() local
306 ++Words; in getInstructionII()
[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/
H A DCodeGenDAGPatterns.h74 for (WordType W : Words) in size()
80 std::memset(Words.data(), 0, NumWords*sizeof(WordType)); in clear()
84 for (WordType W : Words) in empty()
91 return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1; in count()
95 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth); in insert()
100 Words[i] |= S.Words[i]; in insert()
105 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth)); in erase()
153 WordType W = Set->Words[SkipWords]; in find_from_pos()
162 WordType W = Set->Words[i]; in find_from_pos()
181 return Words == S.Words;
[all …]
/freebsd/contrib/bmake/
H A Dstr.h60 typedef struct Words { struct
64 } Words; typedef
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.c323 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; in demangleLine() local
138 SplitStringDelims(Mangled, Words, IsLegalItaniumChar); in demangleLine()
139 for (const auto &Word : Words) in demangleLine()
/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
931 if (Words[i].isUndef()) in buildHvxVectorReg()
934 if (Words[i] == Words[j]) in buildHvxVectorReg()
959 if (Words[i] != Words[n] || VecHist[n] <= 1) { in buildHvxVectorReg()
966 if (Words[i+NumWords/2] != Words[n] || VecHist[n] <= 1) { in buildHvxVectorReg()
1048 Words[IdxW].clear(); in createHvxPrefixPred()
1058 Words[IdxW].push_back(W); in createHvxPrefixPred()
1059 Words[IdxW].push_back(W); in createHvxPrefixPred()
1981 SmallVector<SDValue,4> Words; in LowerHvxBitcast() local
1985 Words.push_back(W); in LowerHvxBitcast()
[all …]
H A DHexagonIntrinsicsV5.td233 // Combine Words Into Doublewords.
281 // XTYPE / ALU / Logical-logical Words.
H A DHexagonISelLowering.cpp3003 SmallVector<SDValue,4> Words[2]; in LowerCONCAT_VECTORS() local
3013 Words[IdxW].push_back(W); in LowerCONCAT_VECTORS()
3018 Words[IdxW ^ 1].clear(); in LowerCONCAT_VECTORS()
3020 for (unsigned i = 0, e = Words[IdxW].size(); i != e; i += 2) { in LowerCONCAT_VECTORS()
3021 SDValue W0 = Words[IdxW][i], W1 = Words[IdxW][i+1]; in LowerCONCAT_VECTORS()
3025 Words[IdxW ^ 1].push_back(T); in LowerCONCAT_VECTORS()
3032 assert(Scale == 2 && Words[IdxW].size() == 2); in LowerCONCAT_VECTORS()
3034 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.cpp357 std::array<uint64_t, 2> Words; in getModuleContextHash() local
358 static_assert(sizeof(Hash) == sizeof(Words), "Hash must match Words"); in getModuleContextHash()
359 std::memcpy(Words.data(), Hash.data(), sizeof(Hash)); in getModuleContextHash()
360 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.cpp2676 void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) { in tcShiftLeft() argument
2682 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftLeft()
2687 std::memmove(Dst + WordShift, Dst, (Words - WordShift) * APINT_WORD_SIZE); in tcShiftLeft()
2689 while (Words-- > WordShift) { in tcShiftLeft()
2690 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft()
2691 if (Words > WordShift) in tcShiftLeft()
2692 Dst[Words] |= in tcShiftLeft()
2693 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft()
2703 void APInt::tcShiftRight(WordType *Dst, unsigned Words, unsigned Count) { in tcShiftRight() argument
2709 unsigned WordShift = std::min(Count / APINT_BITS_PER_WORD, Words); in tcShiftRight()
[all …]
/freebsd/share/examples/bootforth/
H A Dframes.4th1 \ Words implementing frame drawing
/freebsd/stand/ficl/softwords/
H A Dfreebsd.fr26 \ Words for use in scripts:
/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()
2115 hdr.deschi = cm->cm_desc.Words.High; in mpr_dump_reqs()
2116 hdr.desclo = cm->cm_desc.Words.Low; in mpr_dump_reqs()
2538 (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()
1962 hdr.deschi = cm->cm_desc.Words.High; in mps_dump_reqs()
1963 hdr.desclo = cm->cm_desc.Words.Low; in mps_dump_reqs()
2380 || (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()

12