Home
last modified time | relevance | path

Searched refs:Where (Results 1 – 25 of 143) sorted by relevance

123456

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatCommon.h21 AlignStyle Where; member
25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount,
27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in Adapter()
49 switch (Where) { in format()
H A DFormatAdapters.h28 AlignStyle Where; variable
33 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter() argument
34 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), in AlignAdapter()
39 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format()
86 detail::AlignAdapter<T> fmt_align(T &&Item, AlignStyle Where, size_t Amount,
88 return detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount, Fill);
H A DFormatVariadic.h52 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, in ReplacementItem()
55 Where(Where), Pad(Pad), Options(Options) {} in ReplacementItem()
61 AlignStyle Where = AlignStyle::Right; member
71 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
100 FmtAlign Align(*W, R.Where, R.Align, R.Pad); in format()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp28 bool formatv_object_base::consumeFieldLayout(StringRef &Spec, AlignStyle &Where, in consumeFieldLayout() argument
30 Where = AlignStyle::Right; in consumeFieldLayout()
46 Where = *Loc; in consumeFieldLayout()
49 Where = *Loc; in consumeFieldLayout()
66 AlignStyle Where = AlignStyle::Right; in parseReplacementItem() local
76 if (!consumeFieldLayout(RepString, Where, Align, Pad)) in parseReplacementItem()
89 return ReplacementItem{Spec, Index, Align, Where, Pad, Options}; in parseReplacementItem()
/freebsd-14.2/contrib/llvm-project/clang/lib/Rewrite/
H A DTokenRewriter.cpp72 TokenRewriter::AddToken(const Token &T, TokenRefTy Where) { in AddToken() argument
73 Where = TokenList.insert(Where, T); in AddToken()
76 Where)).second; in AddToken()
79 return Where; in AddToken()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMemIntrinsicResults.cpp101 MachineInstr *Where = O.getParent(); in replaceDominatedUses() local
104 if (&MI == Where || !MDT.dominates(&MI, Where)) in replaceDominatedUses()
108 SlotIndex WhereIdx = LIS.getInstructionIndex(*Where); in replaceDominatedUses()
119 LLVM_DEBUG(dbgs() << "Setting operand " << O << " in " << *Where << " from " in replaceDominatedUses()
/freebsd-14.2/contrib/kyua/doc/
H A Dmanbuild_test.sh58 Where __FOO__ gets replaced.
64 Where this gets replaced.
75 Where __FOO__ gets __BAR__.
81 Where this gets replaced.
188 Where __FOO__ gets replaced.
/freebsd-14.2/crypto/openssl/test/recipes/90-test_includes_data/conf-includes/
H A Dincludes1.cnf14 dir = ./demoCA # Where everything is kept
15 certs = $dir/certs # Where the issued certs are kept
16 crl_dir = $dir/crl # Where the issued crl are kept
/freebsd-14.2/contrib/smbfs/
H A Dconfig.mk.in7 # Where your kernel source tree located (/usr/src/sys for example)
10 # Where the kernel module gets installed
13 # Where all files get installed
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h128 void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where);
129 void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where);
131 MemorySSA::InsertionPlace Where);
244 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
/freebsd-14.2/crypto/openssl/VMS/
H A Dopenssl_startup.com.in13 $ ! OSSL$LIB Where the static library files
15 $ ! OSSL$SHARE Where the shareable image files
17 $ ! OSSL$EXE Where the executables are located
18 $ ! OSSL$ENGINESnnn Where the engines modules are located
19 $ ! OSSL$MODULES Where the non-engine modules are located
/freebsd-14.2/crypto/openssl/test/
H A Dtest.cnf9 dir = ./demoCA # Where everything is kept
10 certs = $dir/certs # Where the issued certs are kept
11 crl_dir = $dir/crl # Where the issued crl are kept
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DCalledOnceCheck.h74 const Decl *Where, in handleCapturedNeverCalled() argument
90 const Decl *Function, const Stmt *Where, in handleNeverCalled() argument
/freebsd-14.2/sys/contrib/dev/acpica/components/debugger/
H A Ddbobject.c463 AcpiOsPrintf ("%p", ObjDesc->Reference.Where); in AcpiDbDisplayInternalObject()
464 if (!ObjDesc->Reference.Where) in AcpiDbDisplayInternalObject()
471 *(ObjDesc->Reference.Where)); in AcpiDbDisplayInternalObject()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp1142 WhereType Where) { in moveTo() argument
1152 MSSA->moveTo(What, BB, Where); 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()
1176 MemorySSA::InsertionPlace Where) { in moveToPlace() argument
1177 if (Where != MemorySSA::InsertionPlace::BeforeTerminator) in moveToPlace()
1178 return moveTo(What, BB, Where); in moveToPlace()
1180 if (auto *Where = MSSA->getMemoryAccess(BB->getTerminator())) in moveToPlace() local
[all …]
/freebsd-14.2/crypto/openssh/
H A DPROTOCOL.krl18 Where "krl_version" is a version number that increases each time the KRL
29 Where "section_type" indicates the type of the "section_data". An exception
52 Where "ca_key" is the standard SSH wire serialisation of the CA's
132 Where "extension_name" describes the type of extension. It is
184 Where "extension_name" describes the type of extension. It is
H A DPROTOCOL.agent23 Where 'hostkey' is the encoded server host public key, 'session
48 Where a constraint consists of:
94 Where "certsblob" consists of one or more certificates encoded as public
/freebsd-14.2/contrib/ntp/scripts/
H A Dplot_summary-opts.def18 descrip = 'Where the summary files are';
30 Where does the plotted data come from, default to string "host" plus
/freebsd-14.2/sys/contrib/dev/acpica/components/executer/
H A Dexdebug.c431 if (!(*SourceDesc->Reference.Where)) in AcpiExDoDebugObject()
437 AcpiExDoDebugObject (*SourceDesc->Reference.Where, in AcpiExDoDebugObject()
H A Dexstore.c371 ObjDesc = *(IndexDesc->Reference.Where); in AcpiExStoreObjectToIndex()
406 *(IndexDesc->Reference.Where) = NewDesc; in AcpiExStoreObjectToIndex()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp1092 InstListType::iterator Where) { in insertDPValueBefore() argument
1095 assert(Where != end()); in insertDPValueBefore()
1096 assert(Where->getParent() == this); in insertDPValueBefore()
1097 if (!Where->DbgMarker) in insertDPValueBefore()
1098 createMarker(Where); in insertDPValueBefore()
1099 bool InsertAtHead = Where.getHeadBit(); in insertDPValueBefore()
1100 Where->DbgMarker->insertDPValue(DPV, InsertAtHead); in insertDPValueBefore()
/freebsd-14.2/contrib/netbsd-tests/lib/libcurses/
H A Dtestframe.txt57 Where var_name is the name of the variable. Variable names are
111 Where var_name is a variable previously assigned and
122 Where filename is the name of the file containing the expected
145 Where time is the amount of time to delay in milliseconds.
156 Where filename is the name of the file to include. If the
199 \nnn Where nnn is three octal digits, the character
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp70 auto Where = ConstantDependenciesCache.find(CE); in ComputeDependencies() local
71 if (Where != ConstantDependenciesCache.end()) { in ComputeDependencies()
72 auto const &K = Where->second; in ComputeDependencies()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp1150 CombineInfo *Where; in checkAndPrepareMerge() local
1158 Where = &CI; in checkAndPrepareMerge()
1166 Where = &Paired; in checkAndPrepareMerge()
1175 return Where; in checkAndPrepareMerge()
2419 if (!Where) { in optimizeInstsWithSameBaseAddr()
2434 NewMI = mergeRead2Pair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
2437 NewMI = mergeWrite2Pair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
2454 NewMI = mergeImagePair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
2468 NewMI = mergeFlatLoadPair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
2474 NewMI = mergeFlatStorePair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp224 ProfilingData::iterator Where; in overlapRecord() local
225 std::tie(Where, NewFunc) = in overlapRecord()
231 InstrProfRecord &Dest = Where->second; in overlapRecord()
246 ProfilingData::iterator Where; in addRecord() local
247 std::tie(Where, NewFunc) = in addRecord()
249 InstrProfRecord &Dest = Where->second; in addRecord()

123456