Lines Matching refs:word_data
3776 unsigned short word_data; in AscReadLramByte() local
3780 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3781 byte_data = (word_data >> 8) & 0xFF; in AscReadLramByte()
3784 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3785 byte_data = word_data & 0xFF; in AscReadLramByte()
3792 ushort word_data; in AscReadLramWord() local
3795 word_data = AscGetChipLramData(iop_base); in AscReadLramWord()
3796 return (word_data); in AscReadLramWord()
3818 ushort word_data; in AscWriteLramByte() local
3822 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3823 word_data &= 0x00FF; in AscWriteLramByte()
3824 word_data |= (((ushort)byte_val << 8) & 0xFF00); in AscWriteLramByte()
3826 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3827 word_data &= 0xFF00; in AscWriteLramByte()
3828 word_data |= ((ushort)byte_val & 0x00FF); in AscWriteLramByte()
3830 AscWriteLramWord(iop_base, addr, word_data); in AscWriteLramByte()