Lines Matching defs:Value
180 UINT64 Value,
304 (ObjDesc->Integer.Value > (UINT64) ACPI_UINT32_MAX))
310 ObjDesc->Integer.Value &= (UINT64) ACPI_UINT32_MAX;
413 * PARAMETERS: Value - Value to be represented
418 * DESCRIPTION: Calculate the number of digits needed to represent the Value
425 UINT64 Value,
437 if (Value == 0)
442 CurrentValue = Value;
518 * Value - Value to be converted
531 UINT64 Value)
541 DigitsNeeded = AcpiExDigitsNeeded (Value, 10);
546 (void) AcpiUtShortDivide (Value, 10, &Value, &Remainder);