Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:SIZE

35   typedef _SIZE SIZE;
41 template <typename SIZE> class TRange {
43 typename SIZE::ptr_t _location;
44 typename SIZE::size_t _length;
45 TRange(typename SIZE::ptr_t location, typename SIZE::size_t length) : _location(location), _length(length) { }
47 template <typename SIZE, typename T> class TRangeValue : public TRange<SIZE> {
50 TRangeValue(typename SIZE::ptr_t location, typename SIZE::size_t length, T value) : TRange<SIZE>(location, length), _value(value) {};
52 template <typename SIZE> class TAddressRelocator {};
55 template <typename SIZE> class TRawSymbolOwnerData
57 TRangeValue< SIZE, uint8_t* > _TEXT_text_section;
68 TRawSymbolOwnerData<typename SIZE_AND_ENDIANNESS::SIZE>& symbol_owner_data,
69 TAddressRelocator<typename SIZE_AND_ENDIANNESS::SIZE>* address_relocator) {}
76 typedef typename SIZE_AND_ENDIANNESS::SIZE SIZE;
77 std::auto_ptr< TRawSymbolOwnerData<SIZE> > data(new TRawSymbolOwnerData<SIZE>());
79 extract_dwarf_data_from_header(*header, *data, (TAddressRelocator<typename SIZE_AND_ENDIANNESS::SIZE>*)__null);