Searched refs:Return (Results 1 - 25 of 56) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DABI.h183 ReturnAdjustment Return; member in struct:clang::ThunkInfo
194 ThunkInfo(const ThisAdjustment &This, const ReturnAdjustment &Return, argument
196 : This(This), Return(Return), Method(Method) {}
199 return LHS.This == RHS.This && LHS.Return == RHS.Return &&
204 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DArgumentsAdjusters.cpp117 CommandLineArguments Return(Args);
121 I = Return.end();
123 I = Return.begin();
127 Return.insert(I, Extra.begin(), Extra.end());
128 return Return;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangCommentCommandInfoEmitter.cpp67 std::string Return; local
68 raw_string_ostream(Return) << "return &Commands[" << i << "];";
69 Matches.emplace_back(std::move(Name), std::move(Return));
/freebsd-11-stable/contrib/gcc/config/mips/
H A Dcrti.asm2 Return spill offset of 40 and 20. Aligned to 16 bytes for n32. */
H A Dcrtn.asm2 Return spill offset of 40 and 20. Aligned to 16 bytes for n32. */
/freebsd-11-stable/cddl/usr.sbin/zfsd/tests/
H A Dzfsd_unittest.cc435 .WillByDefault(::testing::Return(Guid(123)));
437 .WillByDefault(::testing::Return(Guid(456)));
439 .WillByDefault(::testing::Return(VDEV_STATE_HEALTHY));
532 .WillRepeatedly(::testing::Return(true));
581 .WillRepeatedly(::testing::Return(true));
644 .WillByDefault(::testing::Return(Guid(123)));
646 .WillByDefault(::testing::Return(Guid(456)));
648 .WillByDefault(::testing::Return(VDEV_STATE_HEALTHY));
650 .WillByDefault(::testing::Return(Guid(123)));
652 .WillByDefault(::testing::Return(Gui
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerUnion.h27 using Return = T;
35 /// using Ret = typename PointerUnionTypeSelector<T1, T2, EQ, NE>::Return;
41 using Return = typename PointerUnionTypeSelectorReturn<RET_NE>::Return;
46 using Return = typename PointerUnionTypeSelectorReturn<RET_EQ>::Return;
52 using Return =
53 typename PointerUnionTypeSelector<T1, T2, RET_EQ, RET_NE>::Return;
/freebsd-11-stable/share/examples/ppp/
H A Dchap-auth67 bind .$n.value <Return> {done};
88 bind .k.value <Return> {done};
H A Dlogin-auth65 bind .p.value <Return> {done};
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dcheck_y2k.c112 long Return; local
114 Return = Year * 365; /* first aproximation to the value */
118 Return += (Year+3) / 4; /* add in (too many) leap days */
119 Return -= (Year-1) / 100; /* reduce by (too many) centurys */
120 Return += (Year-1) / 400; /* get final answer */
123 return Return;
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dbounce-resender.pl185 $headerline =~ s/Return-Path:/?P?Return-Path:/g;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCCState.h144 bool Return = CCState::CheckReturn(ArgsFlags, Fn); local
148 return Return;
/freebsd-11-stable/contrib/ncurses/ncurses/trace/
H A Dlib_trace.c148 static const char Return[] = T_RETURN(""); local
159 } else if (!strncmp(fmt, Return, sizeof(Return) - 1)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp49 enum class IPOGrouping { Register, Return, Memory }; member in class:__anon2573::IPOGrouping
137 case IPOGrouping::Return:
210 else if (Key.getInt() == IPOGrouping::Return)
249 auto RetF = CVPLatticeKey(F, IPOGrouping::Return);
283 auto RetF = CVPLatticeKey(F, IPOGrouping::Return);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrDesc.h144 Return, enumerator in enum:llvm::MCID::Flag
227 /// Return the opcode number for this descriptor.
230 /// Return the number of declared MachineOperands for this
246 /// Return the number of MachineOperands that are register
252 /// Return flags of this instruction.
259 /// Return true if this instruction can have a variable number of
269 /// Return true if this is a pseudo instruction that doesn't
273 /// Return true if the instruction is a return.
274 bool isReturn() const { return Flags & (1ULL << MCID::Return); }
276 /// Return tru
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTables.cpp45 !Thunk.Return.isEmpty());
95 Thunk.Return);
218 if (!Thunk.Return.isEmpty()) {
309 if (Thunk && !Thunk->Return.isEmpty()) {
375 if (Thunk && !Thunk->Return.isEmpty())
575 if (TI.Return.isEmpty()) {
H A DCGObjCRuntime.h178 ReturnValueSlot Return,
229 /// Return the runtime function for getting properties.
232 /// Return the runtime function for setting properties.
235 /// Return the runtime function for optimized setting properties.
250 /// GetClass - Return a reference to the class for the given
260 /// EnumerationMutationFunction - Return the function that's called by the
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp465 // empty - Return whether the offset map is empty or not.
978 /// isBuildingConstructionVTable - Return whether this vtable builder is
1125 if (VTableThunks.lookup(VTableIndex).Return.isEmpty())
1307 VTableThunks[Components.size()].Return = ReturnAdjustment;
1314 /// OverridesIndirectMethodInBase - Return whether the given member function
1950 if (!Thunk.Return.isEmpty()) {
1952 Out << Thunk.Return.NonVirtual << " non-virtual";
1954 if (Thunk.Return.Virtual.Itanium.VBaseOffsetOffset) {
1955 Out << ", " << Thunk.Return.Virtual.Itanium.VBaseOffsetOffset;
2110 return std::tie(LHS.This, LHS.Return) < st
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp467 for (ReturnInst *Return : Returns)
468 CallInst::Create(UnregisterFn, FuncCtx, "", Return);
H A DTypePromotion.cpp221 /// Return true if the given value is a source in the use-def chain, producing
246 /// Return true if V will require any promoted values to be truncated for the
262 if (auto *Return = dyn_cast<ReturnInst>(V))
263 return LessOrEqualTypeSize(Return->getReturnValue());
274 /// Return whether this instruction can safely wrap.
405 /// Return whether we can safely mutate V's type to ExtTy without having to be
827 // Return true if V was added to the worklist as a supported instruction,
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdbarch.sh781 # Return the appropriate register set for a core file section with
1126 /* Return a freshly allocated, NULL terminated, array of the valid
1875 /* Return the current value of the specified per-architecture
2121 architecture if needed. Return that new architecture. Assumes
2217 /* Return it. */
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFastISel.cpp219 bool Return,
1841 bool Return,
1849 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1851 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1860 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1862 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1864 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1869 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1874 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1876 return (Return
1840 CCAssignFnForCall(CallingConv::ID CC, bool Return, bool isVarArg) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp121 // it. Return true, and trust that they're doing the right thing.
444 auto &Return = getActionDefinitionsBuilder(Representative); local
445 Return.setIsAliasedByAnother();
446 return Return;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h141 /// Return the name of a unary opcode.
144 /// Return the name of a binary opcode.
386 /// Return the kind of variable (let, function param, or self)
389 /// Return the name of the variable, if any.
392 /// Return the clang declaration for this variable, if any.
395 /// Return the definition of the variable.
451 // Return the result of this future if it exists, otherwise return null.
454 // Return the result of this future; forcing it if necessary.
1316 /// Return the clang declaration of the variable for this Phi node, if any.
1343 /// Base class for basic block terminators: Branch, Goto, and Return
1456 class Return : public Terminator { class in namespace:clang::threadSafety
1458 Return(SExpr* Rval) : Terminator(COP_Return), Retval(Rval) {} function in class:clang::threadSafety::Return
1459 Return(const Return &R, SExpr* Rval) : Terminator(R), Retval(Rval) {} function in class:clang::threadSafety::Return
[all...]
H A DThreadSafetyTraverse.h267 R_SExpr reduceReturn(Return &O, R_SExpr E) {
441 // Return the precedence of a given node, for use in pretty printing.
889 void printReturn(const Return *E, StreamType &SS) {

Completed in 347 milliseconds

123