Lines Matching refs:word_data
3933 unsigned short word_data; in AscReadLramByte() local
3937 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3938 byte_data = (word_data >> 8) & 0xFF; in AscReadLramByte()
3941 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3942 byte_data = word_data & 0xFF; in AscReadLramByte()
3949 ushort word_data; in AscReadLramWord() local
3952 word_data = AscGetChipLramData(iop_base); in AscReadLramWord()
3953 return (word_data); in AscReadLramWord()
3989 ushort word_data; in AscWriteLramByte() local
3993 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3994 word_data &= 0x00FF; in AscWriteLramByte()
3995 word_data |= (((ushort)byte_val << 8) & 0xFF00); in AscWriteLramByte()
3997 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3998 word_data &= 0xFF00; in AscWriteLramByte()
3999 word_data |= ((ushort)byte_val & 0x00FF); in AscWriteLramByte()
4001 AscWriteLramWord(iop_base, addr, word_data); in AscWriteLramByte()