HomeSort by: relevance | last modified time | path
    Searched defs:ReturnValue (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/lib/ia64/
salpal.c 283 rArg ReturnValue;
285 ReturnValue.p0 = -3; // SAL status return completed with error
287 ReturnValue = GlobalSalProc(Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8);
291 CopyMem (Results, &ReturnValue, sizeof(rArg));
305 rArg ReturnValue;
307 ReturnValue.p0 = -3; // PAL status return completed with error
315 CopyMem (Results, &ReturnValue, sizeof(rArg));
326 ReturnValue = MakeStackedPALCall((UINT64)GlobalPalProc,Arg1,Arg2,Arg3,Arg4);
329 ReturnValue = MakeStaticPALCall((UINT64)GlobalPalProc,Arg1,Arg2,Arg3,Arg4);
333 CopyMem (Results, &ReturnValue, sizeof(rArg))
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/examples/
examples.c 440 ACPI_BUFFER ReturnValue;
457 ReturnValue.Length = ACPI_ALLOCATE_BUFFER;
459 Status = AcpiEvaluateObject (NULL, "\\_OSI", &ArgList, &ReturnValue);
468 if (ReturnValue.Length < sizeof (ACPI_OBJECT))
471 (UINT32) ReturnValue.Length);
477 Object = ReturnValue.Pointer;
491 AcpiOsFree (ReturnValue.Pointer);
508 ACPI_BUFFER ReturnValue;
525 ReturnValue.Length = ACPI_ALLOCATE_BUFFER;
527 Status = AcpiEvaluateObject (NULL, "\\MAIN", &ArgList, &ReturnValue);
    [all...]
  /src/sys/external/bsd/acpica/dist/utilities/
utosi.c 485 UINT64 ReturnValue;
510 ReturnValue = 0;
534 ReturnValue = ACPI_UINT64_MAX;
548 StringDesc->String.Pointer, (UINT32) ReturnValue))
550 ReturnValue = ACPI_UINT64_MAX;
556 StringDesc->String.Pointer, ReturnValue == 0 ? "not " : ""));
560 ReturnDesc->Integer.Value = ReturnValue;
utclib.c 705 UINT32 ReturnValue = 0;
818 if (ReturnValue > ((ACPI_UINT32_MAX - (UINT32) index) /
822 ReturnValue = 0; /* reset */
826 ReturnValue *= Base;
827 ReturnValue += index;
841 if (converted == 0 && ReturnValue == 0 && String != NULL)
853 ReturnValue = ACPI_UINT32_MAX;
861 ReturnValue = (ACPI_UINT32_MAX - ReturnValue) + 1;
864 return (ReturnValue);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Interp.h 41 template <typename T> bool ReturnValue(const T &V, APValue &R) {
  /src/sys/external/bsd/acpica/dist/hardware/
hwpci.c 375 UINT64 ReturnValue;
395 PciDevice, &ReturnValue);
405 PciId->Device = ACPI_HIWORD (ACPI_LODWORD (ReturnValue));
406 PciId->Function = ACPI_LOWORD (ACPI_LODWORD (ReturnValue));
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aeexec.c 286 void **ReturnValue)
314 ACPI_BUFFER ReturnValue;
329 ReturnValue.Length = ACPI_ALLOCATE_BUFFER;
331 Status = AcpiEvaluateObject (NULL, "\\_OSI", &ArgList, &ReturnValue);
343 if (ReturnValue.Length < sizeof (ACPI_OBJECT))
347 (UINT32) ReturnValue.Length);
351 Obj = ReturnValue.Pointer;
378 AcpiOsFree (ReturnValue.Pointer);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.c 114 int ReturnValue;
236 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
238 return ReturnValue;
  /src/sys/external/bsd/acpica/dist/events/
evgpe.c 863 UINT32 ReturnValue;
919 ReturnValue = GpeEventInfo->Dispatch.Handler->Address (
925 if (ReturnValue & ACPI_REENABLE_GPE)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SCCP.cpp 577 const ValueLatticeElement &ReturnValue = I.second;
581 if (ReturnValue.isConstantRange() &&
582 !ReturnValue.getConstantRange().isSingleElement()) {
584 if (ReturnValue.isConstantRangeIncludingUndef())
587 auto &CR = ReturnValue.getConstantRange();
616 if (isConstant(ReturnValue) || ReturnValue.isUnknownOrUndef())
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtCXX.h 329 ReturnValue, ///< Return value for thunk function: p.get_return_object().
356 Expr *ReturnValue = nullptr;
410 return cast<Expr>(getStoredStmts()[SubStmt::ReturnValue]);
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Nodes.h 90 ReturnValue,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGVTables.cpp 79 llvm::Value *ReturnValue = RV.getScalarVal();
86 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue);
93 ReturnValue = CGF.CGM.getCXXABI().performReturnAdjustment(CGF,
94 Address(ReturnValue, ClassAlign),
103 llvm::PHINode *PHI = CGF.Builder.CreatePHI(ReturnValue->getType(), 2);
104 PHI->addIncoming(ReturnValue, AdjustNotNull);
105 PHI->addIncoming(llvm::Constant::getNullValue(ReturnValue->getType()),
107 ReturnValue = PHI;
110 return RValue::get(ReturnValue);
368 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified()
    [all...]
CGStmt.cpp 1151 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
1153 LValue Dest = MakeAddrLValue(ReturnValue, Ty);
1157 EmitStoreOfComplex(RV.getComplexVal(), MakeAddrLValue(ReturnValue, Ty),
1231 } else if (!ReturnValue.isValid() || (RV && RV->getType()->isVoidType())) {
1242 Builder.CreateStore(Result.getScalarVal(), ReturnValue);
1246 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
1249 EmitComplexExprIntoLValue(RV, MakeAddrLValue(ReturnValue, RV->getType()),
1254 ReturnValue, Qualifiers(),
2394 LValue ReturnSlot = MakeAddrLValue(ReturnValue, FnRetTy);
CodeGenFunction.h 355 /// ReturnValue - The temporary alloca to hold the return
357 Address ReturnValue = Address::invalid();
1633 OldReturnValue(CGF.ReturnValue), OldFnRetTy(CGF.FnRetTy),
1644 CGF.ReturnValue = Address::invalid();
1657 CGF.ReturnValue = OldReturnValue;
3941 ReturnValueSlot ReturnValue, const CallArgList &Args,
3945 ReturnValueSlot ReturnValue, const CallArgList &Args,
3948 return EmitCall(CallInfo, Callee, ReturnValue, Args, callOrInvoke,
3952 ReturnValueSlot ReturnValue, llvm::Value *Chain = nullptr);
3954 ReturnValueSlot ReturnValue = ReturnValueSlot())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 315 SDValue ReturnValue, CallEndVal;
316 std::tie(ReturnValue, CallEndVal) =
346 return std::make_pair(ReturnValue, CallEnd->getOperand(0).getNode());
1075 SDValue ReturnValue = LowerAsSTATEPOINT(SI);
1092 setValue(&I, ReturnValue);
1111 RFV.getCopyToRegs(ReturnValue, DAG, getCurSDLoc(), Chain, nullptr);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp 265 Value *ReturnValue = ConstantPointerNull::get(ContinuationTy);
267 ReturnValue = Builder.CreateInsertValue(UndefValue::get(RetStructTy),
268 ReturnValue, 0);
270 Builder.CreateRet(ReturnValue);
  /src/external/bsd/ntp/dist/util/
tg2.c 2400 int ReturnValue;
2429 ReturnValue = DayOfMonthValue;
2434 ReturnValue += DaysInMonth [ MonthCounter - 1 ];
2440 ReturnValue++;
2445 YearValue+2000, MonthValue, DayOfMonthValue, ReturnValue);
2447 return (ReturnValue);

Completed in 37 milliseconds