Lines Matching refs:word_data
3718 unsigned short word_data; in AscReadLramByte() local
3722 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3723 byte_data = (word_data >> 8) & 0xFF; in AscReadLramByte()
3726 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
3727 byte_data = word_data & 0xFF; in AscReadLramByte()
3734 ushort word_data; in AscReadLramWord() local
3737 word_data = AscGetChipLramData(iop_base); in AscReadLramWord()
3738 return (word_data); in AscReadLramWord()
3760 ushort word_data; in AscWriteLramByte() local
3764 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3765 word_data &= 0x00FF; in AscWriteLramByte()
3766 word_data |= (((ushort)byte_val << 8) & 0xFF00); in AscWriteLramByte()
3768 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
3769 word_data &= 0xFF00; in AscWriteLramByte()
3770 word_data |= ((ushort)byte_val & 0x00FF); in AscWriteLramByte()
3772 AscWriteLramWord(iop_base, addr, word_data); in AscWriteLramByte()