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

  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
acpixtract.c 163 * MinimumInstances - Min instances that are acceptable
182 unsigned int Instances = 0;
211 /* Are there enough instances of the table to continue? */
214 Instances = AxCountTableInstances (InputPathname, UpperSignature);
216 if (Instances < MinimumInstances ||
217 (Instances == 0 && MinimumInstances == AX_OPTIONAL_TABLES))
225 if (Instances == 0)
232 /* Convert all instances of the table to binary */
280 * SSDT and PSDT tables can have multiple instances.
acpixtract.h 204 unsigned int Instances;
axutils.c 497 * RETURN: The number of instances of the signature
499 * DESCRIPTION: Count the instances of tables with the given signature within
510 unsigned int Instances = 0;
520 /* Count the number of instances of this signature */
535 Instances++;
540 return (Instances);
557 * instances.
593 Info->Instances = AxCountTableInstances (InputPathname, Signature);
599 if (Info->Instances > 1)

Completed in 15 milliseconds