OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Returns
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPURewriteOutArguments.cpp
1
//===- AMDGPURewriteOutArgumentsPass.cpp - Create struct
returns
----------===//
64
"struct
returns
for non-private address space"),
246
SmallVector<ReturnInst *, 4>
Returns
;
249
Returns
.push_back(RI);
252
if (
Returns
.empty())
284
for (ReturnInst *RI :
Returns
) {
R600OpenCLImageTypeLoweringPass.cpp
303
SmallVector<ReturnInst*, 8>
Returns
;
305
Returns
);
/src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyMCInstLower.cpp
116
SmallVector<wasm::ValType, 4>
Returns
;
138
getLibcallSignature(Subtarget, Name,
Returns
, Params);
141
std::make_unique<wasm::WasmSignature>(std::move(
Returns
), std::move(Params));
195
SmallVector<wasm::ValType, 1> &&
Returns
,
197
auto Signature = std::make_unique<wasm::WasmSignature>(std::move(
Returns
),
225
SmallVectorImpl<wasm::ValType> &
Returns
) {
231
valTypesFromMVTs(CallerRetTys,
Returns
);
266
SmallVector<wasm::ValType, 4>
Returns
;
272
Returns
.push_back(getType(MRI.getRegClass(MO.getReg())));
285
getFunctionReturns(MI,
Returns
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SjLjEHPrepare.cpp
364
SmallVector<ReturnInst *, 16>
Returns
;
382
Returns
.push_back(RI);
473
// Finally, for any
returns
from this function, if this function contains an
475
for (ReturnInst *Return :
Returns
)
SafeStack.cpp
165
SmallVectorImpl<Instruction *> &
Returns
,
168
/// Calculate the allocation size of a given alloca.
Returns
0 if the
175
/// \
returns
A pointer to the top of the unsafe stack after all unsafe static
186
/// \
returns
A local variable in which to maintain the dynamic top of the
220
//
Returns
whether the function was changed.
386
SmallVectorImpl<Instruction *> &
Returns
,
405
Returns
.push_back(CI);
407
Returns
.push_back(RI);
764
SmallVector<Instruction *, 4>
Returns
;
775
findInsts(F, StaticAllocas, DynamicAllocas, ByValArguments,
Returns
,
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Index/
CommentToXML.cpp
90
SmallVector<const BlockCommandComment *, 4>
Returns
;
132
Returns
.push_back(BCC);
342
Result << "<p class=\"para-
returns
\">"
343
"<span class=\"word-
returns
\">
Returns
</span> ";
478
if (Parts.
Returns
.size() != 0) {
480
for (unsigned i = 0, e = Parts.
Returns
.size(); i != e; ++i)
481
visit(Parts.
Returns
[i]);
986
if (Parts.
Returns
.size() != 0) {
988
for (unsigned i = 0, e = Parts.
Returns
.size(); i != e; ++i
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CloneFunction.cpp
87
SmallVectorImpl<ReturnInst *> &
Returns
,
194
Returns
.push_back(RI);
312
SmallVector<ReturnInst *, 8>
Returns
; // Ignore
returns
cloned.
314
Returns
, "", CodeInfo);
497
SmallVectorImpl<ReturnInst *> &
Returns
,
760
// because we can iteratively remove and merge
returns
above.
765
Returns
.push_back(RI);
777
bool ModuleLevelChanges, SmallVectorImpl<ReturnInst *> &
Returns
,
780
ModuleLevelChanges,
Returns
, NameSuffix, CodeInfo)
[
all
...]
InlineFunction.cpp
1481
///
Returns
a DebugLoc for a new DILocation which is a clone of \p OrigDL
1673
const SmallVectorImpl<ReturnInst *> &
Returns
) {
1678
for (auto *RI :
Returns
) {
1748
/// caller. This
returns
false if it is not possible to inline this call.
1889
SmallVector<ReturnInst*, 8>
Returns
;
1947
/*ModuleLevelChanges=*/false,
Returns
, ".i",
1954
inlineRetainOrClaimRVCalls(CB,
Returns
);
2015
// this even if the call
returns
void.
2228
for (ReturnInst *RI :
Returns
) {
2256
for (ReturnInst *RI :
Returns
) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h
403
SmallVector<ValType, 1>
Returns
;
410
:
Returns
(InReturns), Params(InParams) {}
416
return LHS.State == RHS.State && LHS.
Returns
== RHS.
Returns
&&
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h
200
SmallVector<ReturnStmt*, 4>
Returns
;
285
///
Returns
true if the object base specifies a known object in memory,
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp
556
SmallVector<MachineBasicBlock*, 4>
Returns
;
564
Returns
.push_back(&MBB);
568
TLI->insertCopiesSplitCSR(EntryMBB,
Returns
);
2192
/// IsProfitableToFold -
Returns
true if it's profitable to fold the specific
2200
/// IsLegalToFold -
Returns
true if the specific operand node N of
2798
// Some early-
returns
here to avoid the search if we deleted the node or
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp
180
/// \
returns
true if cleanup of the coro.end block is needed, false otherwise.
241
// In async lowering this
returns
.
511
// If the suspend
returns
a single scalar value, we can just do a simple
833
SmallVector<ReturnInst *, 4>
Returns
;
848
CloneFunctionChangeType::LocalChangesOnly,
Returns
);
915
// continuations, this includes the
returns
associated with suspends;
919
// Remove old
returns
.
920
for (ReturnInst *Return :
Returns
)
925
// original
returns
and inserted
returns
before all the suspend points
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
281
/// determine whether the name refers to a type. If so,
returns
an
283
/// type. Otherwise,
returns
NULL.
606
/// so, this
returns
the TST for the tag corresponding to it (TST_enum,
1433
// Same implementation as PopDeclContext, but
returns
to the lexical parent,
1975
/// \
returns
The declaration of the named Objective-C class, or NULL if the
2404
/// DeclhasAttr -
returns
true if decl Declaration already has the target
3224
///
Returns
true if there was an error, false otherwise.
3825
/// \
returns
false
5460
///
returns
true and Params is empty, then all of the parameters match.
5594
/// \
returns
true if the declaration name violates these rules
[
all
...]
Completed in 43 milliseconds
Indexes created Thu May 07 00:24:58 UTC 2026