Home
last modified time | relevance | path

Searched refs:bitwidth (Results 1 – 2 of 2) sorted by relevance

/misc/config_tools/board_inspector/acpiparser/aml/
A Ddatatypes.py57 def create_field(self, name, offset, bitwidth, access_width): argument
58 self.__fields[name] = (offset, bitwidth, access_width)
64 offset, bitwidth, access_width = self.__fields[name]
68 bit_remaining = bitwidth
70 assert offset + bitwidth <= self.__length * 8, \
100 offset, bitwidth, access_width = self.__fields[name]
102 bit_remaining = bitwidth
104 assert offset + bitwidth <= self.__length * 8, \
230 bitwidth = self.__buf.field_bitwidth(self.__field)
388 def create_field(self, name, offset, bitwidth, access_width): argument
[all …]
A Dinterpreter.py265 def create_field(self, tree, bitwidth, name_idx): argument
270 if bitwidth == 1 or name_idx == 3:
271 buf.create_field(name, index, bitwidth, 8)
274 buf.create_field(name, index * 8, bitwidth, bitwidth)

Completed in 5 milliseconds