Lines Matching refs:word_data
3950 unsigned short word_data; in AscReadLramByte() local
3954 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3955 byte_data = (word_data >> 8) & 0xFF; in AscReadLramByte()
3958 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3959 byte_data = word_data & 0xFF; in AscReadLramByte()
3966 ushort word_data; in AscReadLramWord() local
3969 word_data = AscGetChipLramData(iop_base); in AscReadLramWord()
3970 return (word_data); in AscReadLramWord()
4006 ushort word_data; in AscWriteLramByte() local
4010 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
4011 word_data &= 0x00FF; in AscWriteLramByte()
4012 word_data |= (((ushort)byte_val << 8) & 0xFF00); in AscWriteLramByte()
4014 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
4015 word_data &= 0xFF00; in AscWriteLramByte()
4016 word_data |= ((ushort)byte_val & 0x00FF); in AscWriteLramByte()
4018 AscWriteLramWord(iop_base, addr, word_data); in AscWriteLramByte()