HomeSort by: relevance | last modified time | path
    Searched refs:Parameters (Results 1 - 25 of 100) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FormatVariadic.h 129 // of the parameters, we have to own the storage for the parameters here, and
131 Tuple Parameters;
135 // The parameters are stored in a std::tuple, which does not provide runtime
137 // structure to put the parameters into a std::array. Since the parameters
139 // parameters in a template class that derives from a non-template superclass.
153 Parameters(std::move(Params)) {
154 ParameterPointers = apply_tuple(create_adapters(), Parameters);
161 Parameters(std::move(rhs.Parameters))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmMacro.cpp 36 OS << " Parameters:\n";
37 for (const MCAsmMacroParameter &P : Parameters) {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
VFABIDemangling.cpp 217 /// Looks into the <parameters> part of the mangled name in search
252 /// Looks into the <parameters> part of the mangled name in search
318 // _ZGV<isa><mask><vlen><parameters>_<scalarname>[(<redirection>)]
324 // _ZGV<isa><mask><vlen><parameters>_<scalarname>.
348 // Parse the <parameters>.
350 SmallVector<VFParameter, 8> Parameters;
352 const unsigned ParameterPos = Parameters.size();
370 Parameters.push_back({ParameterPos, PKind, StepOrPos, Alignment});
375 // <parameters>.
376 if (Parameters.empty()
    [all...]
VectorUtils.cpp 1341 for (unsigned Pos = 0, NumParams = Parameters.size(); Pos < NumParams;
1343 assert(Parameters[Pos].ParamPos == Pos && "Broken parameter list.");
1345 switch (Parameters[Pos].ParamKind) {
1353 if (Parameters[Pos].LinearStepOrPos == 0)
1361 // parameters in the signature.
1362 if (Parameters[Pos].LinearStepOrPos >= int(NumParams))
1365 if (Parameters[Parameters[Pos].LinearStepOrPos].ParamKind !=
1369 if (Parameters[Pos].LinearStepOrPos == int(Pos))
1376 if (Parameters[NextPos].ParamKind == VFParamKind::GlobalPredicate
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsxfeval.c 67 * PARAMETERS: Handle - Object handle (optional)
69 * ExternalParams - List of parameters to pass to a method,
71 * if no parameters are being passed.
79 * parameters if necessary. One of "Handle" or "Pathname" must
200 * PARAMETERS: Handle - Object handle (optional)
202 * ExternalParams - List of parameters to pass to method,
204 * if no parameters are being passed.
211 * parameters if necessary. One of "Handle" or "Pathname" must
311 Info->Parameters = ACPI_ALLOCATE_ZEROED (
313 if (!Info->Parameters)
    [all...]
nseval.c 59 * PARAMETERS: Info - Evaluation info block, contains these fields
64 * Parameters - List of parameters to pass to the method,
66 * NULL if no parameters are being passed.
155 if (Info->Parameters)
157 while (Info->Parameters[Info->ParamCount])
nsinit.c 82 * PARAMETERS: None
144 * PARAMETERS: None
208 Info.EvaluateInfo->Parameters = NULL;
228 Info.EvaluateInfo->Parameters = NULL;
306 * PARAMETERS: ObjHandle - Node
365 * PARAMETERS: ObjHandle - Node
509 * PARAMETERS: ACPI_WALK_CALLBACK
584 * PARAMETERS: ACPI_WALK_CALLBACK
732 Info->Parameters = NULL;
nsarguments.c 58 * PARAMETERS: Info - Method execution information block
98 UserArgType = Info->Parameters[i]->Common.Type;
122 * PARAMETERS: Pathname - Full pathname to the node (for error msgs)
215 * PARAMETERS: Pathname - Full pathname to the node (for error msgs)
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 145 MCAsmMacroParameters Parameters;
151 : Name(N), Body(B), Parameters(std::move(P)) {}
154 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)),
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
arraytypes.h 34 typedef Array<class Parameter *> Parameters;
arraytypes.d 39 alias Parameters = Array!(Parameter);
mtype.h 556 const_ = 3, // parameters are values or const
576 static size_t dim(Parameters *parameters);
577 static Parameter *getNth(Parameters *parameters, d_size_t nth);
584 Parameters* parameters; member in struct:TRUST::ParameterList
590 Parameter *operator[](size_t i) { return Parameter::getNth(parameters, i); }
598 ParameterList parameterList; // function parameters
606 static TypeFunction *create(Parameters *parameters, Type *treturn, VarArg varargs, LINK linkage, StorageClass stc = 0)
    [all...]
cond.d 210 * parameters = The foreach variables.
213 * `foreach (parameters; aggregate) s;` or
214 * `foreach (parameters; lower .. upper) s;`
217 private extern(D) Statement createForeach(const ref Loc loc, Parameters* parameters, Statement s)
221 return new ForeachStatement(loc, aggrfe.op, parameters, aggrfe.aggr.syntaxCopy(), s, loc);
225 assert(rangefe && parameters.dim == 1);
226 return new ForeachRangeStatement(loc, rangefe.op, (*parameters)[0], rangefe.lwr.syntaxCopy(), rangefe.upr.syntaxCopy(), s, loc);
309 auto nvars = aggrfe ? aggrfe.parameters.dim : 1;
313 Parameters*[3] pparams = [new Parameters(), new Parameters(), new Parameters()]
    [all...]
clone.d 299 auto fparams = new Parameters();
547 auto parameters = new Parameters();
548 parameters.push(new Parameter(STC.ref_ | STC.const_, sd.type, null, null, null));
549 tfeqptr = new TypeFunction(ParameterList(parameters), Type.tbool, LINK.d);
575 auto parameters = new Parameters();
576 parameters.push(new Parameter(STC.ref_ | STC.const_, sd.type, Id.p, null, null));
577 auto tf = new TypeFunction(ParameterList(parameters), Type.tbool, LINK.d, STC.const_);
621 auto parameters = new Parameters()
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
utils.d 12 import core.internal.traits : Parameters;
46 * parameters = Parameters that will be used to call `Hook`
52 auto _d_HookTraceImpl(T, alias Hook, string errorMessage)(string file, int line, string funcname, Parameters!Hook parameters) @trusted pure
89 return Hook(parameters);
98 * F = Function that does not take any parameters
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
VectorUtils.h 24 /// Describes the type of Parameters
61 /// functions and their parameters.
85 SmallVector<VFParameter, 8> Parameters; // List of parameter information.
88 return std::tie(VF, IsScalable, Parameters) ==
89 std::tie(Other.VF, Other.IsScalable, Other.Parameters);
94 assert(P.ParamPos < Parameters.size() && "Invalid parameter position.");
95 Parameters[P.ParamPos] = P;
107 // parameters are mapped to VFParamKind::Vector with \p EC
111 SmallVector<VFParameter, 8> Parameters;
113 Parameters.push_back(VFParameter({I, VFParamKind::Vector}))
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
traits.d 734 // std.traits.Parameters
736 Get, as a tuple, the types of the parameters to a function, a pointer
740 template Parameters(func...)
744 alias Parameters = P;
746 static assert(0, "argument has no parameters");
753 void bar(Parameters!foo); // declares void bar(int, long);
754 void abc(Parameters!foo[1]); // declares void abc(long);
760 static assert(is(Parameters!foo == AliasSeq!(int, bool)));
761 static assert(is(Parameters!(typeof(&foo)) == AliasSeq!(int, bool)));
765 static assert(is(Parameters!S == AliasSeq!(real, int)))
    [all...]
  /src/sys/external/bsd/acpica/dist/parser/
psxface.c 68 * PARAMETERS: MethodName - Valid ACPI name string
111 * PARAMETERS: Info - Method info block, contains:
114 * Parameters - List of parameters to pass to the method,
116 * NULL if no parameters are being passed.
162 * The caller "owns" the parameters, so give each one an extra reference
251 /* Take away the extra reference that we gave the parameters above */
283 * PARAMETERS: Info - Method info block, contains:
380 * PARAMETERS: Info - See ACPI_EVALUATE_INFO
381 * (Used: ParameterType and Parameters)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
functional.d 67 import std.traits : isCallable, Parameters;
94 return fun(Parameters!fun.init);
193 `string` must either use symbol names `a` and `b` as the parameters or
560 A function which calls `pred` after reversing the given parameters
678 A new function which calls `fun` with `arg` plus the passed parameters.
724 enum isCallableWithArg(alias fun) = Parameters!fun.length > 0 &&
725 is(typeof(arg) : Parameters!fun[0]);
728 static if (overloads.length == 1 && Parameters!fun.length == 0)
737 enum hasParameters(alias fun) = Parameters!fun.length > 0;
738 alias firstParameter(alias fun) = Parameters!fun[0]
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acstruct.h 200 * Structure used to pass object evaluation information and parameters.
209 ACPI_OPERAND_OBJECT **Parameters; /* Input: argument list */
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 291 ArrayRef<MCAsmMacroParameter> Parameters);
293 ArrayRef<MCAsmMacroParameter> Parameters,
2487 ArrayRef<MCAsmMacroParameter> Parameters,
2490 unsigned NParameters = Parameters.size();
2491 bool HasVararg = NParameters ? Parameters.back().Vararg : false;
2495 // A macro without parameters is handled differently on Darwin:
2503 // This macro has no parameters, look for $0, $1, etc.
2512 // This macro has parameters, look for \foo, \bar, etc.
2570 if (Parameters[Index].Name == Argument)
2698 // Spaces can delimit parameters, but could also be part an expression
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir_test.go 113 Parameters: []Metadata{voidInfo},
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.h 144 std::vector<struct BTF::BTFParam> Parameters;
150 return BTFTypeBase::getSize() + Parameters.size() * BTF::BTFParamSize;
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
subauth.d 191 UNICODE_STRING Parameters;
  /src/sys/external/bsd/acpica/dist/resources/
rsutils.c 58 * PARAMETERS: Mask - Bitmask to decode
100 * PARAMETERS: List - List of values to encode
136 * PARAMETERS: Destination - Pointer to the destination descriptor
219 * PARAMETERS: TotalLength - Length of the AML descriptor, including
275 * PARAMETERS: DescriptorType - Byte to be inserted as the type
311 * PARAMETERS: Destination - Pointer to the destination string
349 * PARAMETERS: ResourceLength - Length field of the descriptor
443 * PARAMETERS: Aml - Pointer to the raw AML descriptor
506 * PARAMETERS: Node - Device node
532 /* Parameters guaranteed valid by caller *
    [all...]

Completed in 59 milliseconds

1 2 3 4