/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | RangedConstraintManager.h | 197 RangeSet intersect(RangeSet What, llvm::APSInt Lower, llvm::APSInt Upper); 205 RangeSet intersect(RangeSet What, llvm::APSInt Point); 239 RangeSet negate(RangeSet What); 261 RangeSet castTo(RangeSet What, APSIntType Ty); 262 RangeSet castTo(RangeSet What, QualType T); 281 ContainerType truncateTo(RangeSet What, APSIntType Ty); 287 ContainerType convertTo(RangeSet What, APSIntType Ty); 292 ContainerType promoteTo(RangeSet What, APSIntType Ty);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | MemorySSAUpdater.h | 128 void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where); 129 void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where); 130 void moveToPlace(MemoryUseOrDef *What, BasicBlock *BB, 249 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | RangeConstraintManager.cpp | 474 RangeSet RangeSet::Factory::intersect(RangeSet What, llvm::APSInt Lower, in intersect() argument 476 if (What.isEmpty() || !What.pin(Lower, Upper)) in intersect() 492 if (What.getMaxValue() < Lower || Upper < What.getMinValue()) in intersect() 505 if (What.getMaxValue() < Lower && Upper < What.getMinValue()) in intersect() 514 return intersect(*What.Impl, DummyContainer); in intersect() 611 RangeSet RangeSet::Factory::negate(RangeSet What) { in negate() argument 612 if (What.isEmpty()) in negate() 615 const llvm::APSInt SampleValue = What.getMinValue(); in negate() 620 Result.reserve(What.size() + (SampleValue == MIN)); in negate() 623 const_iterator It = What.begin(); in negate() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemorySSAUpdater.cpp | 1141 void MemorySSAUpdater::moveTo(MemoryUseOrDef *What, BasicBlock *BB, in moveTo() argument 1144 for (auto *U : What->users()) in moveTo() 1149 What->replaceAllUsesWith(What->getDefiningAccess()); in moveTo() 1152 MSSA->moveTo(What, BB, Where); in moveTo() 1155 if (auto *MD = dyn_cast<MemoryDef>(What)) in moveTo() 1158 insertUse(cast<MemoryUse>(What), /*RenameUses=*/true); in moveTo() 1166 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveBefore() argument 1167 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore() 1171 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveAfter() argument 1172 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter() [all …]
|
H A D | MemorySSA.cpp | 1650 void MemorySSA::insertIntoListsBefore(MemoryAccess *What, const BasicBlock *BB, in insertIntoListsBefore() argument 1654 Accesses->insert(AccessList::iterator(InsertPt), What); in insertIntoListsBefore() 1655 if (!isa<MemoryUse>(What)) { in insertIntoListsBefore() 1662 Defs->push_back(*What); in insertIntoListsBefore() 1664 Defs->insert(InsertPt->getDefsIterator(), *What); in insertIntoListsBefore() 1670 Defs->push_back(*What); in insertIntoListsBefore() 1672 Defs->insert(InsertPt->getDefsIterator(), *What); in insertIntoListsBefore() 1678 void MemorySSA::prepareForMoveTo(MemoryAccess *What, BasicBlock *BB) { in prepareForMoveTo() argument 1680 removeFromLists(What, false); in prepareForMoveTo() 1685 if (auto *MD = dyn_cast<MemoryDef>(What)) in prepareForMoveTo() [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | directive-elif.exp | 9 make: "directive-elif.mk" line 117: What happens on misspelling in a skipped branch? 11 make: "directive-elif.mk" line 132: What happens on misspelling in a taken branch?
|
H A D | directive-elif.mk | 117 .info What happens on misspelling in a skipped branch? 132 .info What happens on misspelling in a taken branch?
|
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
H A D | evpmac_poly1305.txt | 47 # What happens if addition of s overflows modulo 2^128? 54 # What happens if data limb is all ones and there is carry from lower limb? 61 # What happens if final result from polynomial part is exactly 2^130-5? 68 # What happens if final result from polynomial part is exactly 2^130-6?
|
/freebsd/crypto/heimdal/doc/ |
H A D | intro.texi | 3 @node Introduction, What is Kerberos?, Top, Top 4 @c @node Introduction, What is Kerberos?, Top, Top 8 @heading What is Heimdal?
|
H A D | install.texi | 1 @node Building and Installing, Setting up a realm, What is Kerberos?, Top
|
/freebsd/contrib/dialog/samples/install/ |
H A D | setup.help | 24 What does "setup" do on my computer? 42 What is lilo and how should I install it?
|
/freebsd/contrib/libder/ |
H A D | README.md | 3 ## What is libder? 16 ## What is libder not?
|
/freebsd/contrib/ntp/sntp/m4/ |
H A D | ntp_lib_m.m4 | 2 dnl What do we need for math libraries?
|
H A D | ntp_dir_sep.m4 | 2 dnl What directory path separator do we use?
|
/freebsd/crypto/heimdal/appl/telnet/ |
H A D | telnet.state | 6 MY_STATE: What state am I in? 7 WANT_STATE: What state do I want?
|
/freebsd/contrib/libcbor/.github/ |
H A D | PULL_REQUEST_TEMPLATE | 3 What changes and why
|
/freebsd/sys/contrib/openzfs/.github/ISSUE_TEMPLATE/ |
H A D | feature_request.md | 26 What problem does this feature solve?
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kInstrInfo.td | 581 // jPat: What ARI pattern to use 584 // oPat: What ARIPI pattern is used 587 // ePat: What ARIPD pattern is used 590 // pPat: What ARID pattern is used 593 // fPat: What ARII pattern is used 596 // bPat: What absolute pattern is used 599 // qPat: What PCD pattern is used 602 // kPat: What PCI pattern is used 605 // iPat: What immediate pattern is used 607 // load: What load operation is used with MEM
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_faq.md | 3 ### When I call a method on my mock object, the method for the real object is invoked instead. What… 82 ### I can't figure out why gMock thinks my expectations are not satisfied. What should I do? 137 ### I get a heapcheck failure when using a mock object, but using a real object is fine. What can b… 348 What it means is that you have a mock function, you haven't set any expectations 353 What if you actually meant to disallow this function to be called, but forgot to 375 …ee() in WillOnce(), but gcc complains about "conflicting return type specified". What does it mean? 386 ### I have a huge mock class, and Microsoft Visual C++ runs out of memory when compiling it. What c…
|
/freebsd/crypto/heimdal/etc/ |
H A D | services.append | 13 ekshell2 2106/tcp # What U of Colorado @ Boulder uses?
|
/freebsd/sys/contrib/device-tree/Bindings/ |
H A D | writing-bindings.rst | 58 - DO define properties in terms of constraints. How many entries? What are 59 possible values? What is the order?
|
/freebsd/contrib/blocklist/ |
H A D | TODO | 8 <bge0/4>? What to do with multiple addresses?
|
/freebsd/tests/sys/geom/class/uzip/etalon/ |
H A D | etalon.txt | 7 (from Through the Looking-Glass and What Alice Found There, 1872)
|
/freebsd/contrib/libxo/doc/ |
H A D | faq.rst | 125 What makes a good field name? 179 What does "errors2" mean? No one will know. "errors-after-restart" 205 What does this message mean?
|
/freebsd/sys/netgraph/bluetooth/l2cap/ |
H A D | TODO | 29 Will fix later. What to count?
|