Home
last modified time | relevance | path

Searched refs:Parameters (Results 1 – 25 of 187) sorted by relevance

12345678

/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DVFABIDemangler.h84 SmallVector<VFParameter, 8> Parameters; // List of parameter information. member
87 return std::tie(VF, Parameters) == std::tie(Other.VF, Other.Parameters);
92 assert(P.ParamPos < Parameters.size() && "Invalid parameter position."); in updateParam()
93 Parameters[P.ParamPos] = P; in updateParam()
109 SmallVector<VFParameter, 8> Parameters; in get() local
111 Parameters.push_back(VFParameter({I, VFParamKind::Vector})); in get()
113 Parameters.push_back( in get()
116 return {EC, Parameters}; in get()
132 unsigned ParamCount = Shape.Parameters.size(); in getParamIndexForOptionalMask()
134 if (Shape.Parameters[i].ParamKind == VFParamKind::GlobalPredicate) in getParamIndexForOptionalMask()
/src/contrib/llvm-project/llvm/lib/IR/
H A DVFABIDemangler.cpp400 SmallVector<VFParameter, 8> Parameters; in tryDemangleForVFABI() local
402 const unsigned ParameterPos = Parameters.size(); in tryDemangleForVFABI()
420 Parameters.push_back({ParameterPos, PKind, StepOrPos, Alignment}); in tryDemangleForVFABI()
426 if (Parameters.empty()) in tryDemangleForVFABI()
431 if (Parameters.size() != FTy->getNumParams()) in tryDemangleForVFABI()
441 EC = getScalableECFromSignature(FTy, ISA, Parameters); in tryDemangleForVFABI()
481 const unsigned Pos = Parameters.size(); in tryDemangleForVFABI()
482 Parameters.push_back({Pos, VFParamKind::GlobalPredicate}); in tryDemangleForVFABI()
491 llvm::count_if(Parameters, [](const VFParameter &PK) { in tryDemangleForVFABI()
496 assert(Parameters.back().ParamKind == VFParamKind::GlobalPredicate && in tryDemangleForVFABI()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadic.h132 Tuple Parameters; variable
154 Parameters(std::move(Params)) { in formatv_object()
155 ParameterPointers = std::apply(create_adapters(), Parameters); in formatv_object()
162 Parameters(std::move(rhs.Parameters)) { in formatv_object()
163 ParameterPointers = std::apply(create_adapters(), Parameters); in formatv_object()
/src/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfeval.c419 Info->Parameters = ACPI_ALLOCATE_ZEROED ( in ACPI_EXPORT_SYMBOL()
421 if (!Info->Parameters) in ACPI_EXPORT_SYMBOL()
432 &ExternalParams->Pointer[i], &Info->Parameters[i]); in ACPI_EXPORT_SYMBOL()
439 Info->Parameters[Info->ParamCount] = NULL; in ACPI_EXPORT_SYMBOL()
488 Info->Parameters = ACPI_ALLOCATE_ZEROED ( in ACPI_EXPORT_SYMBOL()
490 if (!Info->Parameters) in ACPI_EXPORT_SYMBOL()
501 &ExternalParams->Pointer[i], &Info->Parameters[i]); in ACPI_EXPORT_SYMBOL()
508 Info->Parameters[Info->ParamCount] = NULL; in ACPI_EXPORT_SYMBOL()
623 if (Info->Parameters) in ACPI_EXPORT_SYMBOL()
627 AcpiUtDeleteInternalObjectList (Info->Parameters); in ACPI_EXPORT_SYMBOL()
H A Dnseval.c264 if (Info->Parameters) in AcpiNsEvaluate()
266 while (Info->Parameters[Info->ParamCount]) in AcpiNsEvaluate()
H A Dnsinit.c316 Info.EvaluateInfo->Parameters = NULL; in AcpiNsInitializeDevices()
336 Info.EvaluateInfo->Parameters = NULL; in AcpiNsInitializeDevices()
840 Info->Parameters = NULL; in AcpiNsInitOneDevice()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaSwift.cpp348 StringRef ContextName, BaseName, Parameters; in validateSwiftFunctionName() local
350 std::tie(BaseName, Parameters) = Name.split('('); in validateSwiftFunctionName()
380 if (Parameters.empty()) { in validateSwiftFunctionName()
385 assert(Parameters.back() == ')' && "expected ')'"); in validateSwiftFunctionName()
386 Parameters = Parameters.drop_back(); // ')' in validateSwiftFunctionName()
388 if (Parameters.empty()) { in validateSwiftFunctionName()
404 if (Parameters.back() != ':') { in validateSwiftFunctionName()
414 std::tie(CurrentParam, Parameters) = Parameters.split(':'); in validateSwiftFunctionName()
444 } while (!Parameters.empty()); in validateSwiftFunctionName()
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DDXILEmitter.cpp366 SequenceToOffsetTable<SmallVector<ParameterKind>> Parameters; in emitDXILOperationTable() local
383 Parameters.add(ParamKindVec); in emitDXILOperationTable()
389 Parameters.layout(); in emitDXILOperationTable()
417 << Parameters.get(ParameterMap[Op.OpClass]) << " },\n"; in emitDXILOperationTable()
460 Parameters.emit( in emitDXILOperationTable()
/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmMacro.h145 MCAsmMacroParameters Parameters; member
152 : Name(N), Body(B), Parameters(std::move(P)) {} in MCAsmMacro()
155 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)), in MCAsmMacro()
/src/crypto/openssl/doc/man7/
H A DEVP_MD-BLAKE2.pod28 =head2 Settable Parameters
39 =head2 Gettable Parameters
44 =head2 Settable Context Parameters
H A DEVP_MD-MDC2.pod16 =head2 Gettable Parameters
21 =head2 Settable Context Parameters
H A DEVP_MD-SHA1.pod16 =head2 Gettable Parameters
21 =head2 Settable Context Parameters
H A DEVP_MD-MD5-SHA1.pod18 =head2 Gettable Parameters
23 =head2 Settable Context Parameters
H A DEVP_ASYM_CIPHER-RSA.pod77 See L<provider-asym_cipher(7)/Asymmetric Cipher Parameters> for more information.
89 See L<provider-asym_cipher(7)/Asymmetric Cipher Parameters> for more information.
/src/sys/contrib/dev/acpica/components/parser/
H A Dpsxface.c506 if (Info->Parameters) in AcpiPsUpdateParameterList()
510 for (i = 0; Info->Parameters[i]; i++) in AcpiPsUpdateParameterList()
515 Info->Parameters[i], Action); in AcpiPsUpdateParameterList()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNoOwnershipChangeVisitor.cpp111 ArrayRef<ParmVarDecl *> Parameters = Call.parameters(); in maybeEmitNoteForParameters() local
112 for (unsigned I = 0; I < Call.getNumArgs() && I < Parameters.size(); ++I) { in maybeEmitNoteForParameters()
/src/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DDeclarationFragments.h269 const std::vector<Parameter> &getParameters() const { return Parameters; } in getParameters()
274 Parameters.emplace_back(Name, Fragments); in addParameter()
285 return Parameters.empty() && ReturnType.getFragments().empty(); in empty()
289 std::vector<Parameter> Parameters;
/src/sys/contrib/device-tree/Bindings/input/rmi4/
H A Drmi_spi.txt24 Function Parameters:
25 Parameters specific to RMI functions are contained in child nodes of the rmi device
H A Drmi_i2c.txt33 Function Parameters:
34 Parameters specific to RMI functions are contained in child nodes of the rmi device
/src/contrib/llvm-project/llvm/include/llvm/Object/
H A DDXContainer.h245 ViewArray<dxbc::ProgramSignatureElement> Parameters; variable
251 return Parameters.begin(); in begin()
255 return Parameters.end(); in end()
269 bool isEmpty() const { return Parameters.isEmpty(); } in isEmpty()
/src/sys/dev/qlxge/
H A DREADME.txt17 5. Driver Parameters
62 5. Parameters to set prior to installing the driver
/src/sys/dev/qlxgb/
H A DREADME.txt17 5. Driver Parameters
62 5. Parameters to set prior to installing the driver
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmMacro.cpp37 for (const MCAsmMacroParameter &P : Parameters) { in dump()
/src/sys/dev/qlxgbe/
H A DREADME.txt17 5. Driver Parameters
62 5. Parameters to set prior to installing the driver
/src/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DMCDCTypes.h55 using Parameters = variable

12345678