Searched refs:Where (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatCommon.h21 AlignStyle Where; member in struct:llvm::FmtAlign
25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount, argument
27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {}
49 switch (Where) {
H A DFormatAdapters.h29 AlignStyle Where; member in class:llvm::detail::final
34 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) argument
35 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount),
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
85 detail::AlignAdapter<T> fmt_align(T &&Item, AlignStyle Where, size_t Amount, argument
87 return detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount, Fill);
H A DFormatVariadic.h50 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, argument
53 Where(Where), Pad(Pad), Options(Options) {}
59 AlignStyle Where = AlignStyle::Right; member in struct:llvm::ReplacementItem
84 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
120 FmtAlign Align(*W, R.Where, R.Align, R.Pad);
194 // loc - Where to print the formatted text within the field. Only valid if
/freebsd-12-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DTokenRewriter.cpp72 TokenRewriter::AddToken(const Token &T, TokenRefTy Where) { argument
73 Where = TokenList.insert(Where, T);
76 Where)).second;
79 return Where;
/freebsd-12-stable/contrib/bmake/lst.lib/
H A DlstInt.h63 } Where; typedef in typeref:enum:__anon921
73 Where atEnd; /* Where in the list the last access was */
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp26 bool formatv_object_base::consumeFieldLayout(StringRef &Spec, AlignStyle &Where, argument
28 Where = AlignStyle::Right;
44 Where = *Loc;
47 Where = *Loc;
64 AlignStyle Where = AlignStyle::Right; local
75 if (!consumeFieldLayout(RepString, Where, Align, Pad))
88 return ReplacementItem{Spec, Index, Align, Where, Pad, Options};
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMemIntrinsicResults.cpp102 MachineInstr *Where = O.getParent(); local
105 if (&MI == Where || !MDT.dominates(&MI, Where))
109 SlotIndex WhereIdx = LIS.getInstructionIndex(*Where);
120 LLVM_DEBUG(dbgs() << "Setting operand " << O << " in " << *Where << " from "
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h100 /// Where a mayalias b, *does* require RenameUses be set to true.
141 void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where);
142 void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where);
144 MemorySSA::InsertionPlace Where);
263 // Move What before Where in the MemorySSA IR.
265 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h75 TokenRefTy AddToken(const Token &T, TokenRefTy Where);
/freebsd-12-stable/sys/contrib/dev/acpica/components/executer/
H A Dexdebug.c431 if (!(*SourceDesc->Reference.Where))
437 AcpiExDoDebugObject (*SourceDesc->Reference.Where,
H A Dexresolv.c328 ObjDesc = *StackDesc->Reference.Where;
447 * ReturnType - Where the object type is returned
448 * ReturnDesc - Where the resolved object is returned
600 ObjDesc = *(ObjDesc->Reference.Where);
H A Dexstore.c183 * *DestDesc - Where to store it. Must be an NS node
367 * The object at *(IndexDesc->Reference.Where) is the
371 ObjDesc = *(IndexDesc->Reference.Where);
406 *(IndexDesc->Reference.Where) = NewDesc;
/freebsd-12-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbobject.c463 AcpiOsPrintf ("%p", ObjDesc->Reference.Where);
464 if (!ObjDesc->Reference.Where)
471 *(ObjDesc->Reference.Where));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp1124 // Move What before Where in the MemorySSA IR.
1127 WhereType Where) {
1137 MSSA->moveTo(What, BB, Where);
1150 // Move What before Where in the MemorySSA IR.
1151 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { argument
1152 moveTo(What, Where->getBlock(), Where->getIterator());
1155 // Move What after Where in the MemorySSA IR.
1156 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { argument
1157 moveTo(What, Where
1126 moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where) argument
1160 moveToPlace(MemoryUseOrDef *What, BasicBlock *BB, MemorySSA::InsertionPlace Where) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp39 uint64_t Pos; // Where to patch.
207 ProfilingData::iterator Where; local
208 std::tie(Where, NewFunc) =
214 InstrProfRecord &Dest = Where->second;
230 ProfilingData::iterator Where; local
231 std::tie(Where, NewFunc) =
233 InstrProfRecord &Dest = Where->second;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h705 /// into this MBB right before 'Where'.
708 void splice(iterator Where, MachineBasicBlock *Other, iterator From) { argument
710 if (Where != From)
711 splice(Where, Other, From, std::next(From));
715 /// and insert them into this MBB right before 'Where'.
717 /// The instruction at 'Where' must not be included in the range of
719 void splice(iterator Where, MachineBasicBlock *Other, argument
721 Insts.splice(Where.getInstrIterator(), Other->Insts,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueMap.h126 auto Where = MDMap->find(MD);
127 if (Where == MDMap->end())
129 return Where->second.get();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp111 auto Where = ConstantDependenciesCache.find(CE); local
112 if (Where != ConstantDependenciesCache.end()) {
113 auto const &K = Where->second;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInternal.h101 void PrintStats(const char *Where, const char *End = "\n", size_t Units = 0,
H A DFuzzerMerge.cpp214 auto PrintStatsWrapper = [this, &AllFeatures](const char* Where) {
215 this->PrintStats(Where, "\n", 0, AllFeatures.size());
/freebsd-12-stable/sys/contrib/dev/acpica/include/
H A Dacdebug.h596 UINT32 Where);
H A Dacobject.h554 union acpi_operand_object **Where; /* Target of Index */ member in struct:acpi_object_reference
/freebsd-12-stable/stand/i386/pxeldr/
H A Dpxeldr.S46 .set MEM_ARG_BTX,0xa100 # Where we move them to so the
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp584 auto Where = Info.find(&Op); local
585 assert(Where != Info.end() && "Expected a valid reference");
587 auto &OpD = Where->second;
688 auto Where = Info.find(Op);
689 return Where != Info.end() && Where->second.HasChanged;
/freebsd-12-stable/crypto/heimdal/lib/roken/
H A Dstrftime.c356 #error Where in timezone chaos are you?

Completed in 328 milliseconds

12