| /netbsd-src/sys/external/bsd/acpica/dist/tools/examples/ |
| H A D | examples.c | 440 ACPI_BUFFER ReturnValue; in ExecuteOSI() local 457 ReturnValue.Length = ACPI_ALLOCATE_BUFFER; in ExecuteOSI() 459 Status = AcpiEvaluateObject (NULL, "\\_OSI", &ArgList, &ReturnValue); in ExecuteOSI() 468 if (ReturnValue.Length < sizeof (ACPI_OBJECT)) in ExecuteOSI() 471 (UINT32) ReturnValue.Length); in ExecuteOSI() 477 Object = ReturnValue.Pointer; in ExecuteOSI() 491 AcpiOsFree (ReturnValue.Pointer); in ExecuteOSI() 508 ACPI_BUFFER ReturnValue; in ExecuteMAIN() local 525 ReturnValue.Length = ACPI_ALLOCATE_BUFFER; in ExecuteMAIN() 527 Status = AcpiEvaluateObject (NULL, "\\MAIN", &ArgList, &ReturnValue); in ExecuteMAIN() [all …]
|
| /netbsd-src/sys/external/bsd/gnu-efi/dist/lib/ia64/ |
| H A D | salpal.c | 283 rArg ReturnValue; in LibSalProc() local 285 ReturnValue.p0 = -3; // SAL status return completed with error in LibSalProc() 287 ReturnValue = GlobalSalProc(Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8); in LibSalProc() 291 CopyMem (Results, &ReturnValue, sizeof(rArg)); in LibSalProc() 305 rArg ReturnValue; in LibPalProc() local 307 ReturnValue.p0 = -3; // PAL status return completed with error in LibPalProc() 315 CopyMem (Results, &ReturnValue, sizeof(rArg)); in LibPalProc() 326 ReturnValue = MakeStackedPALCall((UINT64)GlobalPalProc,Arg1,Arg2,Arg3,Arg4); in LibPalProc() 329 ReturnValue = MakeStaticPALCall((UINT64)GlobalPalProc,Arg1,Arg2,Arg3,Arg4); in LibPalProc() 333 CopyMem (Results, &ReturnValue, sizeof(rArg)); in LibPalProc()
|
| /netbsd-src/sys/external/bsd/acpica/dist/utilities/ |
| H A D | utclib.c | 705 UINT32 ReturnValue = 0; in strtoul() local 818 if (ReturnValue > ((ACPI_UINT32_MAX - (UINT32) index) / in strtoul() 822 ReturnValue = 0; /* reset */ in strtoul() 826 ReturnValue *= Base; in strtoul() 827 ReturnValue += index; in strtoul() 841 if (converted == 0 && ReturnValue == 0 && String != NULL) in strtoul() 853 ReturnValue = ACPI_UINT32_MAX; in strtoul() 861 ReturnValue = (ACPI_UINT32_MAX - ReturnValue) + 1; in strtoul() 864 return (ReturnValue); in strtoul()
|
| H A D | utstrtoul64.c | 123 UINT64 *ReturnValue) in AcpiUtStrtoul64() argument 133 *ReturnValue = 0; in AcpiUtStrtoul64() 184 Status = AcpiUtConvertOctalString (String, ReturnValue); in AcpiUtStrtoul64() 188 Status = AcpiUtConvertDecimalString (String, ReturnValue); in AcpiUtStrtoul64() 193 Status = AcpiUtConvertHexString (String, ReturnValue); in AcpiUtStrtoul64()
|
| H A D | utosi.c | 481 UINT64 ReturnValue; in AcpiUtOsiImplementation() 506 ReturnValue = 0; in AcpiUtOsiImplementation() 530 ReturnValue = ACPI_UINT64_MAX; in AcpiUtOsiImplementation() 544 StringDesc->String.Pointer, (UINT32) ReturnValue)) in AcpiUtOsiImplementation() 546 ReturnValue = ACPI_UINT64_MAX; in AcpiUtOsiImplementation() 552 StringDesc->String.Pointer, ReturnValue == 0 ? "not " : "")); in AcpiUtOsiImplementation() 556 ReturnDesc->Integer.Value = ReturnValue; in AcpiUtOsiImplementation() 480 UINT64 ReturnValue; AcpiUtOsiImplementation() local
|
| /netbsd-src/sys/external/bsd/acpica/dist/debugger/ |
| H A D | dbnames.c | 63 void **ReturnValue); 70 void **ReturnValue); 77 void **ReturnValue); 84 void **ReturnValue); 91 void **ReturnValue); 98 void **ReturnValue); 105 void **ReturnValue); 382 void **ReturnValue) in AcpiDbWalkAndMatchName() argument 497 void **ReturnValue) in AcpiDbWalkForPredefinedNames() argument 598 void **ReturnValue) in AcpiDbWalkForObjectCounts() argument 635 AcpiDbWalkForFields(ACPI_HANDLE ObjHandle,UINT32 NestingLevel,void * Context,void ** ReturnValue) AcpiDbWalkForFields() argument 719 AcpiDbWalkForSpecificObjects(ACPI_HANDLE ObjHandle,UINT32 NestingLevel,void * Context,void ** ReturnValue) AcpiDbWalkForSpecificObjects() argument 893 AcpiDbIntegrityWalk(ACPI_HANDLE ObjHandle,UINT32 NestingLevel,void * Context,void ** ReturnValue) AcpiDbIntegrityWalk() argument 1004 AcpiDbWalkForReferences(ACPI_HANDLE ObjHandle,UINT32 NestingLevel,void * Context,void ** ReturnValue) AcpiDbWalkForReferences() argument 1081 AcpiDbBusWalk(ACPI_HANDLE ObjHandle,UINT32 NestingLevel,void * Context,void ** ReturnValue) AcpiDbBusWalk() argument [all...] |
| H A D | dbconvert.c | 61 * ReturnValue - Where the converted value is returned 72 UINT8 *ReturnValue) in AcpiDbHexCharToValue() argument 93 *ReturnValue = Value; in AcpiDbHexCharToValue() 104 * ReturnValue - Where the converted value is returned 115 UINT8 *ReturnValue) in AcpiDbHexByteToBinary() argument 138 *ReturnValue = (UINT8) ((Local0 << 4) | Local1); in AcpiDbHexByteToBinary()
|
| /netbsd-src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
| H A D | aeexec.c | 286 void **ReturnValue) in AeGetDevices() argument 314 ACPI_BUFFER ReturnValue; in ExecuteOSI() local 329 ReturnValue.Length = ACPI_ALLOCATE_BUFFER; in ExecuteOSI() 331 Status = AcpiEvaluateObject (NULL, "\\_OSI", &ArgList, &ReturnValue); in ExecuteOSI() 343 if (ReturnValue.Length < sizeof (ACPI_OBJECT)) in ExecuteOSI() 347 (UINT32) ReturnValue.Length); in ExecuteOSI() 351 Obj = ReturnValue.Pointer; in ExecuteOSI() 378 AcpiOsFree (ReturnValue.Pointer); in ExecuteOSI()
|
| H A D | aeinstall.c | 62 void **ReturnValue); 69 void **ReturnValue); 76 void **ReturnValue); 262 void **ReturnValue) in AeInstallGedHandler() argument 401 void **ReturnValue) in AeInstallEcHandler() argument 439 void **ReturnValue) in AeInstallPciHandler() argument
|
| /netbsd-src/external/gpl3/autoconf/dist/lib/autoconf/ |
| H A D | erlang.m4 | 145 ReturnValue = case file:write_file("conftest.out", "") of 149 halt(ReturnValue)])]) 183 ReturnValue = case code:lib_dir("[$1]") of 191 halt(ReturnValue)])], 227 ReturnValue = 0, 228 halt(ReturnValue)])], 251 ReturnValue = 0, 252 halt(ReturnValue)])], 311 ReturnValue = 0, 312 halt(ReturnValue)])],
|
| /netbsd-src/sys/external/bsd/acpica/dist/namespace/ |
| H A D | nsinit.c | 61 void **ReturnValue); 68 void **ReturnValue); 75 void **ReturnValue); 323 void **ReturnValue) in AcpiNsInitOnePackage() argument 386 void **ReturnValue) in AcpiNsInitOneObject() argument 526 void **ReturnValue) in AcpiNsFindIniMethods() argument 599 void **ReturnValue) in AcpiNsInitOneDevice() argument
|
| H A D | nsdump.c | 65 void **ReturnValue); 76 void **ReturnValue); 83 void **ReturnValue); 209 void **ReturnValue) in AcpiNsDumpOneObject() argument 746 void **ReturnValue) in AcpiNsDumpOneObjectPath() argument 790 void **ReturnValue) in AcpiNsGetMaxDepth() argument
|
| H A D | nswalk.c | 198 void **ReturnValue) in AcpiNsWalkNamespace() argument 286 Context, ReturnValue); in AcpiNsWalkNamespace() 294 Context, ReturnValue); in AcpiNsWalkNamespace()
|
| H A D | nsxfeval.c | 647 void **ReturnValue) in AcpiWalkNamespace() argument 703 AscendingCallback, Context, ReturnValue); in AcpiWalkNamespace() 735 void **ReturnValue) in ACPI_EXPORT_SYMBOL() 855 Info->Context, ReturnValue); in ACPI_EXPORT_SYMBOL() 890 void **ReturnValue) in AcpiGetDevices() argument 928 AcpiNsGetDeviceCallback, NULL, &Info, ReturnValue); in AcpiGetDevices()
|
| H A D | nsdumpdv.c | 78 void **ReturnValue) in AcpiNsDumpOneDevice() argument 89 Status = AcpiNsDumpOneObject (ObjHandle, Level, Context, ReturnValue); in AcpiNsDumpOneDevice()
|
| /netbsd-src/sys/external/bsd/acpica/dist/compiler/ |
| H A D | dtutils.c | 56 void *ReturnValue); 685 * ReturnValue - Store the checksum of subtable 697 void *ReturnValue) in DtSum() 700 UINT8 *Sum = ReturnValue; in DtSum() 822 * ReturnValue - The return value of UserFunction 835 void *ReturnValue) in DtWalkTableTree() 849 UserFunction (ParentTable, Context, ReturnValue); in DtWalkTableTree() 856 UserFunction (ChildTable, Context, ReturnValue); in DtWalkTableTree() 692 DtSum(DT_SUBTABLE * Subtable,void * Context,void * ReturnValue) DtSum() argument 830 DtWalkTableTree(DT_SUBTABLE * StartTable,DT_WALK_CALLBACK UserFunction,void * Context,void * ReturnValue) DtWalkTableTree() argument
|
| H A D | dtio.c | 67 void *ReturnValue); 80 void *ReturnValue); 86 void *ReturnValue); 773 void *ReturnValue) in DtWriteBinary() argument 963 void *ReturnValue) in DtDumpSubtableInfo() argument 977 void *ReturnValue) in DtDumpSubtableTree() argument
|
| H A D | prexpress.c | 264 UINT64 *ReturnValue) in PrResolveIntegerExpression() argument 284 *ReturnValue = Result; in PrResolveIntegerExpression() 301 *ReturnValue = Value1; in PrResolveIntegerExpression()
|
| H A D | aslnamesp.c | 59 void **ReturnValue); 66 void **ReturnValue); 171 void **ReturnValue) in NsDoOneNamespaceObject() argument 424 void **ReturnValue) in NsDoOnePathname() argument
|
| /netbsd-src/sys/external/bsd/acpica/dist/hardware/ |
| H A D | hwpci.c | 375 UINT64 ReturnValue; in AcpiHwGetPciDeviceInfo() local 395 PciDevice, &ReturnValue); in AcpiHwGetPciDeviceInfo() 405 PciId->Device = ACPI_HIWORD (ACPI_LODWORD (ReturnValue)); in AcpiHwGetPciDeviceInfo() 406 PciId->Function = ACPI_LOWORD (ACPI_LODWORD (ReturnValue)); in AcpiHwGetPciDeviceInfo()
|
| H A D | hwxface.c | 139 UINT64 *ReturnValue, in ACPI_EXPORT_SYMBOL() 148 Status = AcpiHwRead (ReturnValue, Reg); in ACPI_EXPORT_SYMBOL() 215 UINT32 *ReturnValue) in ACPI_EXPORT_SYMBOL() 252 *ReturnValue = Value; in ACPI_EXPORT_SYMBOL()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGCUDARuntime.cpp | 28 ReturnValueSlot ReturnValue) { in EmitCUDAKernelCallExpr() argument 38 CGF.EmitSimpleCallExpr(E, ReturnValue); in EmitCUDAKernelCallExpr()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | SCCP.cpp | 577 const ValueLatticeElement &ReturnValue = I.second; in runIPSCCP() local 581 if (ReturnValue.isConstantRange() && in runIPSCCP() 582 !ReturnValue.getConstantRange().isSingleElement()) { in runIPSCCP() 584 if (ReturnValue.isConstantRangeIncludingUndef()) in runIPSCCP() 587 auto &CR = ReturnValue.getConstantRange(); in runIPSCCP() 616 if (isConstant(ReturnValue) || ReturnValue.isUnknownOrUndef()) in runIPSCCP()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| H A D | EvalEmitter.cpp | 102 return ReturnValue<T>(S.Stk.pop<T>(), Result); in emitRet() 127 TYPE_SWITCH(*T, Ok &= ReturnValue<T>(FP.deref<T>(), Value)); in emitRetValue() 149 TYPE_SWITCH(*T, Ok &= ReturnValue<T>(FP.deref<T>(), Value)); in emitRetValue() 181 TYPE_SWITCH(*T, Ok &= ReturnValue<T>(EP.deref<T>(), Slot)); in emitRetValue()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | jitprofiling.c | 114 int ReturnValue; in iJIT_NotifyEvent() local 236 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData); in iJIT_NotifyEvent() 238 return ReturnValue; in iJIT_NotifyEvent()
|