Lines Matching refs:word_data
3727 unsigned short word_data; in AscReadLramByte() local
3731 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3732 byte_data = (word_data >> 8) & 0xFF; in AscReadLramByte()
3735 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3736 byte_data = word_data & 0xFF; in AscReadLramByte()
3743 ushort word_data; in AscReadLramWord() local
3746 word_data = AscGetChipLramData(iop_base); in AscReadLramWord()
3747 return (word_data); in AscReadLramWord()
3769 ushort word_data; in AscWriteLramByte() local
3773 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3774 word_data &= 0x00FF; in AscWriteLramByte()
3775 word_data |= (((ushort)byte_val << 8) & 0xFF00); in AscWriteLramByte()
3777 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3778 word_data &= 0xFF00; in AscWriteLramByte()
3779 word_data |= ((ushort)byte_val & 0x00FF); in AscWriteLramByte()
3781 AscWriteLramWord(iop_base, addr, word_data); in AscWriteLramByte()