Lines Matching refs:Granularity
291 * Granularity - Address granularity value
297 * GranOp - Original Op for address granularity
323 UINT64 Granularity,
351 if (!Minimum && !Maximum && !Length && !Granularity)
376 /* If specified (non-zero), ensure granularity is a power-of-two minus one */
378 if (Granularity)
380 if ((Granularity + 1) &
381 Granularity)
400 * Length must be a multiple of granularity
402 if (Granularity & Length)
410 /* Fixed length, fixed location. Granularity must be zero */
412 if (Granularity != 0)
452 * The granularity is defined by the ACPI specification to be a
453 * power-of-two minus one, therefore the granularity is a
456 if (Granularity & Minimum)
466 if (Granularity & (Maximum + 1))