Home
last modified time | relevance | path

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

1234567

/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DDirectiveNameParser.cpp48 State *Where = &InitialState; in insertName() local
51 Where = insertTransition(Where, Tok); in insertName()
53 Where->Value = D; in insertName()
64 auto [Where, DidIt] = From->Transition->try_emplace(Tok, State()); in insertTransition()
66 return &Where->second; in insertTransition()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatCommon.h23 AlignStyle Where; member
27 FmtAlign(support::detail::format_adapter &Adapter, AlignStyle Where,
29 : Adapter(Adapter), Where(Where), Width(Width), Fill(Fill) {} in Adapter()
51 switch (Where) { in format()
H A DFormatAdapters.h30 AlignStyle Where; variable
35 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter() argument
36 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), in AlignAdapter()
41 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format()
89 support::detail::AlignAdapter<T> fmt_align(T &&Item, AlignStyle Where,
91 return support::detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount,
H A DFormatVariadic.h53 AlignStyle Where, char Pad, StringRef Options) in ReplacementItem()
55 Where(Where), Pad(Pad), Options(Options) {} in ReplacementItem()
61 AlignStyle Where = AlignStyle::Right; member
95 FmtAlign Align(*W, R.Where, R.Width, R.Pad); in format()
/freebsd/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/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp28 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where, in consumeFieldLayout() argument
30 Where = AlignStyle::Right; in consumeFieldLayout()
45 Where = *Loc; in consumeFieldLayout()
48 Where = *Loc; in consumeFieldLayout()
64 AlignStyle Where = AlignStyle::Right; in parseReplacementItem() local
73 if (!consumeFieldLayout(RepString, Where, Align, Pad)) { in parseReplacementItem()
89 return ReplacementItem(Spec, Index, Align, Where, Pad, Options); in parseReplacementItem()
/freebsd/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/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/
H A DScheduler.cpp33 void SchedBundle::cluster(BasicBlock::iterator Where) { in cluster() argument
36 if (I->getIterator() == Where) in cluster()
37 ++Where; // Try to maintain bundle order. in cluster()
38 I->moveBefore(*Where.getNodeParent(), Where); in cluster()
72 auto Where = *ScheduleTopItOpt; in scheduleAndUpdateReadyList() local
74 Bndl.cluster(Where); in scheduleAndUpdateReadyList()
/freebsd/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/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/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/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h131 LLVM_ABI void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where);
132 LLVM_ABI void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where);
134 MemorySSA::InsertionPlace Where);
248 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
/freebsd/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/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/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/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/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp1157 WhereType Where) { in moveTo() argument
1167 MSSA->moveTo(What, BB, Where); in moveTo()
1181 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveBefore() argument
1182 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore()
1186 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveAfter() argument
1187 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter()
1191 MemorySSA::InsertionPlace Where) { in moveToPlace() argument
1192 if (Where != MemorySSA::InsertionPlace::BeforeTerminator) in moveToPlace()
1193 return moveTo(What, BB, Where); in moveToPlace()
1195 if (auto *Where = MSSA->getMemoryAccess(BB->getTerminator())) in moveToPlace() local
[all …]
/freebsd/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:
86 Where "certsblob" consists of one or more certificates encoded as public
/freebsd/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/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()
H A Dexresolv.c328 ObjDesc = *StackDesc->Reference.Where; in AcpiExResolveObjectToValue()
600 ObjDesc = *(ObjDesc->Reference.Where); in AcpiExResolveMultiple()
/freebsd/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/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp1226 CombineInfo *Where; in checkAndPrepareMerge() local
1234 Where = &CI; in checkAndPrepareMerge()
1242 Where = &Paired; in checkAndPrepareMerge()
1251 return Where; in checkAndPrepareMerge()
2461 CombineInfo *Where = checkAndPrepareMerge(CI, Paired); in optimizeInstsWithSameBaseAddr() local
2462 if (!Where) { in optimizeInstsWithSameBaseAddr()
2477 NewMI = mergeRead2Pair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
2480 NewMI = mergeWrite2Pair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
2485 NewMI = mergeSMemLoadImmPair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
2489 NewMI = mergeBufferLoadPair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr()
[all …]

1234567