Searched refs:ParamCount (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-current/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfeval.c402 Info->ParamCount = (UINT16) ExternalParams->Count;
406 if (Info->ParamCount > ACPI_METHOD_NUM_ARGS)
410 Info->ParamCount, ACPI_METHOD_NUM_ARGS));
412 Info->ParamCount = ACPI_METHOD_NUM_ARGS;
420 ((ACPI_SIZE) Info->ParamCount + 1) * sizeof (void *));
429 for (i = 0; i < Info->ParamCount; i++)
439 Info->Parameters[Info->ParamCount] = NULL;
455 if (Info->ObjDesc->Method.ParamCount > Info->ParamCount)
459 Info->ParamCount,
[all...]
H A Dnseval.c263 Info->ParamCount = 0;
266 while (Info->Parameters[Info->ParamCount])
268 Info->ParamCount++;
273 if (Info->ParamCount > ACPI_METHOD_NUM_ARGS)
277 Info->ParamCount, ACPI_METHOD_NUM_ARGS));
279 Info->ParamCount = ACPI_METHOD_NUM_ARGS;
295 Info->ParamCount, Info->Predefined);
412 (void) AcpiNsCheckReturnValue (Info->Node, Info, Info->ParamCount,
H A Dnsarguments.c203 for (i = 0; ((i < ArgCount) && (i < Info->ParamCount)); i++)
299 AmlParamCount = Node->Object->Method.ParamCount;
381 AmlParamCount = Node->Object->Method.ParamCount;
H A Dnsxfname.c408 UINT8 ParamCount= 0; local
443 ParamCount = Node->Object->Method.ParamCount;
623 Info->ParamCount = ParamCount;
776 MethodObj->Method.ParamCount = (UINT8)
H A Dnsaccess.c315 ObjDesc->Method.ParamCount = (UINT8) ACPI_TO_INTEGER (Val);
322 NewNode->Value = ObjDesc->Method.ParamCount;
H A Dnsdump.c444 (UINT32) ObjDesc->Method.ParamCount,
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallDescription.cpp79 size_t ParamCount) const {
87 (!RequiredParams || *RequiredParams <= ParamCount);
108 [](size_t ArgCount, size_t ParamCount,
112 !CD.RequiredParams || *CD.RequiredParams == ParamCount;
144 if (!ExactMatchArgAndParamCounts(ArgCount, ParamCount, *this))
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp197 unsigned ParamCount = CtorDecl->getNumParams(); local
203 if (CtorDecl->isCopyConstructor() && ParamCount == 1) {
222 if (ParamCount == 1 && CtorDecl->getParamDecl(0)->getType() == BoolTy) {
227 if (ParamCount == 2){
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DVFABIDemangler.h132 unsigned ParamCount = Shape.Parameters.size(); local
133 for (unsigned i = 0; i < ParamCount; ++i)
/freebsd-current/sys/contrib/dev/acpica/components/debugger/
H A Ddbinput.c904 UINT32 ParamCount; local
918 ParamCount = AcpiDbGetLine (InputBuffer);
933 if (ParamCount < AcpiGbl_DbCommands[CommandIndex].MinArgs)
936 ParamCount, AcpiGbl_DbCommands[CommandIndex].Name,
1104 if (ParamCount == 0)
1113 else if (ParamCount == 2)
H A Ddbmethod.c595 for (i = 0; i < ObjInfo->ParamCount; i++)
602 ParamObjects.Count = ObjInfo->ParamCount;
H A Ddbobject.c692 AcpiUtGetNodeName (Node), Node->Object->Method.ParamCount);
/freebsd-current/sys/contrib/dev/acpica/components/dispatcher/
H A Ddswload.c558 UINT8 ParamCount; local
677 * Therefore, ParamCount will be 0.
679 ParamCount = (UINT8) Op->Common.Value.Arg->Common.Next->Common.Value.Integer;
685 &Op->Common.Node, ParamCount);
691 AcpiDmAddOpToExternalList (Op, Op->Named.Path, (UINT8)ObjectType, ParamCount,
H A Ddsmethod.c729 for (i = 0; i < ObjDesc->Method.ParamCount; i++)
/freebsd-current/sys/contrib/dev/acpica/compiler/
H A Daslexternal.c198 UINT8 ParamCount = ASL_EXTERNAL_METHOD_UNKNOWN_PARAMS; local
209 ParamCount = 0;
238 ParamCount = MtProcessParameterTypeList (TypeOp->Asl.Child, ParamTypes);
250 ArgCountOp->Asl.Value.Integer = ParamCount;
/freebsd-current/sys/contrib/dev/acpica/common/
H A Ddmextern.c1162 * ParamCount - Value to be used for Method
1175 UINT32 ParamCount)
1187 ObjDesc->Method.ParamCount = (UINT8) ParamCount;
1213 * ParamCount - External method parameter count
1228 UINT32 ParamCount)
1241 AcpiDmCreateSubobjectForExternal (Type, &Node, ParamCount);
1172 AcpiDmCreateSubobjectForExternal( UINT8 Type, ACPI_NAMESPACE_NODE **Node, UINT32 ParamCount) argument
1225 AcpiDmAddOneExternalToNamespace( char *Path, UINT8 Type, UINT32 ParamCount) argument
H A Dadwalk.c900 UINT32 ParamCount = 0; local
1032 ParamCount = Object->Method.ParamCount;
1043 ParamCount, ACPI_EXT_RESOLVED_REFERENCE);
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallDescription.h159 size_t ParamCount) const;
/freebsd-current/sys/contrib/dev/acpica/include/
H A Dacstruct.h329 UINT16 ParamCount; /* Count of the input argument list */ member in struct:acpi_evaluate_info
H A Dacobject.h325 UINT8 ParamCount; member in struct:acpi_object_method
/freebsd-current/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDXContainer.h451 uint32_t ParamCount; member in struct:llvm::dxbc::ProgramSignatureHeader
455 sys::swapByteOrder(ParamCount);
/freebsd-current/sys/contrib/dev/acpica/components/parser/
H A Dpsargs.c457 Node, MethodDesc->Method.ParamCount));
461 WalkState->ArgCount = MethodDesc->Method.ParamCount;
/freebsd-current/sys/contrib/dev/acpica/components/executer/
H A Dexcreate.c627 ObjDesc->Method.ParamCount = (UINT8)
H A Dexdump.c255 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Method.ParamCount), "Parameter Count"},
985 ObjDesc->Method.ParamCount,
/freebsd-current/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h1345 LLVMTypeRef *ParamTypes, unsigned ParamCount,
2631 size_t ParamCount);
2640 LLVMTypeRef *ParamTypes, size_t ParamCount);
2652 size_t ParamCount,
2668 size_t ParamCount,

Completed in 509 milliseconds

12