Searched refs:ScalarFormat (Results 1 – 1 of 1) sorted by relevance
/linux/tools/net/ynl/lib/ |
H A D | ynl.py | 114 ScalarFormat = namedtuple('ScalarFormat', ['native', 'big', 'little']) variable in NlAttr 116 'u8' : ScalarFormat(Struct('B'), Struct("B"), Struct("B")), 117 's8' : ScalarFormat(Struct('b'), Struct("b"), Struct("b")), 118 'u16': ScalarFormat(Struct('H'), Struct(">H"), Struct("<H")), 119 's16': ScalarFormat(Struct('h'), Struct(">h"), Struct("<h")), 120 'u32': ScalarFormat(Struct('I'), Struct(">I"), Struct("<I")), 121 's32': ScalarFormat(Struct('i'), Struct(">i"), Struct("<i")), 122 'u64': ScalarFormat(Struct('Q'), Struct(">Q"), Struct("<Q")), 123 's64': ScalarFormat(Struct('q'), Struct(">q"), Struct("<q"))
|