Lines Matching refs:word_data
13287 ushort word_data; in AscReadLramByte() local
13291 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
13292 byte_data = (uchar) ((word_data >> 8) & 0xFF); in AscReadLramByte()
13295 word_data = AscGetChipLramData(iop_base); in AscReadLramByte()
13296 byte_data = (uchar) (word_data & 0xFF); in AscReadLramByte()
13306 ushort word_data; in AscReadLramWord() local
13309 word_data = AscGetChipLramData(iop_base); in AscReadLramWord()
13310 return (word_data); in AscReadLramWord()
13350 ushort word_data; in AscWriteLramByte() local
13354 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
13355 word_data &= 0x00FF; in AscWriteLramByte()
13356 word_data |= (((ushort) byte_val << 8) & 0xFF00); in AscWriteLramByte()
13358 word_data = AscReadLramWord(iop_base, addr); in AscWriteLramByte()
13359 word_data &= 0xFF00; in AscWriteLramByte()
13360 word_data |= ((ushort) byte_val & 0x00FF); in AscWriteLramByte()
13362 AscWriteLramWord(iop_base, addr, word_data); in AscWriteLramByte()