Lines Matching refs:cxx_type

235         code('${{self.ptype.cxx_type}} ${{self.name}};')
399 code('std::vector< ${{self.ptype.cxx_type}} > ${{self.name}};')
441 cxx_type = 'std::string'
627 class Int(CheckedInt): cxx_type = 'int'; size = 32; unsigned = False
628 class Unsigned(CheckedInt): cxx_type = 'unsigned'; size = 32; unsigned = True
630 class Int8(CheckedInt): cxx_type = 'int8_t'; size = 8; unsigned = False
631 class UInt8(CheckedInt): cxx_type = 'uint8_t'; size = 8; unsigned = True
632 class Int16(CheckedInt): cxx_type = 'int16_t'; size = 16; unsigned = False
633 class UInt16(CheckedInt): cxx_type = 'uint16_t'; size = 16; unsigned = True
634 class Int32(CheckedInt): cxx_type = 'int32_t'; size = 32; unsigned = False
635 class UInt32(CheckedInt): cxx_type = 'uint32_t'; size = 32; unsigned = True
636 class Int64(CheckedInt): cxx_type = 'int64_t'; size = 64; unsigned = False
637 class UInt64(CheckedInt): cxx_type = 'uint64_t'; size = 64; unsigned = True
639 class Counter(CheckedInt): cxx_type = 'Counter'; size = 64; unsigned = True
640 class Tick(CheckedInt): cxx_type = 'Tick'; size = 64; unsigned = True
641 class TcpPort(CheckedInt): cxx_type = 'uint16_t'; size = 16; unsigned = True
642 class UdpPort(CheckedInt): cxx_type = 'uint16_t'; size = 16; unsigned = True
644 class Percent(CheckedInt): cxx_type = 'int'; min = 0; max = 100
647 cxx_type = 'Cycles'
670 cxx_type = 'double'
699 cxx_type = 'uint64_t'
711 cxx_type = 'uint32_t'
723 cxx_type = 'Addr'
756 cxx_type = 'AddrRange'
890 cxx_type = 'bool'
956 cxx_type = 'Net::EthAddr'
1009 cxx_type = 'Net::IpAddress'
1061 cxx_type = 'Net::IpNetmask'
1135 cxx_type = 'Net::IpWithPort'
1245 cxx_type = 'tm'
1329 cls.cxx_type = '%s' % name
1331 cls.cxx_type = 'Enums::%s' % name
1527 cxx_type = 'Tick'
1710 cxx_type = 'float'
1749 cxx_type = 'float'