Lines Matching defs:Value
72 UINT64 Value,
187 (ObjDesc->Integer.Value > (UINT64) ACPI_UINT32_MAX))
193 ObjDesc->Integer.Value &= (UINT64) ACPI_UINT32_MAX;
296 * PARAMETERS: Value - Value to be represented
301 * DESCRIPTION: Calculate the number of digits needed to represent the Value
308 UINT64 Value,
320 if (Value == 0)
325 CurrentValue = Value;
401 * Value - Value to be converted
414 UINT64 Value)
424 DigitsNeeded = AcpiExDigitsNeeded (Value, 10);
429 (void) AcpiUtShortDivide (Value, 10, &Value, &Remainder);