HomeSort by: relevance | last modified time | path
    Searched defs:word_data (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/dev/ic/
advlib.c 944 u_int16_t word_data; local in function:AscReadLramByte
948 word_data = ASC_GET_CHIP_LRAM_DATA(iot, ioh);
952 byte_data = (u_int8_t) ((word_data >> 8) & 0xFF);
955 byte_data = (u_int8_t) (word_data & 0xFF);
966 u_int16_t word_data; local in function:AscWriteLramByte
969 word_data = AscReadLramWord(iot, ioh, addr & 0xFFFE);
973 word_data &= 0x00FF;
974 word_data |= (((u_int16_t) data) << 8) & 0xFF00;
977 word_data &= 0xFF00;
978 word_data |= ((u_int16_t) data) & 0x00FF
    [all...]
advlib.c 944 u_int16_t word_data; local in function:AscReadLramByte
948 word_data = ASC_GET_CHIP_LRAM_DATA(iot, ioh);
952 byte_data = (u_int8_t) ((word_data >> 8) & 0xFF);
955 byte_data = (u_int8_t) (word_data & 0xFF);
966 u_int16_t word_data; local in function:AscWriteLramByte
969 word_data = AscReadLramWord(iot, ioh, addr & 0xFFFE);
973 word_data &= 0x00FF;
974 word_data |= (((u_int16_t) data) << 8) & 0xFF00;
977 word_data &= 0xFF00;
978 word_data |= ((u_int16_t) data) & 0x00FF
    [all...]

Completed in 26 milliseconds