Lines Matching refs:word_data
3780 unsigned short word_data; in AscReadLramByte() local
3784 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3785 byte_data = (word_data >> 8) & 0xFF; in AscReadLramByte()
3788 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3789 byte_data = word_data & 0xFF; in AscReadLramByte()
3796 ushort word_data; in AscReadLramWord() local
3799 word_data = AscGetChipLramData(iop_base); in AscReadLramWord()
3800 return (word_data); in AscReadLramWord()
3822 ushort word_data; in AscWriteLramByte() local
3826 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3827 word_data &= 0x00FF; in AscWriteLramByte()
3828 word_data |= (((ushort)byte_val << 8) & 0xFF00); in AscWriteLramByte()
3830 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3831 word_data &= 0xFF00; in AscWriteLramByte()
3832 word_data |= ((ushort)byte_val & 0x00FF); in AscWriteLramByte()
3834 AscWriteLramWord(iop_base, addr, word_data); in AscWriteLramByte()