Lines Matching refs:Index
454 UINT32 Index; in AeDecodeMessageId() local
463 Index = MessageId; in AeDecodeMessageId()
465 if (Index >= ACPI_ARRAY_LENGTH (AslCompilerMsgs)) in AeDecodeMessageId()
476 Index = MessageId - ASL_MSG_TABLE_COMPILER; in AeDecodeMessageId()
478 if (Index >= ACPI_ARRAY_LENGTH (AslTableCompilerMsgs)) in AeDecodeMessageId()
489 Index = MessageId - ASL_MSG_PREPROCESSOR; in AeDecodeMessageId()
491 if (Index >= ACPI_ARRAY_LENGTH (AslPreprocessorMsgs)) in AeDecodeMessageId()
504 return (MessageTable[Index]); in AeDecodeMessageId()
601 UINT32 Index = 1; in AhDecodeAslException() local
617 for (i = 1; Index < ACPI_ARRAY_LENGTH (AslCompilerMsgs); i++, Index++) in AhDecodeAslException()
619 AH_DISPLAY_ASL_EXCEPTION_TEXT (Index, AslCompilerMsgs[i]); in AhDecodeAslException()
623 Index = ASL_MSG_TABLE_COMPILER; in AhDecodeAslException()
624 for (i = 0; i < ACPI_ARRAY_LENGTH (AslTableCompilerMsgs); i++, Index++) in AhDecodeAslException()
626 AH_DISPLAY_ASL_EXCEPTION_TEXT (Index, AslTableCompilerMsgs[i]); in AhDecodeAslException()
630 Index = ASL_MSG_PREPROCESSOR; in AhDecodeAslException()
631 for (i = 0; i < ACPI_ARRAY_LENGTH (AslPreprocessorMsgs); i++, Index++) in AhDecodeAslException()
633 AH_DISPLAY_ASL_EXCEPTION_TEXT (Index, AslPreprocessorMsgs[i]); in AhDecodeAslException()