Lines Matching refs:BufferWidth
4520 UINTN BufferWidth; in IsQuestionValueChanged() local
4535 BufferWidth = Question->StorageWidth; in IsQuestionValueChanged()
4536 BackUpBuffer = AllocateCopyPool (BufferWidth, Question->BufferValue); in IsQuestionValueChanged()
4542 BufferWidth = (UINTN) Question->Maximum * sizeof (CHAR16); in IsQuestionValueChanged()
4543 BackUpBuffer = AllocateCopyPool (BufferWidth, Question->BufferValue); in IsQuestionValueChanged()
4548 BufferWidth = 0; in IsQuestionValueChanged()
4559 BufferWidth = Question->StorageWidth; in IsQuestionValueChanged()
4560 BackUpBuffer2 = AllocateCopyPool (BufferWidth, Question->BufferValue); in IsQuestionValueChanged()
4566 BufferWidth = (UINTN) Question->Maximum * sizeof (CHAR16); in IsQuestionValueChanged()
4567 BackUpBuffer2 = AllocateCopyPool (BufferWidth, Question->BufferValue); in IsQuestionValueChanged()
4572 BufferWidth = 0; in IsQuestionValueChanged()
4581 CompareMem (BackUpBuffer2, Question->BufferValue, BufferWidth) != 0) { in IsQuestionValueChanged()
4589 CompareMem (BackUpBuffer, Question->BufferValue, BufferWidth) != 0) { in IsQuestionValueChanged()
4596 CopyMem (Question->BufferValue, BackUpBuffer, BufferWidth); in IsQuestionValueChanged()