• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1autogen definitions test_endswap.tpl;
2
3int_type = {
4	name		= short ;
5	value		= '0x3210' ;
6	format		= FMT_SHORT ;
7	} ;
8
9int_type = {
10	name		= int ;
11	value		= '0x76543210' ;
12	format		= FMT_INT ;
13	} ;
14
15int_type = {
16	name		= int64_t ;
17	value		= '0x0807050540302010LL' ;
18	format		= FMT_INT64 ;
19	} ;
20
21int_size = {
22	name		= 16 ;
23	typename	= int16_t ;
24	value		= '0x4142' ;
25	strval		= "AB" ;
26	} ;
27
28int_size = {
29	name		= 32 ;
30	typename	= int32_t ;
31	value		= '0x30313233' ;
32	strval		= "0123" ;
33	} ;
34
35int_size = {
36	name		= 64 ;
37	typename	= int64_t ;
38	value		= '0x3031323334353637' ;
39	strval		= "01234567" ;
40	} ;
41