Lines Matching refs:Base
277 UINT32 Base, in AcpiUtStrtoul64() argument
293 switch (Base) in AcpiUtStrtoul64()
320 if (Base == ACPI_ANY_BASE) in AcpiUtStrtoul64()
329 Base = 16; in AcpiUtStrtoul64()
336 Base = 10; in AcpiUtStrtoul64()
344 if (Base == ACPI_ANY_BASE) in AcpiUtStrtoul64()
371 else if (Base == 10) in AcpiUtStrtoul64()
394 if (Base == ACPI_ANY_BASE) in AcpiUtStrtoul64()
426 (Dividend - (UINT64) ThisDigit), Base, &Quotient, NULL); in AcpiUtStrtoul64()
430 if (Base == ACPI_ANY_BASE) in AcpiUtStrtoul64()
440 ReturnValue *= Base; in AcpiUtStrtoul64()
460 if (Base == 10) in AcpiUtStrtoul64()
492 UINT32 Base, in strtoul64() argument
503 switch (Base) in strtoul64()
550 if (Base == 0) in strtoul64()
556 Base = 16; in strtoul64()
561 Base = 8; in strtoul64()
566 Base = 10; in strtoul64()
574 if (Base == 8 && *String == '0') in strtoul64()
579 if (Base == 16 && in strtoul64()
607 if (Index >= Base) in strtoul64()
615 (UINT64) Base)) in strtoul64()
621 ReturnValue *= Base; in strtoul64()
641 switch (Base) in strtoul64()